.sgpe-phone, .rev-phone/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #140d32;
  color: #eee;
}

h2 {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

p {
  font-weight: 500;
}

/* Container max-width */
.container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

main,
.hero,
.page-content {
  padding-top: 100px;
  height: 100vh;
}

.gradient-text span {
  background: linear-gradient(90deg, #f49867, #f467e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text2 span {
  background: linear-gradient(280deg, #ddff93, #00e2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ======= HEADER STYLING ======= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #2b1a63;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.head-container {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

/* ======= Logo ======= */
.logo img {
  width: 200px;
  height: auto;
}

/* ======= Desktop Navigation ======= */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #ccc;
}

.navbar-menu a,
.dropdown-toggle {
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar-menu a:hover,
.dropdown-toggle:hover {
  color: #4ef47e;
}

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

.dropdown-toggle {
  padding: 10px;
  cursor: pointer;
}

/* Dropdown Menu Hidden */
.dropdown-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0px;
  background: #fff;
  color: #2f2155;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 999;
  min-width: 500px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

/* Show on Hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  animation: fadeInDropdown 0.3s ease-in-out;
}

/* Animation */
@keyframes fadeInDropdown {
  0% {
    opacity: 0;
    transform: translateY(10px) translateX(-50%);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}

/* ======= Reset UL & LI ======= */
.dropdown-menu ul,
.dropdown-mobile ul,
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-menu li,
.dropdown-mobile li,
.mobile-menu li {
  margin: 0;
  padding: 0;
}

/* Two Column Layout */
.dropdown-menu.two-column {
  display: flex;
  justify-content: space-between;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}

/* Dropdown Links */
.dropdown-enhanced a {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #3a2373;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-enhanced a i {
  min-width: 20px;
  color: #2f2155;
}

.dropdown-enhanced .hover-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
  font-weight: bold;
  color: #2f2155;
}

.dropdown-enhanced a:hover {
  background-color: #e9e9fc;
  color: #2b1a63;
}

.dropdown-enhanced a:hover .hover-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ======= Buttons Right Side ======= */
.right-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-talk {
  border: 1.5px solid #4ef47e;
  padding: 8px 26px;
  font-size: 15px;
  border-radius: 20px;
  color: #4ef47e;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-talk:hover {
  background: #4ef47e;
  color: #140d32;
}

/* ======= Hamburger Icon ======= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  transition: all 0.3s ease;
}

/* ======= Mobile Menu ======= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 83%;
  height: 100vh;
  background: #140d32;
  display: flex;
  flex-direction: column;
  padding: 90px 24px 24px;
  gap: 20px;
  transition: right 0.4s ease;
  z-index: 1000;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #4ef47e;
}

/* Mobile Dropdown */
.mobile-menu details summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.dropdown-mobile {
  margin-left: 16px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-mobile a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
}

.dropdown-mobile a i {
  color: #4ef47e;
}

/* ======= Responsive ======= */
@media (max-width: 1024px) {

  .nav-links,
  .right-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Flip arrow icon on dropdown hover */
.dropdown-toggle i.fa-angle-down {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i.fa-angle-down {
  transform: rotate(180deg);
}

/* Single-column dropdown for Company & Resources */
.dropdown-menu:not(.two-column) {
  flex-direction: column;
  min-width: 220px;
  padding: 12px;
}

/* Curved background image container */
/* =============== Hero Top Section CSS =============== */
.hero-top-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(45deg, #2b1a63, #771081);
}

.hero-top-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  gap: 40px;
}

/* Left Text */
.hero-top-text {
  flex: 1;
  max-width: 550px;
}

.hero-top-title {
  font-size: 90px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-top-title .hero-top-gradient {
  font-weight: 800;
  background: linear-gradient(90deg, #ae67fa, #f49867);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-top-title strong {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
}

.hero-top-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 30px;
}

.hero-top-buttons {
  display: flex;
  gap: 16px;
}

.btn-purple {
  background: #ae67fa;
  color: white;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(174, 103, 250, 0.3);
  transition: 0.3s;
}

.btn-purple:hover {
  background: #933df2;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ddd;
  color: #fff;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: #ae67fa;
  color: #ae67fa;
}

/* Right Image */
.hero-top-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-top-image img {
  max-width: 500px;
  width : 100%;
  height: auto;
}

/* =============== Hero Top Section CSS END =============== */
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  background: url("Images/banner.png") no-repeat center center / contain;
  z-index: 0;
  opacity: 1;
}

/* To replicate the purple overlay, add a color overlay */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0.9;
  background: #140d32;
  mix-blend-mode: multiply;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 40%;
  color: #fff;
}

.hero-subtitle {
  font-weight: 600;
  font-size: 18px;
  color: #4ef47e;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #eee;
}

.btn-primary {
  background: transparent;
  border: 1.5px solid #4ef47e;
  padding: 14px 34px;
  font-size: 18px;
  border-radius: 24px;
  font-weight: 600;
  color: #4ef47e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #4ef47e;
  color: #140d32;
}

/* ================== logo slider ================== */
/* Container for logos */
.logo-slider-wrapper {
  width: 100%;
  max-width: 100%;
  height: 100px;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}

/* Swiper styles */
.logo-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slider .swiper-slide img {
  max-width: 100%;
  opacity: 1;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
  /* If logos are dark on dark bg */
}

.logo-slider .swiper-slide img:hover {
  transform: scale(1.1);
}

/* Main features section */
.features-section {
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
  max-width: 100%;
  text-align: center;
  color: #eee;
}

.features-subtitle {
  padding-top: 40px;
  font-weight: 600;
  font-size: 14px;
  color: #4ef47e;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.features-title {
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-desc {
  font-weight: 400;
  font-size: 14.5px;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ccc;
}

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 0 10px 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 25px 20px 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: default;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.feature-card:hover {
  border-color: #4ef47e;
  box-shadow: 0 8px 24px rgb(78 244 126 / 0.35);
  background: #3c2c81;
}

.feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  fill: #6b53a5;
  transition: fill 0.3s ease;
}

.feature-card:hover .feature-icon {
  fill: #4ef47e;
}

.feature-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
  color: #eee;
}

.feature-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #ddd;
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 40px 0 60px;
    max-width: 90%;
  }

  .hero-content {
    width: 100%;
    text-align: center;
    padding-top: 120px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    height: 240px;
    clip-path: ellipse(100% 100% at 50% 50%);
    margin-bottom: 40px;
    opacity: 0.35;
  }

  nav {
    gap: 12px;
    font-size: 13px;
  }
}

/* ===================================== */
:root {
  --sg-purple-dark: #2b1a63;
  --sg-purple-light: #d7c6ff;
  --sg-green: #4ef47e;
  --sg-bg-dark: #2b1a63;
}

/* Container */
.sg-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Stats section */
.sg-stats-section {
  background-color: var(--sg-purple-dark);
  padding: 30px 0;
}

.sg-stats-container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 15px;
  flex-wrap: wrap;
}

.sg-stat-item {
  flex: 1 1 22%;
  text-align: center;
  color: #fff;
}

.sg-stat-value {
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.sg-stat-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--sg-green);
}

/* Features section */
.sg-features-section {
  position: relative;
  background-color: #f7faff;
  padding: 1px 0 80px;
  overflow: visible;
}

.sg-features-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.sg-bg-img {
  width: 50%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
  user-select: none;
  pointer-events: none;
}

/* Optional: Adjust height if needed */
.sg-bg-img-left,
.sg-bg-img-right {
  height: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sg-features-background {
    flex-direction: column;
    height: auto;
    opacity: 0.1;
    padding: 0 20px;
    gap: 12px;
  }

  .sg-bg-img {
    width: 100%;
    height: 150px;
  }
}

/* Features card */
.sg-features-card {
  position: relative;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  padding: 40px 40px 60px;
  max-width: 90%;
  margin: auto;
  margin-top: 80px;
  z-index: 1;
}

.sg-features-subtitle {
  font-weight: 700;
  font-size: 1rem;
  color: var(--sg-green);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.sg-features-title {
  font-weight: 900;
  font-size: 2.6rem;
  color: #f8f8ff;
  margin-bottom: 40px;
  line-height: 1.1;
}

/* Features grid */
.sg-features-grid {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sg-feature-item {
  border: 2px solid;
  border-radius: 20px;
  padding: 20px;
  border-color: #4ef47e;
  box-shadow: 0 8px 24px rgb(78 244 126 / 0.35);
  background: transparent;
  flex: 1 1 30%;
  min-width: 260px;
  color: var(--sg-purple-dark);
}

.sg-feature-icon {
  background: #cbb7ff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background-color 0.3s ease;
}

.sg-feature-icon svg {
  stroke: var(--sg-purple-dark);
  width: 20px;
  height: 20px;
}

.sg-feature-item h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.sg-feature-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: wheat;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
  .sg-stats-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sg-stat-item {
    flex: 1 1 45%;
    margin-bottom: 24px;
  }

  .sg-features-grid {
    gap: 30px;
  }

  .sg-feature-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .sg-stat-item {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .sg-features-grid {
    flex-direction: column;
  }

  .sg-feature-item {
    flex: 1 1 100%;
  }
}

/* =============  Root colors and fonts  ================= */
:root {
  --sgs-purple-dark: #2b1a63;
  --sgs-green: #4ef47e;
  --sgs-white: #fff;
  --sgs-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.sgs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

/* Left column */
.sgs-left-column {
  flex: 1 1 280px;
  max-width: 350px;
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.sgs-subtitle {
  color: var(--sgs-green);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}

.sgs-title {
  font-weight: 900;
  font-size: 2.8rem;
  margin: 0 0 25px 0;
  line-height: 1.1;
}

.sgs-desc {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 350px;
  color: #ddd;
}

/* Right column */
.sgs-right-column {
  flex: 3 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px 48px;
  animation: fadeInRight 1s ease forwards;
  opacity: 0;
  transform: translateX(20px);
}

/* Individual feature item */
.sgs-item h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--sgs-white);
  transition: color 0.3s ease;
  cursor: default;
}

.sgs-item p {
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #bbb;
  margin: 0;
}

/* Hover effect for feature heading */
.sgs-item:hover h3 {
  color: var(--sgs-green);
}

/* Animations */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive */
@media (max-width: 1024px) {
  .sgs-container {
    gap: 40px;
  }

  .sgs-left-column {
    max-width: 100%;
    flex: 1 1 100%;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
    transform: translateY(20px);
  }

  .sgs-right-column {
    grid-template-columns: 1fr 1fr;
    animation: fadeInUp 1s ease forwards;
    transform: translateY(20px);
  }
}

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

  .sgs-left-column {
    text-align: center;
  }
}

/* Fade in up animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ Phone Section =========== */
/* Root colors */
:root {
  --sgpe-purple-dark: #2b1a63;
  --sgpe-green: #c2f261;
  --sgpe-light-green: #d7ff99;
  --sgpe-white: #fff;
  --sgpe-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.sgpe-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 0 20px 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Top images behind */
.sgpe-top-images {
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 40px 0 0;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
}

.sgpe-top-images img {
  height: 200px;
  width: -webkit-fill-available;
  border-radius: 4px;
  object-fit: cover;
}

/* Left with rounded background */
.sgpe-left {
  flex: 1 1 433px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sgpe-rounded-bg {
  position: absolute;
  width: 100%;
  height: 85%;
  background: var(--sgpe-light-green);
  /* border-radius: 50%; */
  left: -140px;
  z-index: -1;
  opacity: 0.6;
  clip-path: ellipse(70% 60% at 0% 50%);
}

.sgpe-phone {
  width: auto;
  max-width: 140%;
  border-radius: 24px;
  object-fit: contain;
}

/* Center text block */
.sgpe-center {
  align-content: center;
  flex: 1 1 300px;
  max-width: 400px;
  padding-top: 30px;
}

.sgpe-icon {
  margin-bottom: 16px;
}

.sgpe-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin: 0 0 18px 0;
}

.sgpe-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

/* Right features list */
.sgpe-right {
  flex: 1 1 300px;
  /*max-width: 420px;*/
  display: flex;
  /*flex-direction: column;*/
  gap: 22px;
  padding-top: 30px;
}

.sgpe-item {
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.3s ease;
  outline: none;
}

.sgpe-item:focus,
.sgpe-item:hover {
  background-color: rgba(194, 242, 97, 0.1);
  box-shadow: 0 4px 12px rgba(194, 242, 97, 0.4);
}

.sgpe-item-icon {
  width: 36px;
  min-height: 36px;
  background-color: var(--sgpe-purple-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.sgpe-item:hover .sgpe-item-icon {
  background-color: #3c2c81;
}

.sgpe-item-icon svg {
  fill: #ccc;
  width: 20px;
  height: 20px;
}

.sgpe-item-content h4 {
  margin: 0 0 6px 0;
  font-weight: 700;
  font-size: 1rem;
  color: black;
}

.sgpe-item-content p {
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.3;
}

.sgpe-item-arrow {
  display: none !important;    
  margin-left: auto;
  color: var(--sgpe-green);
  font-weight: 700;
  font-size: 1.2rem;
  user-select: none;
}

/* Responsive */

@media (max-width: 992px) {
  .sgpe-container {
    flex-direction: column;
    align-items: center;
  }

  .sgpe-left,
  .sgpe-center,
  .sgpe-right {
    max-width: 100%;
    flex: none;
    padding-top: 24px;
  }

  .sgpe-left {
    order: 1;
  }

  .sgpe-center {
    order: 2;
    text-align: center;
  }

  .sgpe-right {
    order: 3;
  }

  .sgpe-top-images {
    height: auto;
    padding: 20px 0 0;
    gap: 8px;
  }

  .sgpe-top-images img {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .sgpe-title {
    font-size: 2rem;
  }

  .sgpe-phone {
    width: 100%;
  }

  .sgpe-item-content h4 {
    font-size: 0.95rem;
  }

  .sgpe-item-content p {
    font-size: 0.85rem;
  }
}

.sgpe-heading {
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.sgpe-subtitle {
  color: #4fd18a;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1rem;
}

.sgpe-main-title {
  font-weight: 900;
  font-size: 3.6rem;
  color: #f7f7f7;
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.sgpe-description {
  color: #dcdcdc;
  font-size: 1.2rem;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.4;
}

/* reverse section ===========================>>>> */
:root {
  --rev-purple-dark: #2b1a63;
  --rev-green: #c2f261;
  --rev-light-green: #d7ff99;
  --rev-white: #fff;
  --rev-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  background-color: var(--rev-purple-dark);
  font-family: var(--rev-font);
  color: rgb(255, 255, 255);
}

/* Container */
.rev-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 0 20px 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Reverse layout */
.rev-container.rev-reverse {
  flex-direction: row;
}

/* Top images behind */
.rev-top-images {
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 40px 0 0;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
}

.rev-top-images img {
  height: 120px;
  width: -webkit-fill-available;
  border-radius: 4px;
  object-fit: cover;
}

/* Left with rounded background */
.rev-left {
  flex: 1 1 433px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rev-rounded-bg {
  position: absolute;
  width: 100%;
  height: 85%;
  background: var(--rev-light-green);
  left: auto;
  right: -140px;
  z-index: -1;
  opacity: 0.6;
  clip-path: ellipse(70% 60% at 100% 50%);
}

.rev-phone {
  width: auto;
  max-width: 100%;
  border-radius: 24px;
  object-fit: contain;
}

/* Center text block */
.rev-center {
  align-content: center;
  flex: 1 1 300px;
  max-width: 400px;
  padding-top: 30px;
}

.rev-icon {
  margin-bottom: 16px;
}

.rev-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin: 0 0 18px 0;
}

.rev-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

/* Right features list */
.rev-right {
  /*flex: 1 1 300px;*/
  /*max-width: 420px;*/
  display: flex;
  /*flex-direction: column;*/
  gap: 22px;
  padding-top: 30px;
}

.rev-item {
  /*height: 200px;*/
  /*display: flex;*/
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.3s ease;
  outline: none;
}

.rev-item:focus,
.rev-item:hover {
  background-color: rgba(194, 242, 97, 0.1);
  box-shadow: 0 4px 12px rgba(194, 242, 97, 0.4);
  color: #fff;
}

.rev-item-icon {
  width: 36px;
  min-height: 36px;
  background-color: var(--rev-purple-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.rev-item:hover .rev-item-icon {
  background-color: #3c2c81;
}

.rev-item-icon svg {
  fill: #ccc;
  width: 20px;
  height: 20px;
}

.rev-item-content h4 {
  margin: 0 0 6px 0;
  font-weight: 700;
  font-size: 1rem;
  color: black;
}

.rev-item-content p {
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.3;
}

.rev-item-arrow {
  display: none !important;
  margin-left: auto;
  color: var(--rev-green);
  font-weight: 700;
  font-size: 1.2rem;
  user-select: none;
}

/* Responsive */

@media (max-width: 992px) {
  .rev-container {
    flex-direction: column;
    align-items: center;
  }

  .rev-left,
  .rev-center,
  .rev-right {
    max-width: 100%;
    flex: none;
    padding-top: 24px;
  }

  .rev-left {
    order: 1;
  }

  .rev-center {
    order: 2;
    text-align: center;
  }

  .rev-right {
    order: 3;
  }

  .rev-top-images {
    height: auto;
    padding: 20px 0 0;
    gap: 8px;
  }

  .rev-top-images img {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .rev-title {
    font-size: 2rem;
  }

  .rev-phone {
    width: 100%;
  }

  .rev-item-content h4 {
    font-size: 0.95rem;
  }

  .rev-item-content p {
    font-size: 0.85rem;
  }
}

/* =========== slider design ============ */
:root {
  --purple-dark: #220e4f;
  --text-dark: #160035;
  --green-accent: #4fd18a;
  --white: #fff;
  --card-bg: #fff;
  --card-border: #2b1a63;
  --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.resource-sec-head {
  display: block;
}

.resource-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px 40px;
}

.resource-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.resource-subtitle {
  font-weight: 700;
  color: var(--green-accent);
  font-size: 1rem;
  margin: 0;
}

.resource-title {
  font-weight: 900;
  font-size: 2.8rem;
  margin: 0;
  flex-grow: 1;
  color: ghostwhite;
}

.resource-arrows {
  display: flex;
  gap: 12px;
}

.arrow {
  background-color: var(--purple-dark);
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.arrow:hover {
  background-color: var(--green-accent);
  color: var(--purple-dark);
}

.resource-slider {
  overflow: hidden;
  position: relative;
}

.resource-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.resource-card {
  flex: 0 0 33.3333%;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.resource-card.active,
.resource-card:hover {
  border-color: var(--purple-dark);
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.1);
}

.resource-card h3 {
  margin: 0 0 16px 0;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--purple-dark);
}

.resource-card p {
  flex-grow: 1;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0 0 24px 0;
}

.resource-link {
  font-weight: 700;
  color: var(--purple-dark);
  text-decoration: none;
  font-size: 1rem;
  user-select: none;
  align-self: flex-start;
}

.resource-link:hover {
  text-decoration: underline;
}

:root {
  --dark-bg: #1f1144;
  --input-bg: #2a1f5d;
  --accent-green: #4fd18a;
  --text-light: #eee;
  --text-muted: #b3a6e3;
  --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section {
  max-width: max-content;
  margin: 60px auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.2);
}

.contact-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 350px;
  max-width: 520px;
}

.contact-subtitle {
  color: var(--accent-green);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin: 0 0 20px 0;
}

.contact-desc {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.contact-form {
  flex: 1 1 500px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row.full-width {
  flex-wrap: nowrap;
  flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: var(--input-bg);
  border: none;
  border-radius: 8px;
  color: var(--text-light);
  padding: 14px 16px;
  font-size: 1rem;
  flex: 1 1 48%;
  transition: background-color 0.3s ease;
}

textarea {
  resize: vertical;
  flex: 1 1 100%;
  min-height: 100px;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3csvg%20width%3d%2212%22%20height%3d%228%22%20viewBox%3d%220%200%2012%208%22%20xmlns%3d%22http%3a//www.w3.org/2000/svg%22%3e%3cpath%20fill%3d%22%23b3a6e3%22%20d%3d%22M6%208L0%200h12L6%208z%22/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
}

select:focus,
input:focus,
textarea:focus {
  outline: none;
  background-color: #3a2b7d;
}

.form-row.phone-row select {
  flex: 0 0 80px;
  padding-left: 8px;
}

.submit-btn {
  background-color: var(--accent-green);
  color: var(--dark-bg);
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 25px;
  padding: 14px 36px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.submit-btn:hover {
  background-color: #3bb670;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.form-disclaimer a {
  color: var(--accent-green);
  text-decoration: underline;
}

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

  .contact-info,
  .contact-form {
    max-width: 100%;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    flex: 1 1 100%;
  }

  .form-row.phone-row select {
    flex: 1 1 auto;
    padding-left: 16px;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .resource-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .resource-card {
    flex: 0 0 100%;
  }

  .resource-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .resource-title {
    font-size: 2.2rem;
  }
}

/* Very small devices (320px to 374.98px) */
@media (min-width: 320px) and (max-width: 374.98px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  
  .contact-section {
    padding: 15px;
  }
  
  input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        padding: 8px 4px;
        width: 100%;
    }
  /* Add your styles here */
}

/* Small devices (375px to 479.98px) */
@media (min-width: 375px) and (max-width: 479.98px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  .contact-section {
    padding: 15px;
  }
  
  input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        padding: 8px 4px;
        width: 100%;
    }

  /* Styles for small phones */
}

/* Medium devices (480px to 767.98px) */
@media (min-width: 480px) and (max-width: 767.98px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  .contact-section {
    padding: 15px;
  }
  
  input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        padding: 8px 4px;
        width: 100%;
    }

  /* Styles for large phones and small tablets */
}

/* Large devices (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* Styles for tablets */
}

/* Extra large devices (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* Styles for small desktops */
}

/* Large desktops (1200px to 1599.98px) */
@media (min-width: 1200px) and (max-width: 1599.98px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* Styles for large desktops */
}

/* Extra large desktops (1600px to 1919.98px) */
@media (min-width: 1600px) and (max-width: 1919.98px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* Styles for very large desktops */
}

/* Ultra wide screens (1920px to 2559.98px) */
@media (min-width: 1920px) and (max-width: 2559.98px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* Styles for ultra wide screens */
}

/* Beyond 2560px */
@media (min-width: 2560px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* Styles for 4K and larger displays */
}

.custom-footer {
  background-color: #f5f8fa;
  padding: 40px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #2a1f5d;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo img {
  height: 40px;
  user-select: none;
}

.footer-links {
  display: flex;
  flex: 1;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

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

.footer-column ul li {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-column ul li:hover {
  color: #4fd18a;
  /* green accent on hover */
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social .social-icon img {
  height: 30px;
  width: 30px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  user-select: none;
}

.footer-social .social-icon:hover img {
  filter: none;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-column {
    flex: 1 1 45%;
  }

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

/* Animate title fade */
.hero-title {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* Footer Style - Single Line */
.simple-footer {
  background: #140d32;
  color: #ccc;
  padding: 16px 24px;
  font-size: 14px;
  bottom: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-content p {
  margin: 0;
}

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

.footer-social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  /* Makes icons white */
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 0.7;
}

/* =========== */

/* Base */
.footer-section {
  background: #1e102c;
  color: #fff;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  padding: 56px 20px 24px;
}

/* Grid */
.footer-links {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 32px;
}

/* Column spans (desktop) */
.footer-about {
  grid-column: span 4;
}

.footer-links>.footer-column:nth-of-type(2) {
  grid-column: span 2;
}

.footer-links>.footer-column:nth-of-type(3) {
  grid-column: span 2;
  display: none;
}

.footer-platform {
  grid-column: span 4;
}

/* About card */
.footer-about {
  background: linear-gradient(145deg, #443087, #771081);
  border-radius: 16px;
  padding: 20px;
}

.footer-brand img {
  width: 300px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-about h4 {
  font-size: 20px;
  margin: 6px 0 8px;
}

.footer-about p {
  color: #f1eef7;
  line-height: 1.6;
  margin: 0 0 12px;
}

/* Social icons (image-based) */
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px;
  background: #472e87;
  border-radius: 20px;
  justify-content: center;
}

.footer-social .social-icon img {
  width: 30px;
  height: 30px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: transform 0.2s, opacity 0.2s;
}

.footer-social .social-icon:hover img {
  transform: translateY(-2px);
  opacity: 1;
}

/* Columns */
.footer-column h4 {
  font-size: 18px;
  margin: 6px 0 12px;
  font-weight: 700;
}

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

.footer-column li {
  margin-bottom: 9px;
}

.footer-column a {
  color: #c9c6d7;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-column a:hover {
  color: #10b981;
}

/* Platform inner two-column */
.footer-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.footer-subcolumn h5 {
  font-size: 14px;
  margin: 0 0 8px;
  color: #9bd2ff;
  font-weight: 700;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #d7d4e2;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  color: #c9c6d7;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #9bd2ff;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-links {
    grid-template-columns: repeat(6, 1fr);
  }

  .footer-about {
    grid-column: span 6;
  }

  .footer-links>.footer-column:nth-of-type(2) {
    grid-column: span 3;
  }

  .footer-links>.footer-column:nth-of-type(3) {
    grid-column: span 3;
  }

  .footer-platform {
    grid-column: span 3;
  }
}

@media (max-width: 700px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-about,
  .footer-links>.footer-column,
  .footer-platform {
    grid-column: 1 / -1;
  }

  .footer-two-col {
    grid-template-columns: 1fr;
  }

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

/* ======================================= */
/* Icon Css */
/* ======================================= */

/* Base for section spacing and layout */
.sgpe-section,
.rev-section {
  position: relative;
  padding: 30px 20px;
  overflow: hidden;
  z-index: 1;
}

/* Background for .sgpe-section */
.sgpe-section {
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
}

/* Background for .rev-section */
.rev-section {
  background: linear-gradient(45deg, #2b1a63, #771081);
}

/* Section inner containers */
.sgpe-container,
.rev-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Rounded background shapes */
.sgpe-rounded-bg,
.rev-rounded-bg {
  position: absolute;
  width: auto;
  height: auto;
  background: radial-gradient(circle, #a28dda 30%, #c2c2c2 100%);
  border-radius: 50%;
  top: 20%;
  left: 10%;
  z-index: 0;
  opacity: 0.2;
  filter: blur(40px);
}

/* Phone image style */
.sgpe-phone,
.rev-phone {
  position: relative;
  max-width: 100%;
  height: auto;
  z-index: 2;
  border-radius: 20px;
}

/* Headings and titles */
.sgpe-heading,
.rev-center {
  text-align: center;
  z-index: 2;
  position: relative;
}

.sgpe-subtitle,
.sgpe-description,
.rev-desc {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.sgpe-main-title,
.rev-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Icon styling */
.sgpe-icon svg,
.rev-icon svg {
  margin-bottom: 10px;
}

/* Card content (item) */
.sgpe-item,
.rev-item {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  z-index: 2;
}

.sgpe-item:hover,
.rev-item:hover {
  transform: translateY(-5px);
}

/* Arrows */
.sgpe-item-arrow,
.rev-item-arrow {
  font-size: 1.5rem;
  color: #a28dda;
}

.sgs-core-solutions {
  background-image: linear-gradient(45deg, #2b1a63, #771081);
}

.head-btn {
  display: flex;
  gap: 20px;
}

/* ================================================= Media Queries ================================================== */

/* Very small devices (320px to 374.98px) */
@media (min-width: 320px) and (max-width: 479.98px) {
  .logo img {
    width: 150px !important;
  }

  .head-container {
    padding: 0 !important;
  }

  .contact-title {
    font-size: 1.8rem !important;
  }

  .btn-talk {
    display: none;
    padding: 8px 20px !important;
  }

  .features-title {
    font-size: 1.8rem !important;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .sgs-title {
    font-size: 1.8rem !important;
  }

  .sgpe-item,
  .rev-item {
    padding: 8px !important;
  }
}

/* Medium devices (480px to 767.98px) */
@media (min-width: 480px) and (max-width: 767.98px) {
  /* Add your large phone / small tablet styles here */
}

/* Large devices (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Add your tablets styles here */
}

/* Extra large devices (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sgpe-left {
    flex: 1 1 35.33% !important;
  }

  .sgpe-center {
    flex: 1 1 26.33% !important;
  }

  .sgpe-left-last {
    flex: 1 1 31.33% !important;
  }

  .sgpe-title {
    font-size: 1.6rem !important;
  }

  .sgpe-item,
  .rev-item {
    padding: 10px !important;
  }

  .sgpe-center-last {
    flex: 1 1 28.33% !important;
  }

  .sgpe-right-last {
    flex: 1 1 20.33% !important;
  }

  .rev-right {
    flex: 1 1 35.33% !important;
  }

  .rev-center {
    flex: 1 1 26.33% !important;
  }

  .rev-left {
    flex: 1 1 26.33% !important;
  }
}

/* Large desktops (1200px to 1599.98px) */
@media (min-width: 1200px) and (max-width: 1599.98px) {
  /* Add your large desktop styles here */
}

/* Extra large desktops (1600px to 1919.98px) */
@media (min-width: 1600px) and (max-width: 1919.98px) {
  /* Add your extra large desktop styles here */
}

/* Ultra wide screens (1920px to 2559.98px) */
@media (min-width: 1920px) and (max-width: 2559.98px) {
  .container {
    max-width: 65% !important;
  }
}

/* Beyond 2560px */
@media (min-width: 2560px) {
  .container {
    max-width: 55%;
  }
}

/* ================================================= Media Queries ================================================== */
/* =========== Service Page =========== */

.hero-top-section {
  position: relative;
  min-height: 100vh;
  /* Instead of fixed height */
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(45deg, #2b1a63, #771081);
}

.ai-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;

  margin: auto;
  gap: 40px;
}

/* Left side text */
.ai-text {
  flex: 1;
  max-width: 550px;
}

.ai-title {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ai-title .ai-gradient {
  font-weight: 800;
  background: linear-gradient(90deg, #ae67fa, #f49867);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-title strong {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
}

.ai-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 30px;
}

/* Buttons */
.ai-buttons {
  display: flex;
  gap: 16px;
}

.btn-purple {
  background: #ae67fa;
  color: white;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(174, 103, 250, 0.3);
  transition: 0.3s;
}

.btn-purple:hover {
  background: #933df2;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ddd;
  color: #fff;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: #ae67fa;
  color: #ae67fa;
}

/* Right Image */
.ai-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-image img {
  max-width: 100%;
  height: auto !important;
  width: 530px;
}

/* ================================================ */
.feature-suite-section {
  padding: 30px 20px;
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
}

.feature-suite-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.feature-suite-heading {
  color: #f8f9f8;
  font-size: 52px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.feature-suite-heading span {
  font-weight: 800;
  background: linear-gradient(90deg, #f49867, #f467e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-suite-subtext {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.feature-left h3 {
  font-size: 2rem;
  color: #3a2b7d;
}

.feature-left p {
  color: #000;
}

.long-feature-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(to right, #e9d1fb, #e0f8e6);
  border-radius: 20px;
  flex-wrap: wrap;
  text-align: left;
}

.long-feature-box .feature-left {
  flex: 1 1 50%;
}

.long-feature-box .feature-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.long-feature-box img {
  max-width: 100%;
  height: auto !important;
  width: 400px;
  object-fit: contain;
}

.small-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.small-feature-box {
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.small-feature-box.pink {
  background-color: #e395f9;
}

.small-feature-box.blue {
  background-color: #ebf7fd;
}

.small-feature-box h3 {
  color: #3a2b7d;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.small-feature-box p {
  color: #000;
  margin-bottom: 20px;
}

.small-feature-box .img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.small-feature-box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .long-feature-box {
    flex-direction: column;
    text-align: center;
  }

  .long-feature-box .feature-left,
  .long-feature-box .feature-right {
    flex: 1 1 100%;
  }

  .long-feature-box img {
    margin-top: 20px;
  }
}

/* =================== Responsive =================== */

@media (max-width: 1024px) {
  .feature-suite-heading {
    font-size: 42px;
  }

  .long-feature-box {
    flex-direction: row;
    text-align: center;
    padding: 30px;
  }

  .feature-left,
  .feature-right {
    flex: 1 1 100%;
  }

  .long-feature-box img {
    margin-top: 20px;
    max-height: 240px;
  }

  .wide-card {
    max-height: 100% !important;
    flex-wrap: nowrap !important;
  }
}

@media (max-width: 768px) {
  .feature-suite-heading {
    font-size: 34px;
  }

  .feature-suite-subtext {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .feature-left h3,
  .small-feature-box h3 {
    font-size: 1.6rem;
  }

  .small-feature-box {
    padding: 20px;
  }

  .small-feature-box p {
    font-size: 15px;
  }

  .long-feature-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .feature-suite-heading {
    font-size: 28px;
  }

  .feature-left h3,
  .small-feature-box h3 {
    font-size: 1.4rem;
  }

  .long-feature-box img,
  .small-feature-box img {
    max-height: 180px;
  }
}

/* ====== Section2 like grid layout ======= */
.dashboard-section {
  padding: 40px 20px;
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.dashboard-heading {
  font-size: 52px;
  color: #f8f8f8;
  margin-bottom: 10px;
}

.dashboard-heading span {
  background: linear-gradient(90deg, #cb4eff, #ff6584);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard-subtext {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 50px;
}

.dashboard-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dashboard-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.dashboard-card:nth-child(1) {
  background: linear-gradient(135deg,
      #f6ecff,
      #e5e1ff);
  /* Light purple gradient */
}

.dashboard-card:nth-child(2) {
  background: linear-gradient(135deg,
      #fff5ec,
      #ffe6d9);
  /* Soft orange-peach gradient */
}

.dashboard-card.wide-card {
  background: linear-gradient(135deg,
      #f5edff,
      #fdf3ff);
  /* Light lavender-pink gradient */
}

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

.dashboard-card h3 {
  font-size: 2rem;
  color: #3a2b7d;
  margin-bottom: 10px;
}

.dashboard-card h3 span {
  color: #c542f5;
}

.dashboard-card p {
  color: #000;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Icon Styles */
.dashboard-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.dashboard-icon i {
  font-size: 18px;
}

.dashboard-icon.purple {
  background: linear-gradient(45deg, #a855f7, #d59eff);
}

.dashboard-icon.orange {
  background: linear-gradient(45deg, #fda085, #f6d365);
}

.dashboard-image {
  text-align: center;
  margin-top: auto;
}

.dashboard-image img {
  width: 100% !important;
  max-width: 525px !important;
  filter: drop-shadow(2px 4px 6px black);
  object-fit: cover;
  height: 300px !important;
}

img {
  border-radius: 12px !important;
}

/* Wide card */
.wide-card {
  max-height: 350px;
  grid-column: span 2;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
}

.wide-left {
  flex: 1 1 50%;
}

.wide-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.wide-card h3 span {
  color: #c542f5;
}

.wide-card h3 strong {
  color: #111;
}

.wide-card p {
  color: #000;
  margin-bottom: 15px;
}

.explore-btn {
  display: inline-block;
  background: #eee1ff;
  color: #8129e3;
  padding: 10px 16px;
  font-weight: 500;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.explore-btn i {
  margin-left: 5px;
}

.explore-btn:hover {
  background: #e1d2fd;
}

.wide-image {
  flex: 1 1 40%;
  text-align: center;
}

.wide-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .dashboard-heading {
    font-size: 28px;
  }

  .wide-card {
    grid-column: span 1;
    flex-direction: column;
  }

  .wide-left,
  .wide-image {
    flex: 1 1 100%;
  }

  .dashboard-card {
    padding: 20px;
  }
}

/* ======= Info Sections ======== */
.info-section {
  background: #f9f8ff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.info-title {
  font-size: 38px;
  font-weight: 600;
  color: #5e3dea;
  margin-bottom: 40px;
  position: relative;
}

.info-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #5e3dea;
  margin: 12px auto 0;
  border-radius: 3px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.info-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 6px 25px rgba(140, 120, 255, 0.3);
  transition: 0.3s;
  border-bottom: 4px solid #26a69a;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(120, 100, 250, 0.15);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8ddff, #f9f6ff);
  box-shadow: inset 0 0 0 7px #e1d4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #5e3dea;
}

.info-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #771081;
  margin-bottom: 5px;
}

.info-sub {
  font-size: 14px;
  font-weight: 500;
  color: #6c46e6;
  margin-bottom: 10px;
}

.info-box p {
  color: #160035;
}

/* ============== Teams Feature ========== */
.our-team-section {
  padding: 60px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.team-header h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-header p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #fff;
}

.team-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 60px;
  justify-content: center;
}

.team-feature {
  position: relative;
  background: #fff;
  padding: 40px 20px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.team-feature::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 20px;
  z-index: -2;
  transform: rotate(10deg);
  background: #ccc;
  transition: transform 0.3s ease;
}

.team-feature:hover::before {
  transform: rotate(0deg);
}

.team-icon {
  width: 80px;
  height: 80px;
  margin: -60px auto 20px;
  border-radius: 50%;
  background: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.team-feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.team-feature h3 {
  display: block;
  font-size: 22px;
  color: #444;
  font-style: italic;
  margin-bottom: 10px;
}

.team-feature p {
  color: #000;
}

/* Background color matching */
.team-feature.blue::before,
.team-feature.blue .team-icon {
  background-color: #1e88e5;
}

.team-feature.green::before,
.team-feature.green .team-icon {
  background-color: #43a047;
}

.team-feature.teal::before,
.team-feature.teal .team-icon {
  background-color: #26a69a;
}

.team-feature.purple::before,
.team-feature.purple .team-icon {
  background-color: #d59eff;
}

.team-feature.orange::before,
.team-feature.orange .team-icon {
  background-color: #fb8c00;
}

.team-feature.pink::before,
.team-feature.pink .team-icon {
  background-color: #ec407a;
}

/* ======== cta sections ========= */
.cta-section {
  background: #d9d1df;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.cta-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 80px 20px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.cta-shape {
  position: absolute;
  width: 220px;
  z-index: 0;
  opacity: 0.5;
}

.left-shape {
  top: -40px;
  transform: rotate(-15deg);
  left: -30px;
}

.right-shape {
  bottom: -35px;
  transform: rotate(165deg);
  right: -30px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  background: #f4f0ff;
  color: #6c3dff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.cta-heading {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(to right, #7b3cfe, #a06cf7);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(123, 60, 254, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(123, 60, 254, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 36px;
  }

  .cta-shape {
    width: 150px;
  }

  .left-shape {
    top: -30px;
    left: -50px;
  }

  .right-shape {
    top: -30px;
    right: -50px;
  }

  .tab-wrapper-heading {
    width: 100% !important;
    line-height: normal !important;
  }
}

/* ========== Product Page sec 1 =========== */
.solutions-wrapper {
  padding: 80px 20px;
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
}

.solutions-container {
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.solutions-grid {
  display: flex;
  gap: 30px;
  flex: 1 1 450px;
  justify-content: space-between;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-card {
  display: block;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  align-items: flex-start;
  width: 270px;
  height: 275px;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 40px;
  height: 40px;
  background: #0052cc;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.card-text {
  margin-top: 15px;
}

.card-text h4 {
  margin: 0 0 6px;
  font-size: 25px;
  color: #002b5c;
}

.card-text p {
  margin: 0;
  color: #555;
}

.solutions-content {
  text-align: center;
  flex: 1 1 300px;
}

.solutions-content h2 {
  font-size: 32px;
  background: linear-gradient(90deg, #81ff20, #f9f97d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.solutions-content p {
  color: #fff;
  margin-bottom: 20px;
}

.explore-btn {
  padding: 12px 28px;
  background: #3366cc;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  font-weight: 500;
}

.solutions-image {
  flex: 1 1 400px;
  text-align: center;
}

.solutions-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .solutions-container {
    flex-direction: column;
    align-items: center;
  }

  .solutions-grid {
    flex-direction: column;
    align-items: center;
  }

  .solution-card {
    width: 100%;
    max-width: 300px;
  }

  .solutions-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .icon-circle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .card-text h4 {
    font-size: 15px;
  }

  .card-text p {
    font-size: 12px;
  }
}

/* ===================== blog slider ===================== */
.swiper-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper {
  width: 90%;
  height: 80%;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  align-items: center;
  border-radius: 25px;
  padding: 50px;
}

.slide-left {
  flex: 0 0 400px;
  height: 400px;
  background: #ddffe7;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 40px;
}

.slide-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide-right {
  text-align: center;
  flex: 1;
}

.slide-right .date {
  font-size: 16px;
  color: #999;
}

.slide-right h2 {
  font-size: 38px;
  margin: 10px 0;
  color: #26a69a;
}

.slide-right p {
  color: #fff;
  font-size: 18px;
  max-width: 600px;
  margin: auto;
  font-weight: 500;
  margin-bottom: 30px;
}

.read-more {
  background: linear-gradient(to right, #ff512f, #dd2476);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more:hover {
  transform: scale(1.05);
}

.swiper-pagination {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 6px 0;
  background: #ccc;
  border-radius: 10px;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: #ff2e63;
  height: 30px;
}

.product-slider {
  background: rgba(255, 255, 255, 0.2);
}

/* =============== Four Card Long ========== */
.gradient-card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gradient-card-section .card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card-tab {
  width: 60px;
  height: 60px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 15px 15px 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.card-body {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.card-body i {
  font-size: 22px;
  color: #333;
  margin-top: 3px;
}

.card-body h4 {
  margin: 0;
  font-size: 18px;
}

.card-body p {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

/* ============ benefit section ======== */
.benefits-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #7f7fd5, #86a8e7, #af91ffb3);
}

.benefits-section .container {
  display: flex;
  align-items: normal;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-left {
  flex: 1 1 45%;
}

.benefits-left h2 {
  font-size: 48px;
  color: #3a2b7d;
  margin-bottom: 10px;
}

.benefits-left p {
  font-size: 18px;
  color: #111;
  line-height: 1.4;
  margin-bottom: 30px;
}

.benefits-image img {
  width: 100%;
  height: auto;
}

.benefits-right {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-card {
  background: #f9f9f9;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-card .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.benefit-card .gray {
  background: #aaa;
}

.benefit-card .orange {
  background: #ff9800;
}

.benefit-card .red {
  background: #f44336;
}

.benefit-card .blue {
  background: #2196f3;
}

.benefit-card h4 {
  font-size: 16px;
  color: #111;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .benefits-section .container {
    flex-direction: column;
    align-items: center;
  }

  .benefits-left,
  .benefits-right {
    flex: 1 1 100%;
  }

  .benefits-right {
    grid-template-columns: 1fr;
  }

  .benefits-left h2 {
    font-size: 22px;
  }
}

/* ========= 3 by 3 card Switching ======== */
:root {
  --bg-1: #f5e7ff;
  --bg-2: #dcedc8;
  --bg-3: #ffe0b2;
  --bg-4: #c8e6c9;
  --bg-5: #b2ebf2;
  --bg-6: #bbdefb;
  --bg-7: #d7ccc8;

  --icon-1: #a17cff;
  --icon-2: #7ec699;
  --icon-3: #ffc107;
  --icon-4: #81c784;
  --icon-5: #4dd0e1;
  --icon-6: #64b5f6;
  --icon-7: #a1887f;
}

.horizontal-tab {
  background: linear-gradient(145deg, #241652, #312272);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.infographic-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 1440px;
  align-items: stretch;
  justify-content: space-between;
}

.infographic-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.info-card {
  background: var(--bg);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 6px 6px 15px #1e1245, -6px -6px 15px #3a2c84;
  border-left: 6px solid transparent;
}

.info-card.active {
  border-left: 12px solid var(--icon);
  transform: translateY(-3px);
  box-shadow: inset 6px 6px 12px rgba(0, 0, 0, 0.15),
    inset -6px -6px 12px rgba(255, 255, 255, 0.1);
}

.info-card h4 {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 5px;
  color: #222;
}

.info-card p {
  font-size: 16px;
  color: #444;
  margin: 0;
}

.icon-right {
  background-color: var(--icon);
  color: white;
  padding: 10px;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15),
    -4px -4px 8px rgba(255, 255, 255, 0.1);
}

.info-card[data-color="1"] {
  --bg: var(--bg-1);
  --icon: var(--icon-1);
}

.info-card[data-color="2"] {
  --bg: var(--bg-2);
  --icon: var(--icon-2);
}

.info-card[data-color="3"] {
  --bg: var(--bg-3);
  --icon: var(--icon-3);
}

.info-card[data-color="4"] {
  --bg: var(--bg-4);
  --icon: var(--icon-4);
}

.info-card[data-color="5"] {
  --bg: var(--bg-5);
  --icon: var(--icon-5);
}

.info-card[data-color="6"] {
  --bg: var(--bg-6);
  --icon: var(--icon-6);
}

.info-card[data-color="7"] {
  --bg: var(--bg-7);
  --icon: var(--icon-7);
}

.infographic-center {
  background: rgba(255, 255, 255, 0.01);
  padding: 40px;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  color: white;
  flex: 2;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2),
    inset 0 0 60px var(--active-shadow-color, transparent);
  transition: box-shadow 0.4s ease;
}

.center-content {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  z-index: 0;
  width: 100%;
}

.center-content.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
  position: relative;
}

.center-content h2 {
  font-size: 38px;
  margin: 0 0 15px;
  color: #c6fdff;
}

.center-content p {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #a9a9a9;
}

.center-content ul {
  padding-left: 0;
  list-style: none;
}

.center-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff;
}

/* Gradient check icon */
.center-content ul li::before {
  content: "\f00c";
  /* FontAwesome check icon */
  font-family: "Font Awesome 5 Free";
  /* Make sure FA is loaded */
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 16px;
  background: linear-gradient(135deg, #00d4ff, #a17cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.center-content img {
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 14px;
}

@media (max-width: 1024px) {
  .infographic-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .infographic-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-card {
    min-width: 280px;
    max-width: 300px;
  }

  .infographic-center {
    padding: 30px;
  }
}

/* ========= Marketing Section =========== */
.marketing-section {
  padding: 40px 20px;
  margin: auto;
  background-image: linear-gradient(45deg, #2b1a63, #771081);
}

.marketing-subtitle {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.marketing-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.marketing-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.marketing-stat-item {
  flex: 1;
  min-width: 120px;
}

.marketing-stat-item h2 {
  font-size: 1.5rem;
  color: #1565c0;
  font-weight: 700;
}

.marketing-stat-item p {
  color: #666;
  font-size: 0.9rem;
}

.marketing-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.marketing-image-box {
  flex: 1 1 40%;
  min-width: 280px;
}

.marketing-image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.marketing-content-box {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marketing-feature-box {
  background-color: #f6f8fd;
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.marketing-feature-box:nth-child(1) {
  background-color: #e9d8ff;
}

.marketing-feature-box:nth-child(2) {
  background-color: #bdd0ff;
}

.marketing-feature-box:nth-child(3) {
  background-color: #ffeaea;
}

.marketing-feature-box h3 {
  color: #3c2c81;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.marketing-feature-box p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 16px;
}

.marketing-read-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px 14px;
  text-decoration: none;
  color: #111;
  transition: all 0.2s ease;
}

.marketing-read-btn:hover {
  background-color: #e0e0e0;
}

.marketing-read-btn i {
  padding: 4px 0 0 10px;
}

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

  .marketing-image-box,
  .marketing-content-box {
    flex: 1 1 100%;
  }

  .marketing-heading {
    font-size: 1.5rem;
  }

  .marketing-stats {
    flex-direction: column;
    gap: 20px;
  }

  .marketing-section {
    padding: 8px;
  }
}

@media (min-width: 1800px) {
  .marketing-section {
    max-width: 1400px;
  }
}

/* =============== Infographic design =============== */
.infographic-section {
  margin: auto;
  padding: 60px 20px;
  color: #fff;
  background: var(--text-muted);
}

.infographic-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}

.infographic-title span {
  display: block;
  font-size: 32px;
  font-weight: bold;
}

.infographic-subtitle {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 50px;
}

.infographic-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.infographic-row.reverse {
  margin: 40px 0 0;
  flex-direction: row-reverse;
}

.infographic-text {
  flex: 1;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #222;
  transition: 0.3s;
}

.infographic-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.infographic-text p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.infographic-icon {
  width: 120px;
  height: 120px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  margin-left: -15%;
}

.infographic-icon i {
  transform: rotate(-45deg);
  font-size: 20px;
  color: #222;
}

.infographic-icon2 {
  width: 120px;
  height: 120px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  margin-right: -15%;
}

.infographic-icon2 i {
  transform: rotate(-45deg);
  font-size: 20px;
  color: #222;
}

/* Custom pastel card colors */
.bg-cream {
  background-color: #fff3e6;
}

.bg-blue {
  background-color: #dff4ff;
}

.bg-pink {
  background-color: #f8e4e4;
}

.bg-gold {
  background-color: #fff6d4;
}

.bg-lightgreen {
  background-color: #dbf8f3;
}

/* Responsive Layout */
@media (max-width: 768px) {

  .infographic-row,
  .infographic-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .infographic-icon {
    margin-bottom: 15px;
  }

  .infographic-text {
    width: 100%;
  }
}

/* ===================== Tab Swithcing ================== */
.tab-wrapper {
  margin: auto;
  padding: 40px 0;
  align-content: center;
}

.tab-wrapper-heading {
  width: 70%;
  text-align: center;
  margin: auto;
  line-height: 28px;
  margin-bottom: 40px;
}

.tab-wrapper-heading h2 {
  font-size: 38px;
}

.tab-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.tab-buttons button {
  padding: 10px 25px;
  margin: 5px 10px;
  border: 2px solid #ccc;
  background: #fff;
  color: #222;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tab-buttons button.active {
  background: #576dffed;
  color: #fff;
  border-color: #0057ff;
  box-shadow: 0 4px 15px rgba(0, 87, 255, 0.4);
}

.tab-content {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.tab-content.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.cards-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  flex: 1;
  position: relative;
}

.cards-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.card {
  padding: 25px;
  border-radius: 25px;
  background: #e0e0e0;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateX(-50px);
  backdrop-filter: blur(3px);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.2),
    -6px -6px 15px rgba(255, 255, 255, 0.8);
}

.card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #f0f0f0, #cacaca);
  box-shadow: inset 6px 6px 10px #b8b8b8, inset -6px -6px 10px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 24px;
  color: #9474ff;
  transition: all 0.3s ease;
}

.card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #222;
}

.card p {
  font-size: 16px;
  color: #555;
}

.card:nth-child(1) {
  background: #fdf1f4;
  box-shadow: inset 10px 10px 30px #f5cbd6;
}

.card:nth-child(2) {
  background: #e9f7fd;
  box-shadow: inset 10px 10px 30px #c3d8e1;
}

.card:nth-child(3) {
  background: #f1fdee;
  box-shadow: inset 10px 30px #f7fff5;
}

.card:nth-child(4) {
  background: #fefae9;
  box-shadow: inset 10px 10px 30px #e7dfc3;
}

.image-right {
  flex: 0 0 45%;
  opacity: 0;
  transform: translateX(50px);
}

.tab-content.active .image-right {
  animation: fadeInRight 1s forwards;
}

.image-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 1200px) {
  .tab-content.active {
    flex-direction: column !important;
  }
}

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

  .cards-left {
    grid-template-columns: 1fr;
  }

  .cards-left::after {
    display: none;
  }
}

/* ======= Custome neu section =========== */
.neu-wrapper {
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.neu-wrapper-heading {
  line-height: 22px;
  text-align: center;
  margin-bottom: 40px;
}

.neu-wrapper-heading h2 {
  font-size: 46px;
}

.neu-wrapper-heading p {
  font-size: 18px;
}

.neu-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.neu-card {
  flex: 1;
  min-width: 280px;
  background: #f0f0f3;
  border-radius: 25px;
  padding: 25px;
  margin: 12px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.neu-card:nth-child(1) {
  background: linear-gradient(145deg, #bed8ff, #f1cbcb);
}

.neu-card:nth-child(2) {
  background: linear-gradient(145deg, #fff3e6, #d2ecf8);
}

.neu-card:nth-child(3) {
  background: linear-gradient(145deg, #e8f8f5, #e7b5b5);
}

.neu-card:nth-child(4) {
  background: linear-gradient(145deg, #fbeff6, #f2dae9);
}

.neu-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.neu-card h3 {
  font-size: 28px;
  color: #1a1a1a;
  margin: 0px;
}

.neu-card p {
  color: #000;
  font-size: 16px;
  margin: 0;
  padding-top: 10px;
  line-height: 1.5;
}

.neu-card i {
  font-size: 20px;
  color: #333;
  background: #f0f0f0;
  padding: 12px;
  border-radius: 50%;
  box-shadow: inset 4px 4px 8px #d1d1d1, inset -4px -4px 8px #ffffff;
  transition: all 0.3s ease;
}

/* Optional: Hover effect */
.neu-card i:hover {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1),
    -4px -4px 10px rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

/* Optional: Different background per card (by nth-child or class) */
.neu-card:nth-child(1) i {
  background: #ffeaea;
}

.neu-card:nth-child(2) i {
  background: #e6f7ff;
}

.neu-card:nth-child(3) i {
  background: #eaffea;
}

.neu-card:nth-child(4) i {
  background: #fff9e6;
}

.card-small {
  flex: 1;
}

.card-large {
  margin-top: 10px !important;
  flex: 2;
}

/* ===== Responsive tweaks for .neu-wrapper (append after your base styles) ===== */

/* Ultra-wide (>=1600px) */
@media (min-width: 1600px) {
  .neu-wrapper {
    padding: 80px 0;
    gap: 40px;
  }

  .neu-wrapper-heading h2 {
    font-size: 52px;
  }

  .neu-wrapper-heading p {
    font-size: 20px;
  }

  .neu-row {
    gap: 36px;
  }

  .neu-card {
    padding: 30px;
  }

  .neu-card img {
    height: 220px;
  }
}

/* Desktops / large laptops (<=1200px) */
@media (max-width: 1200px) {
  .neu-wrapper-heading h2 {
    font-size: 40px;
  }

  .neu-wrapper-heading p {
    font-size: 17px;
  }

  .neu-row {
    gap: 24px;
  }

  .neu-card {
    margin: 10px;
    padding: 24px;
  }

  .neu-card img {
    height: 180px;
  }
}

/* Tablets (<=992px) */
@media (max-width: 992px) {
  .neu-wrapper {
    padding: 56px 0;
    gap: 26px;
  }

  .neu-wrapper-heading h2 {
    font-size: 34px;
  }

  .neu-wrapper-heading p {
    font-size: 16px;
  }

  .neu-row {
    gap: 20px;
  }

  .neu-card {
    padding: 22px;
    border-radius: 22px;
    min-width: auto;
  }

  .neu-card h3 {
    font-size: 24px;
  }

  .neu-card p {
    font-size: 15px;
  }

  .neu-card img {
    height: 170px;
  }

  /* balance columns a bit tighter */
  .card-small {
    flex: 1.1;
  }

  .card-large {
    flex: 1.9;
  }
}

/* Tablets & large phones (<=768px) */
@media (max-width: 768px) {
  .neu-wrapper {
    padding: 48px 0;
  }

  .neu-wrapper-heading {
    margin-bottom: 28px;
    line-height: 1.35;
  }

  .neu-wrapper-heading h2 {
    font-size: 30px;
  }

  .neu-wrapper-heading p {
    font-size: 15px;
  }

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

  .neu-card,
  .card-small,
  .card-large {
    flex: 1 1 100%;
    width: 100%;
    margin: 0;
  }

  .neu-card {
    padding: 20px;
  }

  .neu-card h3 {
    font-size: 22px;
  }

  .neu-card img {
    height: 180px;
  }
}

/* Phones (<=576px) */
@media (max-width: 576px) {
  .neu-wrapper {
    padding: 42px 0;
    gap: 22px;
  }

  .neu-wrapper-heading h2 {
    font-size: 26px;
  }

  .neu-wrapper-heading p {
    font-size: 14px;
  }

  .neu-card {
    padding: 18px;
    border-radius: 20px;
  }

  .neu-card h3 {
    font-size: 20px;
  }

  .neu-card p {
    font-size: 14px;
  }

  .neu-card img {
    height: 160px;
  }
}

/* Small phones (<=400px) */
@media (max-width: 400px) {
  .neu-wrapper {
    padding: 36px 0;
  }

  .neu-wrapper-heading h2 {
    font-size: 24px;
  }

  .neu-card {
    padding: 16px;
  }

  .neu-card h3 {
    font-size: 19px;
  }

  .neu-card p {
    font-size: 13.5px;
  }

  .neu-card img {
    height: 140px;
  }
}

/* ================== Platform section =============== */
.platform-section {
  padding: 60px 20px;
  background: #2b1a63;
}

.platform-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* Left Side */
.platform-left {
  flex: 1.2;
}

.card-group {
  margin-bottom: 40px;
}

.group-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.platform-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-card {
  flex: 1 1 33%;
  background: linear-gradient(145deg, #e5e5e5, #ffffff);
  box-shadow: inset 2px 2px 5px #d1d1d1, inset -2px -2px 5px #ff5900;
  border-radius: 16px;
  padding: 20px;
  color: #333;
  transition: transform 0.3s;
}

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

.platform-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #5e2dfb;
  margin-bottom: 8px;
}

/* Right Side */
.platform-right {
  flex: 0.8;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.platform-right p {
  font-size: 16px;
  margin: 0;
  color: #eee;
}

.platform-heading {
  font-size: 48px;
  font-weight: 900;
  color: #f8f8ff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.platform-image img {
  width: 100%;
  max-width: 470px;
  height: auto;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .platform-container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .platform-cards {
    flex-direction: column;
  }

  .platform-card {
    width: 100%;
  }

  .platform-heading {
    font-size: 36px;
  }
}

/* ============== competitive-analysis-section ============ */
/* Main Section */
.competitive-analysis-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #7f7fd5, #86a8e7, #af91ffb3);
}

.competitive-container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left Side */
.competitive-left {
  flex: 1;
  min-width: 280px;
}

.competitive-left p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
  font-weight: 500;
}

.competitive-label {
  font-size: 14px;
  color: #666;
  letter-spacing: 1px;
}

.competitive-title {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 10px 0 20px;
  line-height: 1.3;
}

.competitive-image img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

/* Right Side */
.competitive-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 280px;
}

.competitive-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #e5ecf5;
  border-radius: 20px;
  box-shadow: inset 8px 8px 20px #ffe3d4;
  transition: all 0.3s ease;
}

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

.competitive-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(145deg, #d8e0ea, #ffffff);
  box-shadow: inset 3px 3px 6px #cbd2db, inset -3px -3px 6px #d5b1f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 20px;
  color: #4b60b4;
}

.competitive-text h4 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
}

.competitive-text p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .competitive-container {
    flex-direction: column;
    text-align: center;
  }

  .competitive-card {
    flex-direction: column;
    text-align: left;
  }

  .competitive-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .competitive-title {
    font-size: 28px;
  }
}

/* =================== Four Card Tab switch ================== */
.four-card-tab-section {
  color: #fff;
  padding: 60px 20px;
}

.four-card-tab-heading {
  text-align: center;
  margin: auto;
  border-bottom: 0.1px solid #888;
  margin-bottom: 30px;
}

.four-card-tab-heading h2 {
  font-size: 48px;
}

.four-card-tab-heading p {
  font-size: 18px;
  color: #bbbbbb;
}

.four-card-tab-switch {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.four-card-tab-switch .tab-btn {
  background: transparent;
  border: 2px solid #913cff;
  padding: 12px 24px;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.four-card-tab-switch .tab-btn.active,
.four-card-tab-switch .tab-btn:hover {
  background: #000;
  box-shadow: 1px 1px 5px #00d4ff;
}

.four-card-tab-content-wrapper .tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
}

.four-card-tab-content-wrapper .tab-panel.active {
  display: grid;
}

.tab-left .tab-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.tab-left .tab-description {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-btn {
  background: linear-gradient(to right, #913cff, #ff5edb);
  padding: 10px 20px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3),
    -4px -4px 12px rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.learn-btn:hover {
  transform: scale(1.05);
}

.tab-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tab-card {
  background: #2a0038;
  border-radius: 20px;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: inset 5px 5px 15px #1a001f, inset -5px -5px 15px #3a0057;
  transition: all 0.5s ease;
}

.tab-card .icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, #a042ff, #7920d1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: inset 3px 3px 6px #200030, inset -3px -3px 6px #3c005e;
}

.tab-card .icon i {
  color: #fff;
  font-size: 20px;
}

.tab-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
}

.tab-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
}

/* ===== Responsive tweaks for .four-card-tab-section ===== */

/* Large desktops (≥1600px) */
@media (min-width: 1600px) {
  .four-card-tab-heading h2 {
    font-size: 54px;
  }

  .four-card-tab-heading p {
    font-size: 20px;
    max-width: 900px;
    margin: auto;
  }

  .tab-left .tab-title {
    font-size: 36px;
  }

  .tab-right {
    gap: 28px;
  }

  .tab-card {
    padding: 26px;
  }
}

/* Desktops / laptops (≤1200px) */
@media (max-width: 1200px) {
  .four-card-tab-heading h2 {
    font-size: 42px;
  }

  .four-card-tab-heading p {
    font-size: 17px;
  }

  .tab-left .tab-title {
    font-size: 30px;
  }

  .tab-right {
    gap: 22px;
  }

  .tab-card {
    padding: 22px;
  }
}

/* Tablets landscape (≤992px) */
@media (max-width: 992px) {
  .four-card-tab-heading h2 {
    font-size: 36px;
  }

  .four-card-tab-heading p {
    font-size: 16px;
  }

  .four-card-tab-content-wrapper .tab-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tab-left {
    text-align: center;
  }

  .tab-left .tab-title {
    font-size: 28px;
  }

  .tab-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Tablets portrait / large phones (≤768px) */
@media (max-width: 768px) {
  .four-card-tab-section {
    padding: 48px 16px;
  }

  .four-card-tab-heading h2 {
    font-size: 30px;
  }

  .four-card-tab-heading p {
    font-size: 15px;
  }

  .four-card-tab-switch {
    gap: 12px;
  }

  .four-card-tab-switch .tab-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .tab-left .tab-title {
    font-size: 24px;
  }

  .tab-right {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tab-card {
    padding: 20px;
  }
}

/* Phones (≤576px) */
@media (max-width: 576px) {
  .four-card-tab-section {
    padding: 40px 14px;
  }

  .four-card-tab-heading h2 {
    font-size: 26px;
  }

  .four-card-tab-heading p {
    font-size: 14px;
  }

  .four-card-tab-switch {
    flex-direction: column;
  }

  .four-card-tab-switch .tab-btn {
    width: 100%;
  }

  .tab-left .tab-title {
    font-size: 22px;
  }

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

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

/* Small phones (≤400px) */
@media (max-width: 400px) {
  .four-card-tab-section {
    padding: 32px 12px;
  }

  .four-card-tab-heading h2 {
    font-size: 22px;
  }

  .tab-left .tab-title {
    font-size: 20px;
  }

  .tab-card {
    padding: 16px;
  }

  .tab-card h4 {
    font-size: 15px;
  }

  .tab-card p {
    font-size: 12.5px;
  }
}

/* ============ business Feature Card ======== */
.business-feature {
  background: #fff;
  padding: 60px 20px;
}

.business-feature-heading {
  text-align: center;
}

.business-feature-heading h2 {
  font-size: 38px;
  color: #000;
}

.business-feature-heading p {
  font-size: 18px;
  color: #000;
}

.business-feature .container {
  max-width: 1200px;
  margin: auto;
}

.feature-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px 30px;
  justify-content: center;
  padding-top: 60px;
}

.feature-box {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid transparent;
  border-top: 0;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  z-index: 2;
  background: #ccc;
}

.red-gradient {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.orange-gradient1 {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.blue-gradient1 {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.purple-gradient1 {
  background: linear-gradient(135deg, #7f00ff, #e100ff);
}

.red-half-border {
  border-image: linear-gradient(to top, #ff416c 50%, transparent 50%) 1;
}

.orange-half-border {
  border-image: linear-gradient(to top, #ff7e5f 50%, transparent 50%) 1;
}

.blue-half-border {
  border-image: linear-gradient(to top, #36d1dc 50%, transparent 50%) 1;
}

.purple-half-border {
  border-image: linear-gradient(to top, #7f00ff 50%, transparent 50%) 1;
}

.feature-box h4 {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.feature-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .feature-icon {
    top: -25px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .feature-box h4 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 13px;
  }

  .business-feature-heading h2 {
    font-size: 28px;
  }
}

/* ============== Product Page TAB Switching ============ */
.product-tab-switch-container {
  padding: 40px 0;
  margin: auto;
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
}

.product-tab-switch-heading {
  text-align: center;
  line-height: 30px;
}

.product-tab-switch-heading h2 {
  font-size: 38px;
  color: #000;
}

.product-tab-switch-heading p {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 30px;
}

.product-tab-switch-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-tab-switch-tab {
  border: 1px solid #ccc;
  background: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.product-tab-switch-tab.active {
  background: #220e4f;
  color: #fff;
  border-color: #fff;
}

/* Flex for cards */
.product-tab-switch-cards {
  display: flex;
  gap: 20px;
  margin: 20px;
}

.product-tab-switch-card {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.product-tab-switch-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.4s ease;
}

.product-tab-switch-card:hover {
  filter: grayscale(0%);
  flex: 1.5;
}

.product-tab-switch-card:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  position: relative;
}

.card-header h3 {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
  max-width: 80%;
}

.card-arrow {
  background: white;
  color: black;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.card-text {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.4;
  z-index: 2;
  position: relative;
}

.card-bottom {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  position: relative;
}

.card-icon {
  font-size: 22;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.card-tag {
  font-size: 18px;
}

/* ======== career Page Css ========= */
.career-container {
  margin: auto;
  padding: 40px 0;
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
}

/* ===== JOBS + REACH US ===== */
.career-top-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .career-top-section {
    grid-template-columns: 2fr 1fr;
  }
}

.career-drop-heading h2 {
  font-size: 38px;
}

.career-drop-heading p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

/* Left: Jobs */
.career-jobs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.career-job {
  background: #3a2373;
  border: 1px solid #333;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 10px;
}

.career-job.active {
  background: #3366cc;
}

.career-job-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.career-job-meta {
  font-size: 0.85rem;
  color: #fff;
}

.career-job-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  transition: all 0.3s ease;
}

.career-job.active .career-job-icon {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.career-job-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 20px;
  font-size: 0.85rem;
  color: #000;
}

.career-job.active+.career-job-details {
  max-height: 200px;
  padding: 15px 20px;
  border-radius: 10px;
}

/* Right: Reach Us Box */
.career-reach {
  background: linear-gradient(145deg, #e5e5e5, #ffffff);
  box-shadow: inset 2px 2px 5px #d1d1d1, inset -2px -2px 5px #ff5900;
  border-radius: 16px;
  padding: 20px;
  color: #333;
  transition: transform 0.3s;
}

.career-reach h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.career-reach p {
  font-size: 0.9rem;
  color: #111;
  margin-bottom: 10px;
}

.career-reach img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.career-reach .reach-contact {
  font-size: 0.85rem;
  color: #ccc;
}

.career-reach .social-icons a {
  color: #000;
}

/* ===== CONTACT SECTION ===== */
.career-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .career-contact {
    grid-template-columns: 1fr 1fr;
  }
}

.career-contact img {
  width: 100%;
  border-radius: 5px;
}

.career-form {
  display: grid;
  gap: 15px;
}

.career-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.career-form input,
.career-form textarea {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #6704ff;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
}

.career-form textarea {
  resize: none;
  height: 120px;
}

.career-form .file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
}

.career-form .file-upload label {
  background: #d64040;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.career-form button {
  background: #8a2be2;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition-duration: 0.5s;
}

.career-form button:hover {
  background: #3c005e;
}

.careers-contact {
  background: linear-gradient(145deg, #241652, #312272);
  padding: 40px 20px;
}

/* ====== About US page CSS =========== */

/* SECTION 1 */
.about-section {
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-heading {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1rem;
  color: #fff;
}

.about-quote {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  font-style: italic;
  border-left: 5px solid #e2cb45;
  margin-top: 20px;
  color: #fff;
}

.about-video {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.about-video img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.video-caption {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: -40px;
  margin-left: 20px;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.video-caption small {
  display: block;
  font-size: 12px;
  color: #777;
}

/* ====== Responsive adjustments only ====== */

/* Large laptops / small desktops */
@media (max-width: 1200px) {
  .about-section {
    padding: 56px 0;
  }

  .about-grid {
    gap: 32px;
  }

  .about-heading {
    font-size: 2rem;
  }
}

/* Tablets (landscape & portrait) */
@media (max-width: 992px) {
  .about-section {
    padding: 50px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-heading {
    font-size: 1.9rem;
  }

  .about-description {
    font-size: 0.98rem;
  }

  .about-quote {
    margin-top: 16px;
    padding: 18px;
  }

  /* Make the caption sit nicely below image on single column */
  .video-caption {
    margin-top: 12px;
    margin-left: 0;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .about-section {
    padding: 44px 0;
  }

  .about-grid {
    gap: 22px;
  }

  .about-heading {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .about-description {
    font-size: 0.96rem;
  }

  .about-video {
    border-radius: 12px;
  }

  .about-video img {
    border-radius: 12px;
  }

  .about-quote {
    padding: 16px;
    border-left-width: 4px;
    font-size: 0.98rem;
  }

  .video-caption {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
  }
}

/* Small mobile (<=480px) */
@media (max-width: 480px) {
  .about-section {
    padding: 36px 0;
  }

  .about-grid {
    gap: 18px;
  }

  .about-heading {
    font-size: 1.45rem;
  }

  .about-description {
    font-size: 0.94rem;
  }

  .about-quote {
    padding: 14px;
    font-size: 0.95rem;
  }

  .video-caption {
    padding: 10px 12px;
    margin-top: 8px;
  }
}

/* Ultra-wide screens (>=1600px) */
@media (min-width: 1600px) {
  .about-section {
    padding: 72px 0;
  }

  .about-grid {
    gap: 48px;
  }

  .about-heading {
    font-size: 2.6rem;
  }
}

/* SECTION 2 */
.stats-wrapper {
  background: linear-gradient(25deg, #8e87f7e6, #5827dbb3);
  color: #fff;
  padding: 40px 0;
}

.stats-heading {
  text-align: center;
  margin-bottom: 60px;
}

.stats-heading h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.stats-heading p {
  font-size: 1rem;
  color: #ddd;
  max-width: 750px;
  margin: auto;
}

/* .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
} */

.feature {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: inset 0 0 0 transparent, 4px 4px 15px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

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

.feature i {
  color: #ffffff;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.feature h4 {
  margin: 12px 0 8px;
  font-size: 22px;
  color: #fff;
}

.feature p {
  font-size: 16px;
  font-weight: 500;
  color: #f4f4f4;
}

.feature-list-div {
  margin-top: 20px;
}

.feature-list-div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-div li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #e0e0e0;
  font-size: 16px;
  font-weight: 500;
}

.feature-list-div li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #ffa500, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-stats {
  background-color: #0a1e3a;
  /* fallback color */
  padding: 60px 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-box i {
  font-size: 32px;
  color: #ffc107;
  margin-bottom: 10px;
}

.stat-box h3 {
  font-size: 2rem;
  margin: 0;
  color: #fff;
  font-weight: bold;
}

.stat-box p {
  font-size: 0.95rem;
  margin-top: 5px;
  color: #ddd;
}

/* SECTION 3 */
.aboutus-section {
  background: linear-gradient(to bottom right, #311866, #6e0f86);
  padding: 80px 20px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.aboutus-container div {
  margin: 0 auto;
  text-align: center;
}

.aboutus-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.aboutus-title span {
  color: #ff94e0;
}

.aboutus-description {
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-size: 1rem;
  color: #e1e1e1;
}

.aboutus-feature-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  background: rgba(29, 209, 161, 0.12);
  /* translucent version of #1dd1a1 */
  border-radius: 20px;
  padding: 40px 20px;
  width: 700px;
  margin-bottom: 60px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.aboutus-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  transition: transform 0.3s ease;
}

.aboutus-feature:hover {
  transform: translateY(-5px);
}

.aboutus-feature i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #1dd1a1;
}

.aboutus-feature span {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.aboutus-vision-mission {
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.aboutus-card {
  flex: 1;
  min-width: 260px;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 4px solid #794ef429;
}

.aboutus-card:hover {
  transform: translateY(-6px);
}

.aboutus-card i {
  font-size: 28px;
  color: #1dd1a1;
  margin-bottom: 12px;
}

.aboutus-card h4 {
  font-size: 1.25rem;
  color: #1dd1a1;
  margin-bottom: 12px;
}

.aboutus-card p {
  font-size: 0.95rem;
  color: #eaeaea;
  font-weight: 500;
}

.aboutus-button {
  margin-top: 40px;
}

.btn-aboutus {
  background-color: #1dd1a1;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-aboutus:hover {
  background-color: #17b398;
  transform: scale(1.05);
}

/* Responsive */
/* ===== Responsive tweaks for .aboutus-section (append after your base styles) ===== */

/* Ultra-wide screens */
@media (min-width: 1600px) {
  .aboutus-section {
    padding: 100px 40px;
  }

  .aboutus-title {
    font-size: 3rem;
  }

  .aboutus-description {
    font-size: 1.1rem;
    max-width: 820px;
  }

  .aboutus-feature-box {
    gap: 36px;
    padding: 48px 28px;
    width: 900px;
  }

  .aboutus-card h4 {
    font-size: 1.35rem;
  }

  .aboutus-card p {
    font-size: 1rem;
  }
}

/* Large laptops / desktops */
@media (max-width: 1200px) {
  .aboutus-section {
    padding: 80px 24px;
  }

  .aboutus-title {
    font-size: 2.3rem;
  }

  .aboutus-description {
    max-width: 760px;
  }

  .aboutus-feature-box {
    width: 90%;
    gap: 28px;
    padding: 36px 24px;
  }

  .aboutus-vision-mission {
    gap: 24px;
    padding: 36px 26px;
  }
}

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .aboutus-title {
    font-size: 2.1rem;
  }

  .aboutus-description {
    font-size: 0.98rem;
    margin-bottom: 40px;
  }

  .aboutus-feature-box {
    width: 100%;
    max-width: 720px;
    padding: 30px 20px;
    gap: 22px;
  }

  .aboutus-feature i {
    font-size: 28px;
  }

  .aboutus-feature span {
    font-size: 0.98rem;
  }

  .aboutus-vision-mission {
    gap: 20px;
    padding: 32px 22px;
  }

  .aboutus-card {
    min-width: 240px;
    padding: 26px 18px;
  }
}

/* Tablets & large phones (<= 768px) */
@media (max-width: 768px) {
  .aboutus-section {
    padding: 64px 18px;
  }

  .aboutus-title {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .aboutus-description {
    font-size: 0.96rem;
    margin-bottom: 32px;
  }

  .aboutus-feature-box {
    max-width: 560px;
    padding: 24px 16px;
    gap: 18px;
    border-radius: 16px;
  }

  .aboutus-feature {
    min-width: 120px;
  }

  .aboutus-feature i {
    font-size: 26px;
  }

  .aboutus-vision-mission {
    flex-direction: column;
    padding: 26px 18px;
    gap: 16px;
  }

  .aboutus-card {
    width: 100%;
    min-width: 0;
    padding: 22px 16px;
    border-radius: 14px;
  }

  .aboutus-card h4 {
    font-size: 1.15rem;
  }

  .aboutus-card p {
    font-size: 0.94rem;
  }
}

/* Small phones (<= 576px) */
@media (max-width: 576px) {
  .aboutus-section {
    padding: 56px 14px;
  }

  .aboutus-title {
    font-size: 1.7rem;
  }

  .aboutus-description {
    font-size: 0.94rem;
  }

  .aboutus-feature-box {
    padding: 20px 14px;
    gap: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  }

  .aboutus-feature {
    min-width: 46%;
  }

  .aboutus-feature i {
    font-size: 24px;
  }

  .aboutus-feature span {
    font-size: 0.92rem;
  }

  .aboutus-card {
    padding: 20px 14px;
  }
}

/* Extra small (<= 400px) */
@media (max-width: 400px) {
  .aboutus-section {
    padding: 48px 12px;
  }

  .aboutus-title {
    font-size: 1.55rem;
  }

  .aboutus-description {
    font-size: 0.92rem;
  }

  .aboutus-feature {
    min-width: 100%;
  }

  .aboutus-feature i {
    font-size: 22px;
  }

  .aboutus-card h4 {
    font-size: 1.05rem;
  }

  .aboutus-card p {
    font-size: 0.9rem;
  }
}

/* ============ ewa section =========== */
.ewa-section {
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
  padding: 60px 20px;
}

.ewa-container {
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ewa-left {
  flex: 1 1 350px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ewa-image-wrapper {
  position: relative;
  width: 100%;
}

.ewa-circle-bg {
  position: absolute;
  top: -8%;
  /* left: 50%; */
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #2b1a63a3;
  border-radius: 20px;
  z-index: 1;
}

.ewa-phone {
  position: relative;
  height: auto;
  width: 100%;
  z-index: 2;
}

.ewa-right {
  flex: 1 1 500px;
}

.ewa-right h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.ewa-blue {
  color: #17b398;
}

.ewa-right p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 500;
}

.ewa-block {
  margin-bottom: 25px;
}

.ewa-block h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.ewa-block ul {
  list-style: none;
  padding: 0;
}

.ewa-block ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
}

.ewa-block ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #4ef47e, #4ef47e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .ewa-container {
    flex-direction: column;
    text-align: center;
  }

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

  .ewa-right {
    text-align: left;
  }
}

/* === Product-section css === */
.product-section {
  padding: 60px 20px;
  background: #2b1a63;
}

.product-container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SECTION */
.product-left {
  flex: 1 1 400px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-box {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 160px;
  /* or any consistent height */
  padding: 20px;
  border-radius: 12px;
  align-items: flex-start;
  background: linear-gradient(145deg, #e5e5e5, #ffffff);
  box-shadow: inset 2px 2px 5px #d1d1d1, inset -2px -2px 5px #ff5900;
}

.product-box .aboutus-feature {
  align-self: flex-end;
  font-weight: 500;
  bottom: 0;
}

.product-box h4 {
  margin: 0 0 5px;
  font-size: 24px;
  font-weight: 600;
  color: #0a1e3a;
}

.product-box p {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  color: #000;
}

.product-title {
  margin-top: 30px;
  font-size: 26px;
  font-weight: 700;
}

.product-blue {
  color: #2e57e8;
}

.product-right {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
}

.product-circle-bg {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #732ee85e;
  border-radius: 20px;
  z-index: 1;
}

.product-phone {
  position: relative;
  width: 100%;
  z-index: 2;
}

/* ===== Responsive tweaks for .product-section (append after your base styles) ===== */

/* Large desktops / ultrawide */
@media (min-width: 1600px) {
  .product-section {
    padding: 90px 40px;
  }

  .product-container {
    gap: 64px;
  }

  .product-grid {
    gap: 28px;
  }

  .product-box {
    min-height: 180px;
    padding: 28px;
  }

  .product-box h4 {
    font-size: 28px;
  }

  .product-box p {
    font-size: 16px;
  }

  .product-image-wrapper {
    max-width: 600px;
  }
}

/* Desktops / large laptops */
@media (max-width: 1200px) {
  .product-section {
    padding: 70px 24px;
  }

  .product-container {
    gap: 48px;
  }

  .product-grid {
    gap: 24px;
  }

  .product-box h4 {
    font-size: 22px;
  }

  .product-box p {
    font-size: 15px;
  }

  .product-image-wrapper {
    max-width: 520px;
  }
}

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .product-container {
    gap: 36px;
    align-items: flex-start;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .product-box {
    min-height: 150px;
    padding: 22px;
  }

  .product-image-wrapper {
    max-width: 480px;
  }

  .product-circle-bg {
    left: 50%;
    transform: translateX(-50%);
    border-radius: 24px;
  }
}

/* Tablets & large phones (<= 768px) */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column-reverse;
    gap: 28px;
    text-align: center;
  }

  .product-right,
  .product-left {
    flex: 1 1 100%;
    width: 100%;
  }

  .product-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .product-box {
    min-height: initial;
    padding: 18px;
    align-items: center;
    text-align: left;
    /* keeps headings left-aligned inside centered container */
  }

  .product-box h4 {
    font-size: 20px;
  }

  .product-box p {
    font-size: 14px;
  }

  .product-circle-bg {
    width: 85%;
    height: 85%;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Small phones (<= 576px) */
@media (max-width: 576px) {
  .product-section {
    padding: 48px 16px;
  }

  .product-grid {
    max-width: 100%;
  }

  .product-image-wrapper {
    max-width: 360px;
  }

  .product-box {
    padding: 16px;
    border-radius: 10px;
  }

  .product-box h4 {
    font-size: 18px;
  }

  .product-circle-bg {
    width: 92%;
    height: 70%;
    top: 10%;
  }
}

/* Extra small (<= 400px) */
@media (max-width: 400px) {
  .product-section {
    padding: 42px 12px;
  }

  .product-image-wrapper {
    max-width: 320px;
  }

  .product-box h4 {
    font-size: 17px;
  }

  .product-box p {
    font-size: 13px;
  }

  .product-circle-bg {
    width: 100%;
    height: 64%;
    top: 14%;
  }
}

/* ========= Up down logo slider and vertical slide logo ========= */
.partner-section {
  position: relative;
  min-height: 100vh;
  /* Instead of fixed height */
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(45deg, #2b1a63, #771081);
}

.partner-container {
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-left {
  flex: 1 1 400px;
}

.partner-left h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.partner-left h2 {
  font-size: 58px;
  font-weight: 800;
  margin: 15px 0;
}

.partner-left p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 480px;
}

.partner-buttons {
  display: flex;
  gap: 15px;
}

.partner-right {
  flex: 1 1 500px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
}

.logos-slider {
  width: 32%;
  height: 300px;
}

.logos-slider img {
  width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 10px;
}

.partner-swipers {
  display: contents;
}

@media (max-width: 768px) {
  .partner-container {
    padding-top: 110px;
    flex-direction: column;
    text-align: center;
  }

  .partner-right {
    flex-direction: row;
    justify-content: center;
  }

  .logos-slider {
    width: 30%;
    height: 220px;
  }

  .partner-left h2 {
    font-size: 2rem;
  }
}

/* ======== partner Page CSS ======= */
.partner-certified-section {
  padding: 40px 0;
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
}

.partner-certified-container {
  margin: auto;
  text-align: center;
}

.partner-certified-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.partner-certified-subtitle {
  color: #fff;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.partner-certified-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.partner-certified-card {
  border: 4px solid #00f89a30;
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 0 0 transparent;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-certified-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.partner-certified-icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.partner-certified-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: #17b398;
  margin-bottom: 12px;
}

.partner-certified-card p {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.partner-certified-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-certified-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.4;
  margin: 6px 0;
}

.check::before {
  content: "\2714";
  color: #17b398;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .partner-certified-card {
    padding: 24px;
  }

  .partner-certified-title {
    font-size: 2rem;
  }
}

.partner-certified-icon i {
  font-size: 32px;
  color: #8e87f7;
  padding: 10px;
  border-radius: 14px;
  background: #8400ff57;
  filter: drop-shadow(2px 4px 6px black);
}

.partner-certified-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.partner-certified-card:hover .partner-certified-icon i {
  transform: rotateY(360deg);
  transition: transform 0.6s ease;
}

.partner-certified-icon i {
  transition: transform 0.6s ease;
}

/* ============= partner Page Slider ========== */
.partner-page-slide {
  padding: 80px 0;
  background: #2b1a63;
}

.partner-slide-container {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.partner-slide-left {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.partner-slide-sub {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.partner-slide-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.partner-slide-title span {
  color: #3b82f6;
}

.partner-slide-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 24px;
}

.partner-slide-nav {
  display: flex;
  gap: 12px;
}

.partner-slide-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #3b82f6;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.partner-slide-right {
  flex: 2;
  min-width: 300px;
  position: relative;
}

.partner-slide-bg {
  position: absolute;
  top: -25px;
  left: 15%;
  height: 300px;
  width: 100%;
  background: linear-gradient(90deg, #3b82f6, #6c63ff);
  z-index: 1;
  border-radius: 10px;
}

.partnerSwiper {
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  font-size: 36px;
  color: #3b82f6;
}

.service-card h4 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.85rem;
  color: #666;
}

/* ===== Responsive Enhancements for .partner-page-slide ===== */

/* Large desktops >= 1400px */
@media (min-width: 1400px) {
  .partner-slide-title {
    font-size: 46px;
  }

  .service-card {
    padding: 48px 32px;
  }
}

/* Laptops & Desktops <= 1200px */
@media (max-width: 1200px) {
  .partner-slide-title {
    font-size: 34px;
  }

  .partner-slide-desc {
    font-size: 1rem;
  }
}

/* Tablets <= 992px */
@media (max-width: 992px) {
  .partner-slide-container {
    gap: 30px;
  }

  .partner-slide-title {
    font-size: 30px;
  }

  .partner-slide-bg {
    height: 260px;
    left: 10%;
  }

  .service-card {
    padding: 30px 20px;
  }
}

/* Tablets & Large Phones <= 768px */
@media (max-width: 768px) {
  .partner-slide-container {
    flex-direction: row;
    text-align: center;
    align-items: center;
  }

  .partner-slide-left {
    max-width: 100%;
  }

  .partner-slide-title {
    font-size: 26px;
  }

  .partner-slide-desc {
    font-size: 0.95rem;
    color: #ddd;
    /* more contrast on dark background */
  }

  .partner-slide-bg {
    display: none;
    /* simplify mobile view */
  }

  .partner-slide-nav {
    justify-content: center;
  }

  .partnerSwiper {
    padding-left: 0;
  }
}

/* Phones <= 576px */
@media (max-width: 576px) {
  .partner-slide-title {
    font-size: 22px;
  }

  .partner-slide-nav button {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .service-card {
    padding: 24px 16px;
  }
}

/* Small Phones <= 400px */
@media (max-width: 400px) {
  .partner-slide-title {
    font-size: 20px;
  }

  .partner-slide-desc {
    font-size: 0.85rem;
  }

  .service-icon {
    font-size: 30px;
  }
}

/* ======= ======== */
.partner-service-section {
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
  color: #fff;
  padding: 60px 20px;
}

.partner-service-container {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
}

.partner-service-left {
  flex: 1 1 300px;
}

.partner-service-left h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.partner-service-left p {
  font-size: 1rem;
  margin-bottom: 24px;
  color: #fff;
  max-width: 360px;
}

.btn-service-get {
  background: #fff;
  color: #0d1224;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-service-get:hover {
  background: #e2e8f0;
}

.partner-service-right {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.service-card-p {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 16px;
  text-align: left;
  width: calc(50% - 15px);
  transition: transform 0.3s ease;
  position: relative;
  top: 0;
}

.service-card-p:hover {
  border: 4px solid #4ef47e45;
}

.service-up {
  top: -30px;
}

.service-down {
  top: 30px;
}

.service-icon-circle {
  width: 50px;
  height: 50px;
  background: #0d1224;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #38bdf8;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}

.service-card-p:hover .service-icon-circle {
  transform: rotateY(180deg);
}

.service-card-p h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ffffff;
}

.service-card-p p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.4;
}

/* ===== Responsive tweaks for .partner-service-section (append after your base styles) ===== */

/* Ultra-wide (>=1600px) */
@media (min-width: 1600px) {
  .partner-service-section {
    padding: 80px 32px;
  }

  .partner-service-left h2 {
    font-size: 56px;
  }

  .partner-service-right {
    gap: 36px;
  }

  .service-card-p {
    padding: 28px;
  }
}

/* Desktops / large laptops (<=1200px) */
@media (max-width: 1200px) {
  .partner-service-left h2 {
    font-size: 44px;
  }

  .partner-service-left p {
    max-width: 420px;
  }

  .partner-service-right {
    gap: 24px;
  }

  .service-card-p {
    width: calc(50% - 12px);
  }
}

/* Tablets (<=992px) */
@media (max-width: 992px) {
  .partner-service-container {
    gap: 40px;
  }

  .partner-service-left h2 {
    font-size: 38px;
  }

  .partner-service-left p {
    font-size: 0.98rem;
  }

  .partner-service-right {
    gap: 20px;
  }

  .service-card-p {
    width: 100%;
  }

  /* Remove stagger on smaller screens */
  .service-up,
  .service-down {
    top: 0;
  }
}

/* Tablets & large phones (<=768px) */
@media (max-width: 768px) {
  .partner-service-section {
    padding: 56px 18px;
  }

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

  .partner-service-left {
    text-align: center;
  }

  .partner-service-left h2 {
    font-size: 32px;
  }

  .partner-service-left p {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
  }

  .btn-service-get {
    display: inline-block;
    width: auto;
    padding: 12px 22px;
  }

  .partner-service-right {
    justify-content: center;
  }

  .service-card-p {
    padding: 20px;
    border-radius: 14px;
  }

  .service-icon-circle {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}

/* Phones (<=576px) */
@media (max-width: 576px) {
  .partner-service-section {
    padding: 48px 14px;
  }

  .partner-service-left h2 {
    font-size: 28px;
  }

  .partner-service-left p {
    font-size: 0.95rem;
  }

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

  .service-card-p h4 {
    font-size: 0.98rem;
  }

  .service-card-p p {
    font-size: 0.9rem;
  }

  /* Avoid layout jump on hover for mobile (optional) */
  .service-card-p:hover {
    border-width: 2px;
  }
}

/* Small phones (<=400px) */
@media (max-width: 400px) {
  .partner-service-left h2 {
    font-size: 24px;
  }

  .service-icon-circle {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .service-card-p {
    padding: 18px;
  }
}

/* ================================== */
.partner-metrics-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 20px;
  max-width: 1240px;
  margin: auto;
  font-family: "Inter", sans-serif;
}

.metrics-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 24px;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.metrics-content {
  flex: 1 1 300px;
  max-width: 600px;
}

.metrics-content .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.metrics-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.metrics-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.metrics-btn {
  padding: 10px 20px;
  background: #1e3a8a;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.metrics-btn:hover {
  background: #3747c3;
}

.metrics-chart {
  flex: 1 1 280px;
  text-align: right;
}

.metrics-chart img {
  max-width: 100%;
  border-radius: 12px;
}

/* Gradient backgrounds */
.blue-gradient {
  background: linear-gradient(to right, #e0f2fe, #c7d2fe);
}

.orange-gradient {
  background: linear-gradient(to right, #ffe4c4, #fdebd0);
}

.purple-gradient {
  background: linear-gradient(to right, #f3e8ff, #e0d3fc);
}

/* Responsive */
@media (max-width: 768px) {
  .metrics-card {
    /* flex-direction: column; */
    text-align: center;
    padding: 20px;
  }

  .metrics-chart {
    text-align: center;
    margin-top: 20px;
  }
}

/* ==========>>> */
.data-benefit-section {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
}

.data-benefit-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  margin: 20px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.data-benefit-card.reverse {
  flex-direction: row-reverse;
}

.data-benefit-text {
  flex: 1 1 450px;
}

.data-badge {
  background: #eef2ff;
  color: #4338ca;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.data-benefit-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.data-benefit-text p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.6;
}

.benefit-points {
  list-style: none;
  padding: 0;
  color: #374151;
  text-align: left;
}

.benefit-points li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.benefit-points li i {
  color: #10b981;
  margin-right: 10px;
  font-size: 1rem;
}

.data-benefit-image {
  flex: 1 1 400px;
  overflow: hidden;
  border-radius: 16px;
  max-width: 420px;
  transition: transform 0.5s ease;
  transform: scale(0.8);
}

.data-benefit-card:hover .data-benefit-image {
  transform: scale(1);
}

.data-benefit-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

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

  .data-benefit-card,
  .data-benefit-card.reverse {
    text-align: center;
  }

  .data-benefit-image {
    transform: scale(1);
    max-width: 100%;
    margin-top: 20px;
  }

  .data-benefit-card:hover .data-benefit-image {
    transform: scale(1.05);
  }
}
/* Scoped to your form */
#wpcf7-f7-o1 input[size="40"] {
  width: 220px !important;  /* equivalent to size 20 */
}

/* ===================== GLOBAL WRAPPER ===================== */
.sgp-page {
    --sgp-text: #0d1320;
    --sgp-bg: #f6f8fb;
    --sgp-surface: #fff;

    --sgp-brand-a: #6a5cff;
    --sgp-brand-b: #c44bff;
    --sgp-brand-c: #ff6fb5;
    --sgp-brand-d: #12b4ff;

    --sgp-shadow-sm: 0 1px 2px rgba(10, 22, 50, .06), 0 1px 1px rgba(10, 22, 50, .04);
    --sgp-shadow-lg: 0 24px 60px rgba(20, 35, 80, .12), 0 8px 24px rgba(20, 35, 80, .10);

    --sgp-radius: 20px;
    --container: 1340px;

    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
    color: var(--sgp-text);
    line-height: 1.55;
    background:
        radial-gradient(900px 420px at 12% -10%, color-mix(in hsl, var(--sgp-brand-a) 18%, #fff), transparent 65%),
        radial-gradient(900px 420px at 100% 0%, color-mix(in hsl, var(--sgp-brand-c) 18%, #fff), transparent 65%),
        var(--sgp-bg);
    margin: 0;
}

.container {
    margin: auto;
    padding: clamp(18px, 3vw, 28px);
}

/* ===================== HERO ===================== */
.sgp-hero {
    position: relative;
    padding: clamp(48px, 6vw, 88px) 0 clamp(40px, 5vw, 72px);
    background: linear-gradient(45deg, #b598ff, #771081);
    border-bottom: 1px solid rgba(14, 19, 37, .06);
}

.sgp-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: clamp(24px, 3.5vw, 56px);
    align-items: center;
}

.sgp-grid--flip>.sgp-tips-card {
    order: 1;
}

.sgp-grid--flip>.sgp-copy {
    order: 2;
}

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

.sgp-title {
    margin: 0 0 12px 0;
    font-weight: 800;
    letter-spacing: -.02em;
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.03;
    color: #fff;
}

.sgp-grad {
    background: linear-gradient(90deg, #8ffff4, #ccf9c7 40%, #ffa7d2 65%, #79eaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sgp-sub {
    color: #c2dcff;
    font-size: clamp(16px, 1.6vw, 20px);
    max-width: 62ch;
    margin: 0 0 16px 0;
}

.sgp-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.sgp-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: .01em;
    padding: 12px 18px;
    border-radius: 12px;
    outline-offset: 3px;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.sgp-btn--primary {
    color: #0b1020;
    background: linear-gradient(180deg, #fff, #eaf0ff);
    border: 1px solid rgba(20, 30, 50, .1);
    box-shadow: var(--sgp-shadow-lg);
}

.sgp-btn--primary:hover {
    transform: translateY(-1px);
}

.sgp-btn--ghost {
    color: #0d1320;
    background: #fff;
    border: 1px solid rgba(20, 30, 50, .14);
    box-shadow: var(--sgp-shadow-sm);
}

.sgp-btn--ghost:hover {
    background: #f7faff;
}

/* ===================== TIPS CARD (namespaced) ===================== */
.sgp-tips-card {
    width: min(560px, 100%);
    margin: 28px auto;
    background: var(--sgp-surface);
    border: 1px solid rgba(20, 30, 50, .10);
    border-radius: 18px;
    box-shadow: var(--sgp-shadow-lg);
    overflow: hidden;
    position: relative;
    padding: 8px;
}

.sgp-tips-card>input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* header */
.sgpt-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px;
    background: linear-gradient(0deg, rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)), linear-gradient(90deg, #efeaff, #f3e9ff 40%, #eaf6ff 100%);
    border-bottom: 1px solid rgba(20, 30, 50, .08);
}

.sgpt-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.01em;
}

/* toggle */
.sgpt-switch {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #efeaff;
    border: 1.5px solid #bdb1ff;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
}

.sgpt-btn {
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    color: #5a56a8;
    border: 1px solid transparent;
    transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
    position: relative;
    z-index: 1;
}

.sgpt-btn:hover {
    transform: translateY(-1px);
}

/* moving thumb */
.sgpt-thumb {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 999px;
    pointer-events: none;
    background: linear-gradient(180deg, #fff, #eef2ff);
    border: 1px solid rgba(20, 30, 50, .10);
    box-shadow: 0 8px 18px rgba(98, 106, 255, .18);
    transition: transform .25s ease, width .25s ease, height .25s ease;
    z-index: 0;
}

#sgpOn:checked~.sgpt-head .sgpt-on {
    background: linear-gradient(180deg, #fff, #eef2ff);
    color: #0d1320;
    border-color: rgba(20, 30, 50, .10);
    box-shadow: 0 8px 18px rgba(98, 106, 255, .2);
}

#sgpOff:checked~.sgpt-head .sgpt-off {
    background: linear-gradient(180deg, #fff, #efe8ff);
    color: #0d1320;
    border-color: rgba(20, 30, 50, .10);
    box-shadow: 0 8px 18px rgba(150, 90, 220, .2);
}

/* body + states */
.sgpt-body {
    padding: 18px;
}

.sgpt-state {
    display: none;
    padding: 0px 16px 16px;
}

#sgpOn:checked~.sgpt-body .sgpt-state-on {
    display: block;
}

#sgpOff:checked~.sgpt-body .sgpt-state-off {
    display: block;
}

/* smooth stack/fade when JS adds .js/.is-on/.is-off */
.sgp-tips-card.js .sgpt-body {
    position: relative;
    overflow: hidden;
}

.sgp-tips-card.js .sgpt-state {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
    display: block;
}

.sgp-tips-card.js.is-on .sgpt-state-on,
.sgp-tips-card.js.is-off .sgpt-state-off {
    opacity: 1;
    transform: none;
    visibility: visible;
    transition-delay: 0s, 0s, 0s;
}

.sgpt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 26px);
    align-items: flex-start;
}

@media (max-width:520px) {
    .sgpt-row {
        grid-template-columns: 1fr;
    }
}

.sgpt-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #5f62bd;
}

.sgpt-help {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    background: #f0eeff;
    color: #6b62e8;
    border: 1px solid #c9c2ff;
}

.sgpt-value {
    display: block;
    margin-top: 6px;
    font-weight: 900;
    letter-spacing: -.02em;
    font-size: clamp(34px, 5vw, 42px);
}

/* guarantee */
.sgpt-guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    background: #ffefd2;
    border: 1.5px solid #e0b56b;
    color: #654200;
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: inset 0 8px 20px rgba(203, 160, 65, .16);
}

.sgpt-seal {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: #f5d9a3;
    border: 1.2px solid #b38738;
}

.sgpt-gtext {
    font-size: 14px;
}

/* off state coverage */
.sgpt-coverage {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.sgpt-pill {
    background: #efeaff;
    color: #3d3aa0;
    border: 1px solid #c9c2ff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(20, 35, 80, .10);
}

.sgpt-curve {
    opacity: .85;
}

.sgpt-curve.left {
    justify-self: end;
}

.sgpt-curve.right {
    justify-self: start;
}

.sgpt-body {
    will-change: height;
}

/* ===================== SAVINGS ===================== */
.sgp-savings {
    position: relative;
    padding: clamp(40px, 6vw, 80px) 0;
    background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
}

.sgp-savings__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: stretch;
}

@media (max-width:980px) {
    .sgp-savings__grid {
        grid-template-columns: 1fr;
    }
}

.sgp-savings__controls {
    background: #faff0052;
    border: 1px solid rgba(20, 30, 50, .1);
    border-radius: var(--sgp-radius);
    box-shadow: var(--sgp-shadow-lg);
    padding: clamp(18px, 3vw, 28px);
}

.sgp-savings__title {
    color: #062b00;
    margin: 0 0 6px 0;
    font-size: clamp(24px, 3.6vw, 36px);
    font-weight: 800;
    letter-spacing: -.02em;
}

.sgp-savings__sub {
    color: #062b00;
    margin: 0 0 16px 0;
}

.sgp-note {
    color: #062b00;
}

.sgp-form {
    display: grid;
    gap: 18px;
}

.sgp-field label {
    display: block;
    color: #062b00;
    font-weight: 700;
    margin-bottom: 6px;
}

.sgp-input {
    position: relative;
}

.sgp-input input[type="number"] {
    width: -webkit-fill-available;
    padding: 12px 12px 12px 34px;
    border-radius: 12px;
    border: 1px solid rgba(20, 30, 50, .14);
    background: #fff;
    box-shadow: var(--sgp-shadow-sm);
    font-weight: 700;
    font-size: 16px;
}

.sgp-prefix {
    position: absolute;
    inset: 0 auto 0 12px;
    height: 100%;
    display: grid;
    place-items: center;
    color: #5b60b0;
    font-weight: 800;
}

.sgp-field input[type="range"] {
    width: 100%;
    margin-top: 8px;
    accent-color: var(--sgp-brand-a);
    cursor: pointer;
}

.sgp-savings__results {
    display: grid;
    gap: 16px;
}

.sgp-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.6vw, 24px);
}

@media (max-width:640px) {
    .sgp-compare {
        grid-template-columns: 1fr;
    }
}

.sgp-card {
    background: #ffae0052;
    border: 1px solid rgba(20, 30, 50, .1);
    border-radius: 16px;
    box-shadow: var(--sgp-shadow-lg);
    padding: 16px;
}

.sgp-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.sgp-meta {
    color: #000000;
    background: #e6fff3;
    font-weight: 700;
    padding: 10px;
    border-radius: 20px;
    font-size: 13px;
}

.sgp-pill {
    width: 114px;
    text-align: center;
    background: #efeaff;
    color: #3d3aa0;
    border: 1px solid #c9c2ff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
}

.sgp-pill--good {
    width: 100px;
    background: #e6fff3;
    color: #0f5132;
    border-color: #a6f0c9;
}

.sgp-figs {
    display: grid;
    gap: 10px;
}

.sgp-figs dt {
    color: #000000;
    font-weight: 700;
}

.sgp-figs dd {
    margin: 0;
    color: #000000;
    font-weight: 900;
    font-size: clamp(20px, 3.8vw, 28px);
}

.sgp-figs .total dd {
    font-size: clamp(26px, 4.5vw, 34px);
}

.sgp-delta {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    background: #ffae0052;
    color: #000000;
    border: 1px solid rgba(20, 30, 50, .1);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    box-shadow: var(--sgp-shadow-sm);
}

.sgp-delta strong {
    font-size: clamp(18px, 3.6vw, 22px);
}

/* ===================== TOOLS + USE CASES (MEDIUM DARK) ===================== */
.sgp-suite {
    --suite-text: #e8eaf6;
    --suite-muted: #a7b0c8;
    --suite-a: #6a5cff;
    --suite-b: #c44bff;
    --suite-c: #ff6fb5;
    --suite-d: #12b4ff;
    --suite-shadow-sm: 0 1px 2px rgba(6, 10, 25, .24), 0 1px 1px rgba(6, 10, 25, .2);
    --suite-shadow-lg: 0 24px 60px rgba(7, 12, 28, .42), 0 8px 24px rgba(7, 12, 28, .32);

    padding: clamp(56px, 7vw, 100px) 0;
    background: linear-gradient(45deg, #b598ff, #771081);
    color: #242425;
}

.sgp-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(26px, 4vw, 44px);
}

.sgp-eyebrow {
    display: inline-block;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 12px;
    color: color-mix(in srgb, var(--suite-text) 65%, #a0a7c9);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 6px 10px;
    border-radius: 999px;
    margin: 0 0 12px 0;
}

.sgp-title--suite {
    margin: 0 0 8px 0;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.1;
    font-size: clamp(28px, 4.6vw, 44px);
    background: linear-gradient(90deg, #ffffff, #e1a4ff 45%, var(--suite-c) 70%, #b4e7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sgp-sub--suite {
    margin: 0;
    color: #fff;
    font-size: clamp(16px, 1.5vw, 18px);
}

.sgp-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 24px);
    margin-bottom: clamp(28px, 5vw, 48px);
}

@media (max-width:900px) {
    .sgp-panels {
        grid-template-columns: 1fr;
    }
}

.sgp-panel {
    background: linear-gradient(145deg, #fff3e6, #d2ecf8);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--suite-shadow-lg);
    padding: clamp(16px, 2.4vw, 22px);
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.sgp-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(from 220deg, var(--suite-a), var(--suite-b), var(--suite-c), var(--suite-d), var(--suite-a));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .25;
    transition: opacity .25s ease;
}

.sgp-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(7, 12, 28, .5);
    border-color: transparent;
}

.sgp-panel:hover::before {
    opacity: .6;
}

.sgp-panel h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: color-mix(in srgb, #000 80%, #fff);
}

.sgp-panel h3 i {
    color: color-mix(in srgb, #000 80%, #fff);
}

.sgp-tool-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.sgp-tool-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: color-mix(in srgb, #000 80%, #fff);
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    box-shadow: var(--suite-shadow-sm);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.sgp-tool-list li i {
    width: 20px;
    text-align: center;
    color: color-mix(in srgb, #000 80%, #fff);
}

.sgp-tool-list li:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .06));
    border-color: rgba(255, 255, 255, .18);
}

.sgp-usecases {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2.6vw, 24px);
}

@media (max-width:1100px) {
    .sgp-usecases {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width:780px) {
    .sgp-usecases {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:520px) {
    .sgp-usecases {
        grid-template-columns: 1fr;
    }
}

.sgp-case {
    position: relative;
    padding: 18px;
    border-radius: 18px;
    background: #fefae9;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--suite-shadow-lg);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    transform: translateY(0) translateZ(0);
    backface-visibility: hidden;
    will-change: transform, box-shadow, background, border-color, opacity;
    transition:
        transform 420ms cubic-bezier(.22, 1, .36, 1),
        box-shadow 420ms cubic-bezier(.22, 1, .36, 1),
        border-color 420ms cubic-bezier(.22, 1, .36, 1),
        background 420ms cubic-bezier(.22, 1, .36, 1);
}

.sgp-case::before {
    content: "";
    position: absolute;
    inset: -1px;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(from 180deg, var(--suite-a), var(--suite-b), var(--suite-c), var(--suite-d), var(--suite-a));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .2;
    z-index: 2;
    /* keep the rim above the overlay */
    transition: opacity 420ms cubic-bezier(.22, 1, .36, 1);
}

.sgp-case::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    /* sits below ::before glow, above base background */
    /* matches your hover look, but we fade it in/out instead of swapping instantly */
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, .14), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
    opacity: 0;
    transition: opacity 480ms cubic-bezier(.22, 1, .36, 1);
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {

    .sgp-case,
    .sgp-case::before {
        transition: none;
    }
}

@media (hover: hover) {
    .sgp-case:focus-within {
        transform: translateY(-6px) translateZ(0);
        box-shadow: 0 36px 80px rgba(7, 12, 28, .45);
    }
}

/* accessibility: no motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .sgp-case,
    .sgp-case::before,
    .sgp-case::after {
        transition: none !important;
    }
}

.sgp-case:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 36px 80px rgba(7, 12, 28, .45);
    border-color: transparent;
    background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
}

.sgp-case:hover::after {
    opacity: 1;
}

.sgp-case:hover::before {
    opacity: .55;
}

.sgp-case-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: radial-gradient(200% 160% at 0% 0%, color-mix(in srgb, var(--suite-a) 45%, #fff), color-mix(in srgb, var(--suite-d) 30%, #fff));
    color: #0f1021;
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: var(--suite-shadow-sm);
}

.sgp-case h4 {
    margin: 10px 0 6px 0;
    font-size: 16px;
    letter-spacing: -.01em;
}

.sgp-case p {
    margin: 0;
    color: #242425;
    font-size: 14px;
}

/* Reveal on scroll */
.sgp-reveal {
    opacity: 1;
    transform: none;
}

.sgp-reveal-hidden,
.sgp-reveal {
    transition: opacity .45s ease, transform .45s ease;
}

.sgp-reveal-hidden {
    opacity: 0;
    transform: translateY(14px);
}

/* Tilt base */
[data-sgp-tilt] {
    will-change: transform;
    transform-style: preserve-3d;
}








/* ============ SimplyGiv Plus (glassy) ============ */
.sgzip * {
    box-sizing: border-box;
}

/* (no-op guard if you merge) */

.sgplus {
    --a: #6a5cff;
    --b: #c44bff;
    --c: #ff6fb5;
    --d: #12b4ff;
    --ink: #0f1320;
    --text: #0d1320;
    --muted: #5f6682;
    --glass-bg: rgba(255, 255, 255, .12);
    --glass-stroke: rgba(255, 255, 255, .22);
    --glass-shadow: 0 24px 60px rgba(10, 20, 40, .18), 0 8px 24px rgba(10, 20, 40, .12);
    --radius: 20px;

    padding: clamp(56px, 7vw, 100px) 0;
    background:
        radial-gradient(900px 420px at 12% -10%, color-mix(in hsl, var(--a) 16%, #fff), transparent 65%),
        radial-gradient(900px 420px at 100% 0%, color-mix(in hsl, var(--c) 16%, #fff), transparent 65%),
        linear-gradient(45deg, #b598ff, #771081);
    color: var(--text);
}

.sgplus__container {
    margin-inline: auto;
    padding: clamp(20px, 3vw, 28px);
}

.sgplus__title {
    margin: 0;
    font: 900 clamp(32px, 6vw, 56px)/1.05 Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
    color: #fff;
    letter-spacing: -.02em;
}

.sgplus__title span:first-child {
    background: linear-gradient(90deg, #fff, #e8f0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sgplus__pill {
    display: inline-block;
    margin-left: .55rem;
    padding: .28rem .6rem;
    border-radius: 999px;
    font: 800 16px/1 Inter, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fff, #f6f6ff);
    border: 1px solid rgba(20, 30, 50, .12);
    box-shadow: 0 6px 14px rgba(10, 20, 40, .12);
}

.sgplus__sub {
    max-width: 70ch;
    margin: .6rem 0 1.4rem;
    color: #ffffff;
    font-size: clamp(15px, 1.6vw, 18px);
}

.sgplus__rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff66, transparent);
    margin: 18px 0;
}

.sgplus__eyebrow {
    margin: 0 0 14px;
    color: #fff;
    opacity: .9;
    font: 800 18px/1.2 Inter, sans-serif;
}

.sgplus__eyebrow em {
    font-style: normal;
    color: #ffd6ff;
}

/* Features */
.sgplus__features {
    display: grid;
    gap: clamp(14px, 2.2vw, 20px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.sgplus__feat {
    background: linear-gradient(145deg, #bed8ff, #f1cbcb);
    border: 1px solid var(--glass-stroke);
    border-radius: 16px;
    padding: 14px 16px;
    backdrop-filter: blur(6px);
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.sgplus__feat:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .10));
    border-color: rgba(255, 255, 255, .3);
    box-shadow: 0 28px 70px rgba(10, 20, 40, .22);
}

.sgplus__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: radial-gradient(200% 160% at 0% 0%, color-mix(in srgb, var(--a) 45%, #fff), color-mix(in srgb, var(--d) 30%, #fff));
    color: #0f1021;
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: 0 4px 10px rgba(10, 20, 40, .18);
}

.sgplus__feat h4 {
    margin: 0;
    font: 800 16px/1.25 Inter, sans-serif;
    color: #282828;
    letter-spacing: -.01em;
}

/* Pricing */
.sgplus__pricing-title {
    margin: 10px 0 4px;
    font: 900 22px/1.2 Inter, sans-serif;
    color: #fff;
}

.sgplus__pricing-sub {
    color: #dfe7ff;
    margin: 0 0 16px;
}

.sgplus__card {
    display: grid;
    gap: clamp(16px, 3vw, 28px);
    grid-template-columns: 1.4fr .9fr;
    padding: clamp(16px, 2.4vw, 22px);
    border-radius: var(--radius);
    border: 1px solid var(--glass-stroke);
    background: linear-gradient(145deg, #bed8ff, #f1cbcb);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(8px);
}

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

.sgplus__controls .sgplus__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 10px;
    color: #000;
    font-weight: 700;
}

.sgplus__link {
    color: #003a59;
    text-decoration: none;
    font-weight: 800;
    margin-left: 8px;
}

.sgplus__link:hover {
    text-decoration: underline;
}

.sgplus__billing {
    max-width: 450px;
    width: 100%;
    position: relative;
    display: inline-grid;
    grid-auto-flow: column;
    justify-content: space-between;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
}

.sgplus__toggle {
    position: relative;
    z-index: 1;
    padding: 8px 14px;
    border-radius: 999px;
    font: 800 14px/1 Inter, sans-serif;
    color: #000;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.sgplus__toggle.is-active {
    color: #161a2e;
}

.sgplus__badge {
    margin-left: .35rem;
    font-weight: 900;
    padding: .1rem .35rem;
    border-radius: .6rem;
    background: #fff;
    color: #0d1320;
}

.sgplus__thumb {
    position: absolute;
    inset: auto 0 auto 0;
    width: 50%;
    height: calc(100% - 6px);
    margin: 3px;
    background: linear-gradient(180deg, #fff, #eef2ff);
    border: 1px solid rgba(20, 30, 50, .12);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(100, 110, 255, .25);
    transform: translateX(0%);
    transition: transform .25s ease, width .25s ease;
}

.sgplus__range {
    width: 100%;
    accent-color: var(--a);
}

.sgplus__ticks {
    display: flex;
    justify-content: space-between;
    color: #000;
    opacity: .9;
    font: 700 12px/1 Inter, sans-serif;
    margin-top: 6px;
}

.sgplus__pricebox {
    align-self: stretch;
    display: grid;
    place-items: center;
    padding: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .10));
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.sgplus__price-wrap {
    text-align: center;
    color: #000000;
}

.sgplus__per {
    font-weight: 800;
    opacity: .8;
    margin-bottom: 4px;
}

.sgplus__price {
    font-weight: 900;
    font-size: clamp(28px, 5.6vw, 44px);
    letter-spacing: -.02em;
}

.sgplus__price small {
    font-weight: 800;
    font-size: .45em;
    opacity: .9;
}

.sgplus__bill {
    margin-top: 6px;
    color: #000000;
    opacity: .95;
    font-weight: 700;
}

.sgplus__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.sgplus__btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font: 800 14px/1 Inter, sans-serif;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
    box-shadow: var(--glass-shadow);
}

.sgplus__btn--primary {
    color: #0b1020;
    background: linear-gradient(180deg, #fff, #eaf0ff);
    border: 1px solid rgba(20, 30, 50, .12);
}

.sgplus__btn--primary:hover {
    transform: translateY(-1px);
}

.sgplus__btn--ghost {
    color: #0d1320;
    background: #fff;
    border: 1px solid rgba(20, 30, 50, .16);
}

.sgplus__btn--ghost:hover {
    background: #f7faff;
}



/* =================== SimplyGiv - Premium Pricing (sgprice-) =================== */
.sgprice {
    --bg1: #3a0f6b;
    /* deeper purple for page */
    --bg2: #7a1ea8;
    /* sweep */
    --glass: #ffffffE6;
    /* cards: light glass for contrast */
    --glass2: #ffffffCC;
    --ink: #0b1020;
    --muted: #5f6682;
    --stroke: rgba(11, 19, 40, .12);
    --green: #18a957;
    --red: #e05454;
    --radius: 18px;
    --shadow: 0 26px 60px rgba(13, 8, 40, .22), 0 10px 24px rgba(13, 8, 40, .18);

    padding: clamp(56px, 7vw, 96px) 0;
    background:
        radial-gradient(1200px 520px at -10% -20%, #9b60ff2a, transparent 60%),
        radial-gradient(1100px 520px at 110% -10%, #ff6fb52a, transparent 60%),
        linear-gradient(45deg, var(--bg1), var(--bg2));
    color: #10162b;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
}

.sgprice__container {
    margin-inline: auto;
    padding: clamp(18px, 3vw, 28px);
}

.sgprice__head {
    text-align: left;
    color: #fff;
    margin-bottom: 10px
}

.sgprice__eyebrow {
    display: inline-block;
    background: #ffffff20;
    border: 1px solid #ffffff33;
    color: #e8eaff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 12px;
}

.sgprice__title {
    margin: .25rem 0 .5rem;
    font-weight: 900;
    letter-spacing: -.02em;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.08;
    color: #fff
}

.sgprice__accent {
    background: linear-gradient(90deg, #8ffff4, #ccf9c7 40%, #ffa7d2 65%, #79eaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.sgprice__sub {
    color: #ffffff;
    max-width: 68ch;
    margin: 0
}

/* banner */
.sgprice__banner {
    margin: 14px 0 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #e9fff4, #d8fff0);
    border: 1px solid #a8ebc8;
    color: #0f5132;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .12)
}

.sgprice__banner i {
    color: #0f8e57
}

.sgprice__hint {
    margin-left: 4px;
    opacity: .9
}

/* grid */
.sgprice__grid {
    display: grid;
    gap: clamp(16px, 3vw, 24px);
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

@media (max-width:1024px) {
    .sgprice__grid {
        grid-template-columns: 1fr
    }
}

.sgprice__card,
.sgprice__fees {
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, var(--glass), var(--glass2));
    backdrop-filter: saturate(120%) blur(8px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(16px, 2.4vw, 22px)
}

/* distinct tint for Pro to stand out over purple bg */
.sgprice__card--pro {
    background: linear-gradient(180deg, #fff, #f2eaff)
}

.sgprice__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .18)
}

.sgprice__card-head {
    position: relative;
    margin-bottom: 10px
}

.sgprice__plan {
    margin: 0 0 6px;
    font-weight: 900;
    font-size: 18px;
    color: #111
}

.sgprice__price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin: 4px 0
}

.sgprice__amount {
    font-weight: 900;
    font-size: clamp(28px, 4.6vw, 40px);
    letter-spacing: -.02em;
    color: #111
}

.sgprice__per {
    font-weight: 800;
    color: #334
}

.sgprice__blurb {
    margin: 4px 0 0;
    color: #425
}

.sgprice__checklist {
    list-style: none;
    margin: 12px 0 16px;
    padding: 0;
    display: grid;
    gap: 8px
}

.sgprice__checklist li {
    display: grid;
    grid-template-columns: auto 1.2rem 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e7e9f2;
    background: #fff;
    box-shadow: 0 1px 2px rgba(10, 22, 50, .05)
}

.sgprice__checklist .mark {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900
}

.sgprice__checklist .ok {
    background: #eaf8ef;
    color: var(--green);
    border: 1px solid #bce8cb
}

.sgprice__checklist .no {
    background: #fdeeee;
    color: var(--red);
    border: 1px solid #f3c7c7
}

.sgprice__checklist i.fa-bullhorn,
.sgprice__checklist i.fa-hand-holding-dollar,
.sgprice__checklist i.fa-users,
.sgprice__checklist i.fa-chart-line,
.sgprice__checklist i.fa-globe,
.sgprice__checklist i.fa-calendar-check,
.sgprice__checklist i.fa-photo-film,
.sgprice__checklist i.fa-id-card-clip {
    color: #5a5fb2
}

/* buttons */
.sgprice__btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font: 800 14px/1 Inter, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fff, #eaf0ff);
    border: 1px solid #cfd5ee;
    box-shadow: 0 12px 22px rgba(15, 20, 60, .12);
    transition: transform .15s ease
}

.sgprice__btn:hover {
    transform: translateY(-1px)
}

/* fees callout */
.sgprice__fees-title {
    margin: 0 0 8px;
    font: 900 16px/1.2 Inter, sans-serif;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px
}

.sgprice__fees-rate {
    margin: 0 0 10px;
    color: #273;
    font-weight: 900
}

.sgprice__fees-rate strong {
    font-size: clamp(22px, 4vw, 28px);
    color: #111
}

.sgprice__fees-rate span {
    font-weight: 800;
    color: #3a4
}

.sgprice__mini {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    gap: 6px;
    color: #2b2f49;
    font-weight: 800
}

.sgprice__mini i {
    color: #5a5fb2
}

.sgprice__fees-note {
    padding: 9px 12px;
    border-radius: 10px;
    background: #eafff3;
    color: #0f5132;
    border: 1px solid #a6f0c9;
    font-weight: 900
}

/* value-added services */
.sgprice__vas {
    margin-top: clamp(22px, 4.4vw, 36px)
}

.sgprice__vas-title {
    margin: 0 0 10px;
    font: 900 18px/1.2 Inter, sans-serif;
    color: #fff
}

.sgprice__vas-grid {
    display: grid;
    gap: clamp(12px, 2vw, 16px);
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

@media (max-width:820px) {
    .sgprice__vas-grid {
        grid-template-columns: 1fr
    }
}

.sgprice__vas-card {
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, #ffffff, #f4f7ff);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow)
}

.sgprice__vas-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
    background: radial-gradient(200% 160% at 0% 0%, #cbd2ff, #e8f3ff);
    color: #0f1021;
    border: 1px solid #dfe6ff
}

.sgprice__vas-card h4 {
    margin: 0 0 4px;
    color: #111;
    font-weight: 900
}

.sgprice__vas-price {
    margin: 0;
    color: #273;
    font-weight: 800
}

.sgprice__vas-price span {
    color: #54618f;
    font-weight: 900
}




/* ============== s g f a q (namespaced, glassy, smooth) ============== */
/* ============== s g f a q (namespaced, glassy, smooth) ============== */
.sgfaq {
    --a: #6a5cff;
    --b: #c44bff;
    --c: #ff6fb5;
    --d: #12b4ff;
    --ink: #0d1320;
    --muted: #5f6682;
    --glass: rgba(255, 255, 255, .16);
    --stroke: rgba(255, 255, 255, .28);
    --radius: 16px;

    padding: clamp(56px, 7vw, 96px) 0;
    background:
        radial-gradient(900px 420px at 10% -10%, color-mix(in hsl, var(--a) 14%, #fff), transparent 65%),
        radial-gradient(900px 420px at 100% 0%, color-mix(in hsl, var(--c) 14%, #fff), transparent 65%),
        linear-gradient(45deg, #b598ff, #771081);
    color: #fff;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
}

.sgfaq__container {
    margin-inline: auto;
    padding: clamp(18px, 3vw, 28px);
}

.sgfaq__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(20px, 3.5vw, 28px);
}

.sgfaq__head h2 {
    margin: 0 0 8px;
    font-weight: 900;
    letter-spacing: -.01em;
    font-size: clamp(26px, 4.8vw, 38px);
}

.sgfaq__head p {
    margin: 0;
    color: #ffffff;
}

.sgfaq__list {
    display: grid;
    gap: 12px;
}

.sgfaq__item {
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .12));
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(10, 20, 40, .18), 0 6px 18px rgba(10, 20, 40, .12);
    overflow: hidden;
}

.sgfaq__q {
    margin: 0;
}

.sgfaq__btn {
    width: 100%;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(145deg, #bed8ff, #a6fffd8f);
    border: 0;
    color: #000;
    font-weight: 900;
    letter-spacing: -.005em;
    text-align: left;
    padding: 16px 18px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.sgfaq__btn:hover {
    background: rgba(255, 255, 255, .38);
}

.sgfaq__btn:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--a) 50%, #fff);
    outline-offset: 2px;
}

.sgfaq__chev {
    width: 22px;
    height: 22px;
    flex: none;
    stroke: #3b3f6b;
    fill: none;
    stroke-width: 2.5;
    transition: transform .25s ease, stroke .25s ease;
}

.sgfaq__btn[aria-expanded="true"] .sgfaq__chev {
    transform: rotate(180deg);
    stroke: #6a5cff;
}

.sgfaq__a {
    height: auto;
    overflow: hidden;
}

.sgfaq__a-inner {
    padding: 14px 18px 18px;
    color: #1d2246;
    background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .65));
}

.sgfaq__btn[aria-expanded="false"]+.sgfaq__a {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .02));
}

@media (max-width:560px) {
    .sgfaq__btn {
        padding: 14px 14px;
    }

    .sgfaq__a-inner {
        padding: 12px 14px 16px;
    }
}

/* Close panels only until JS marks the section ready (prevents FOUC) */
.sgfaq:not(.is-ready) .sgfaq__a {
    height: 0;
    overflow: hidden;
}

/* Fallback transition if WAAPI isn’t available */
.sgfaq .sgfaq__a {
    transition: height .26s cubic-bezier(.22, 1, .36, 1);
}




/* ============================================================================================== */
/* Compare Page */
/* ============================================================================================== */


/* ===== Light Purple Gradient Hero (renamed classes; only .container is preserved) ===== */
:root {
    --sgp-grad-1: #f3e9ff;
    /* very light lavender */
    --sgp-grad-2: #e7d9ff;
    /* light purple */
    --sgp-grad-3: #d8c4ff;
    /* soft violet */
    --sgp-text: #1a1033;
    --sgp-muted: #4b3b77;
    --sgp-accent: #7c3aed;
    /* primary purple */
    --sgp-accent-2: #ffb86b;
    /* warm accent */
    --sgp-ring: rgba(124, 58, 237, .25);
    --sgp-max: 1200px;
    --container: 1340px;
}


/* ===== RENAMED CLASSES (prefix: scmpr-) ===== */
.scmpr-hero {
    padding: clamp(36px, 6vw, 80px) 0;
    background: linear-gradient(45deg, #2b1a63, #771081);
}

.scmpr-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
}

.scmpr-left {
    min-width: 0;
}

.scmpr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
    color: #3bfff8;
    margin-bottom: 8px;
}

.scmpr-title {
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.05;
    margin: 0px 0 15px 0;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #ffffff;
}

.scmpr-chip {
    font-size: .8em;
    font-weight: 800;
    padding: .18em .5em;
    border-radius: .6em;
    background: #f5f0ff;
    border: 1px solid var(--sgp-ring);
    color: #3a2a71;
}

.scmpr-kicker {
    font-weight: 700;
    color: #3bfff8;
    padding-top: 10px;
    margin: 0 0 10px 0;
}

.scmpr-sub {
    color: #fff;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.65;
    max-width: 65ch;
    padding-top: 5px;
    margin: 0 0 18px 0;
}

.scmpr-bullets {
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.scmpr-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffffcc;
    border: 1px solid #efe7ff;
    border-radius: 12px;
    padding: 10px 12px;
    backdrop-filter: saturate(120%) blur(2px);
}

.scmpr-bullets i {
    width: 18px;
    text-align: center;
    color: #6b3aed;
}

.scmpr-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 8px;
}

.scmpr-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease;
}

.scmpr-btn--primary {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    color: #fff;
}

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

.scmpr-btn--ghost {
    background: #ffffffb3;
    border-color: #e8defc;
    color: #3a2a71;
}

.scmpr-btn--ghost:hover {
    background: #fff;
}

.scmpr-price {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e8defc;
    border-radius: 999px;
    padding: 8px 12px;
    margin-left: auto;
    white-space: nowrap;
    color: #3a2a71;
}

.scmpr-price img {
    width: 18px;
    height: 18px;
}

.scmpr-right {
    text-align: center;
}

.scmpr-illus {
    width: 100%;
    height: auto;
    max-width: 520px;
}

/* Responsive */
@media (max-width:1024px) {
    .scmpr-grid {
        grid-template-columns: 1fr;
    }

    .scmpr-price {
        margin-left: 0;
    }
}




/* ====================================================================
                            Why Choose Tabs
=====================================================================*/
/* =========================================
   Why Choose SimplyGiv (simple cards)
   All classes scoped with wcx-
   ========================================= */

:root {
    --wcx-band-1: #efe7ff;
    --wcx-band-2: #e5dcff;
    --wcx-band-3: #dccfff;

    --wcx-surface: #fff;
    --wcx-border: #e8e3f4;
    --wcx-text: #111224;
    --wcx-muted: #5b5a6f;
    --wcx-brand: #6b5aed;
    /* accent */
    --wcx-brand-ink: #3b2dd1;

    --wcx-shadow: 0 6px 20px rgba(43, 22, 94, .08);
    --wcx-shadow-hover: 0 12px 30px rgba(43, 22, 94, .14);

    --wcx-radius: 18px;
    --wcx-focus: 2px solid var(--wcx-brand);
}

.wcx-wrap {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
    padding: 72px 0;
    color: var(--wcx-text);
}

/* Header */
.wcx-header {
    max-width: 820px;
    margin: 0 auto 28px;
    text-align: center;
}

.wcx-title {
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: -.02em;
    font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.25rem);
}

.wcx-title span {
    color: #001bff;
}

.wcx-subtitle {
    margin: 0;
    color: #000;
    line-height: 1.6;
}

/* Grid */
.wcx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}

/* Card base */
.wcx-card {
    background: #f7d5d2;
    border: 1px solid var(--wcx-border);
    border-radius: var(--wcx-radius);
    box-shadow: var(--wcx-shadow);
    padding: 18px 18px 20px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    transform: translateY(0);
    outline: none;
}

.wcx-card:hover,
.wcx-card:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--wcx-shadow-hover);
    border-color: #ddd6f6;
}

.wcx-card:focus-visible {
    outline: var(--wcx-focus);
    outline-offset: 2px;
}

.wcx-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.wcx-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #efeaff;
    color: var(--wcx-brand-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.wcx-card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -.01em;
}

.wcx-card-text {
    margin: 6px 0 14px;
    color: #000;
    line-height: 1.6;
    font-size: .98rem;
}

/* Inline accessories kept simple */
.wcx-inline-actions {
    margin-top: 6px;
}

.wcx-inline-avatars {
    margin-top: 6px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.wcx-inline-tag {
    margin-top: 6px;
}

.wcx-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: .9rem;
    border: 1px solid #e5e1fb;
    background: #fff;
    color: var(--wcx-brand-ink);
}

.wcx-chip--pill {
    cursor: pointer;
}

.wcx-chip--tag {
    background: #f3f0ff;
    color: var(--wcx-brand-ink);
}

/* Avatars */
.wcx-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e5e1fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--wcx-brand-ink);
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 2px 6px rgba(27, 16, 56, .08);
}

.wcx-avatar--more {
    background: #1f1a57;
    color: #fff;
    border-color: #2b2379;
}

/* Compare (Card 1) */
.wcx-compare {
    background: #faf9ff;
    border: 1px dashed #e3defa;
    border-radius: 12px;
    padding: 12px;
}

.wcx-compare-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 12px;
}

.wcx-compare-row+.wcx-compare-row {
    margin-top: 10px;
}

.wcx-compare-label {
    color: #463d92;
    font-weight: 700;
    font-size: .92rem;
}

.wcx-compare-bars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wcx-bar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    min-width: 64px;
    border-radius: 999px;
    padding: 0 10px;
    font-weight: 800;
    font-size: .84rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    /* animate to data-width% */
    transition: width 900ms cubic-bezier(.2, .8, .2, 1);
}

.wcx-bar--other {
    background: linear-gradient(90deg, #ff7272, #ff3b3b);
}

.wcx-bar--sg {
    background: linear-gradient(90deg, #6b5aed, #3b2dd1);
}

.wcx-compare-note {
    color: #2a2751;
    font-size: .95rem;
}

/* Reveal */
.wcx-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .52s ease, transform .52s ease;
}

.wcx-reveal.wcx-in {
    opacity: 1;
    transform: translateY(0);
}

/* Focus */
.wcx-chip:focus-visible {
    outline: var(--wcx-focus);
    outline-offset: 2px;
}

/* Responsive */
@media (max-width:900px) {
    .wcx-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wcx-compare-row {
        grid-template-columns: 1fr;
    }

    .wcx-compare-label {
        margin-bottom: 6px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {

    .wcx-card,
    .wcx-reveal,
    .wcx-bar {
        transition: none !important;
    }

    .wcx-card:hover,
    .wcx-card:focus-within {
        transform: none !important;
    }
}

/* ===== Switchable Comparison (cvtX-*) ===== */
.cvtX-wrap {
    padding: clamp(34px, 6vw, 86px) 0;
    background: linear-gradient(to right, #7f7fd5, #86a8e7, #af91ffb3);
}

.cvtX-head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto clamp(16px, 3vw, 28px);
}

.cvtX-eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: .38em .7em;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #eadfff;
    color: #6b3aed;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.cvtX-title {
    margin: .45rem 0 .2rem;
    font-size: clamp(26px, 4.4vw, 40px);
    font-weight: 800;
    color: #20123e
}

.cvtX-title span {
    color: #6b3aed
}

.cvtX-sub {
    color: #000000;
    margin: 0
}

/* switcher */
.cvtX-switch {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
    flex-wrap: wrap
}

.cvtX-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .5em .8em;
    border-radius: 999px;
    border: 1px solid #e1d9ff;
    background: #fff;
    color: #2a1f53;
    font-weight: 800;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease
}

.cvtX-switch-btn img {
    width: 16px;
    height: 16px;
    opacity: .85
}

.cvtX-switch-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(124, 58, 237, .15)
}

.cvtX-switch-btn.is-active {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    color: #fff;
    border-color: transparent
}

/* table card */
.cvtX-tablecard {
    max-width: 1080px;
    margin: clamp(14px, 2.6vw, 22px) auto 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ece6ff;
    box-shadow: 0 14px 46px rgba(48, 21, 105, .12)
}

.cvtX-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    color: #2b1d56
}

.cvtX-table thead th {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #efe9ff;
    font-size: 18px
}

.cvtX-col-feature {
    width: 40%;
    text-align: left;
    background: linear-gradient(90deg, #faf7ff, #f5f0ff);
    font-weight: 800;
    color: #1e143d
}

.cvtX-col-brand {
    width: 30%
}

.cvtX-col-sg {
    background: linear-gradient(180deg, #efe7ff, #e6dbff);
    box-shadow: inset 0 -2px 0 #d9cbff
}

.cvtX-col-comp {
    background: linear-gradient(180deg, #fff6dc, #ffecc4);
    box-shadow: inset 0 -2px 0 #fde68a
}

.cvtX-colhead {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.cvtX-colhead small {
    font-size: 12px;
    color: #4b3b77
}

.cvtX-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .38em .7em;
    border-radius: 999px;
    font-weight: 800;
    background: #fff;
    border: 1px solid #eadfff;
    color: #2e1f63
}

.cvtX-chip-best {
    background: #2e1f63;
    color: #fff;
    border-color: #2e1f63
}

.cvtX-table tbody th,
.cvtX-table tbody td {
    padding: 14px 16px;
    border-top: 1px solid #f1ecff;
    background: #fff
}

.cvtX-feature {
    font-weight: 800;
    color: #1e1738
}

.cvtX-cell {
    text-align: center
}

/* status styles */
.cvtX-yes {
    color: #22c55e
}

.cvtX-no {
    color: #ef4444
}

.cvtX-addon {
    color: #f59e0b
}

.cvtX-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .3em .6em;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent
}

.cvtX-pill-good {
    background: #efe7ff;
    border-color: #e0d6ff;
    color: #23164a
}

.cvtX-pill-warn {
    background: #fff1c9;
    border-color: #fde68a;
    color: #23164a
}

/* hover + reveal */
.cvtX-table tbody tr:hover th,
.cvtX-table tbody tr:hover td {
    background: #fbfaff
}

.cvtX-reveal {
    opacity: 0;
    transform: translateY(14px)
}

.cvtX-reveal.cvtX-in {
    opacity: 1;
    transform: none;
    transition: opacity .5s ease, transform .5s ease;
    transition-delay: var(--cvtX-delay, 0s)
}

/* mobile */
@media (max-width:760px) {
    .cvtX-table thead {
        display: none
    }

    .cvtX-table tbody tr {
        display: grid;
        grid-template-columns: 1fr;
        border-top: 1px solid #efe9ff
    }

    .cvtX-table tbody th {
        background: #faf7ff
    }

    .cvtX-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .cvtX-table tbody td:nth-child(2)::before {
        content: "SimplyGiv";
        font-weight: 800;
        color: #5a4b7c;
        margin-right: 10px
    }

    .cvtX-table tbody td:nth-child(3)::before {
        content: attr(data-label);
        font-weight: 800;
        color: #5a4b7c;
        margin-right: 10px
    }
}


/* ===== PAY LESS (plx-*) ===== */
.plx-wrap {
    padding: clamp(36px, 6vw, 92px) 0;
    background:
        radial-gradient(1100px 520px at 60% -10%, rgb(124 58 237 / 59%), #00000026 60%),
        linear-gradient(180deg, #dccbff 0%, #cdb6ff 45%, #d8adfe 100%);
}

.plx-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(16px, 3vw, 28px);
}

.plx-title {
    font-size: clamp(28px, 4.6vw, 44px);
    font-weight: 800;
    color: #22164a;
    letter-spacing: -.01em;
    margin: 0 0 .2rem;
}

.plx-title span {
    color: #6b3aed;
}

.plx-sub {
    color: #000000;
    margin: 0;
}

.plx-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(16px, 3vw, 28px);
    align-items: stretch;
}

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

.plx-slab {
    background: linear-gradient(135deg,
            #fff5ec,
            #ffe6d9);
    border: 1px solid #ece6ff;
    border-radius: 18px;
    padding: 16px;
    overflow: hidden;
    box-shadow: 0 14px 46px rgba(50, 24, 110, .12);
}

.plx-slab-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.plx-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .4em .7em;
    border-radius: 999px;
    font-weight: 800;
    background: #efe7ff;
    border: 1px solid #e0d6ff;
    color: #2a1e58;
}

.plx-bars {
    display: grid;
    gap: 12px;
    margin: 8px 0 12px;
}

.plx-bar label {
    display: block;
    font-weight: 800;
    font-size: 13px;
    color: #271b50;
    margin-bottom: 6px;
}

.plx-track {
    height: 18px;
    border-radius: 999px;
    background: #f3efff;
    border: 1px solid #e7ddff;
    overflow: hidden;
    position: relative;
}

.plx-fill {
    display: inline-block;
    height: 100%;
    min-width: 34px;
    padding: 0 8px;
    line-height: 18px;
    font-size: 11px;
    font-weight: 800;
    color: #23164a;
    border-radius: 999px;
    width: 0%;
}

.plx-fill--other {
    background: #ffe7c3;
    border-right: 1px solid #f4c987;
}

.plx-fill--sg {
    background: #e5dbff;
    border-right: 1px solid #cdbfff;
}

.plx-savings {
    background: #fbfaff;
    border: 1px dashed #e7ddff;
    border-radius: 12px;
    padding: 10px;
}

.plx-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #eadfff;
    border-radius: 999px;
    padding: .25em .55em;
    font-size: 12px;
    color: #3a2a71;
}

.plx-number {
    margin-top: 8px;
    font-weight: 800;
    color: #1a4b2b;
}

.plx-money {
    font-size: clamp(22px, 3.6vw, 28px);
    margin-left: 6px;
}

.plx-suffix {
    color: #1a4b2b;
    font-weight: 800;
}

.plx-note {
    margin: .3rem 0 0;
    color: #6a5d8e;
    font-size: 12px;
}

.plx-ctas {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.plx-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease;
}

.plx-btn--primary {
    color: #fff;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.plx-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(124, 58, 237, .25);
}

.plx-btn--ghost {
    background: #fff;
    color: #2b1b5b;
    border-color: #eadfff;
}

.plx-btn--ghost:hover {
    transform: translateY(-2px);
}

.plx-right .plx-table-card {
    background: linear-gradient(135deg, #ffecec, #ffe1e1);
    border: 1px solid #ece6ff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 14px 46px rgba(50, 24, 110, .12);
}

.plx-mini-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 16px;
    color: #22164a;
    font-weight: 800;
}

.plx-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    color: #291c4e;
}

.plx-table thead th {
    text-align: left;
    padding: 10px 12px;
    background: linear-gradient(90deg, #faf7ff, #f4f0ff);
    border-bottom: 1px solid #efe9ff;
    border-top-left-radius: 10px;
}

.plx-table thead th:nth-child(2) {
    background: linear-gradient(90deg, #efe7ff, #e6dbff);
}

.plx-table thead th:nth-child(3) {
    background: linear-gradient(90deg, #fff3ce, #ffe9b1);
}

.plx-table tbody td,
.plx-table tbody th {
    padding: 10px 12px;
    border-top: 1px solid #f1ecff;
    background: #fff;
}

.plx-col-sg {
    text-align: center;
}

.plx-col-ot {
    text-align: center;
}

.plx-good {
    color: #1f6f3a;
    font-weight: 800;
}

.plx-warn {
    color: #b45309;
    font-weight: 800;
}

.plx-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .28em .6em;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
}

.plx-pill--good {
    background: #efe7ff;
    border-color: #e0d6ff;
    color: #22164a;
}

.plx-pill--warn {
    background: #fff1c9;
    border-color: #fde68a;
    color: #22164a;
}

.plx-table tbody tr:hover td,
.plx-table tbody tr:hover th {
    background: #fbfaff;
}

/* Reveal */
.plx-reveal {
    opacity: 0;
    transform: translateY(14px);
}

.plx-reveal.plx-in {
    opacity: 1;
    transform: none;
    transition: opacity .5s ease, transform .5s ease;
    transition-delay: var(--plx-delay, 0s);
}

/* Mobile */
@media (max-width:720px) {
    .plx-table thead {
        display: none;
    }

    .plx-table tbody tr {
        display: grid;
        grid-template-columns: 1fr;
    }

    .plx-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .plx-table tbody td:nth-child(2)::before {
        content: "SimplyGiv";
        font-weight: 800;
        color: #5a4b7c;
        margin-right: 10px;
    }

    .plx-table tbody td:nth-child(3)::before {
        content: "Others";
        font-weight: 800;
        color: #5a4b7c;
        margin-right: 10px;
    }
}

.cvtX-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease;
}

.cvtX-btn--primary {
    color: #fff;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.cvtX-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(124, 58, 237, .25);
}

.cvtX-btn--ghost {
    background: #fff;
    color: #2b1b5b;
    border-color: #eadfff;
}

.cvtX-btn--ghost:hover {
    transform: translateY(-2px);
}

.cvtX-cta {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    gap: 20px;
}

/* ===== Give Better (gvb-*) ===== */
.gvb-wrap {
    padding: clamp(36px, 6vw, 88px) 0;
    background:
        linear-gradient(45deg, #2b1a63, #771081);
}

/* Head */
.gvb-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(14px, 3vw, 26px);
}

.gvb-title {
    margin: .2rem 0 .25rem;
    font-size: clamp(26px, 4.6vw, 42px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
}

.gvb-title span {
    color: #3ae5ed;
    ;
}

.gvb-sub {
    margin: 0;
    color: #fff;
}

/* Grid */
.gvb-grid {
    display: grid;
    gap: clamp(12px, 2.4vw, 20px);
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

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

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

/* Card */
.gvb-card {
    background: #ffe3e3;
    border: 1px solid #ece6ff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 12px 36px rgba(48, 21, 105, .10);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.gvb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(48, 21, 105, .14);
    border-color: #e0d6ff;
}

.gvb-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    margin-bottom: 10px;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.gvb-card-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: #1f1540;
}

.gvb-card-text {
    margin: 0;
    color: #5b4f7a;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA */
.gvb-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: clamp(16px, 3vw, 26px);
}

.gvb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease;
}

.gvb-btn--primary {
    color: #fff;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.gvb-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(124, 58, 237, .25);
}

.gvb-btn--ghost {
    background: #fff;
    color: #2b1b5b;
    border-color: #eadfff;
}

.gvb-btn--ghost:hover {
    transform: translateY(-2px);
}

/* Reveal */
.gvb-reveal {
    opacity: 0;
    transform: translateY(14px);
}

.gvb-reveal.gvb-in {
    opacity: 1;
    transform: none;
    transition: opacity .5s ease, transform .5s ease;
}


/* ===== Switch Clean (swc-*) ===== */
.swc-wrap {
    padding: clamp(40px, 7vw, 110px) 0;
    background:
        linear-gradient(to right, #7f7fd5, #86a8e7, #af91ffb3);
}

/* Card */
.swc-card {
    margin: 0 auto;
    padding: clamp(18px, 3.6vw, 32px);
    background: linear-gradient(145deg, #bed8ff, #f1cbcb);
    border: 1px solid #ece6ff;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(48, 21, 105, .14);
}

/* Header */
.swc-head {
    text-align: center;
}

.swc-eyebrow {
    display: inline-block;
    font-weight: 900;
    color: #5b3ad6;
    margin-bottom: 6px;
}

.swc-title {
    margin: 0 0 6px;
    font-size: clamp(28px, 4.8vw, 44px);
    font-weight: 900;
    letter-spacing: -.01em;
    color: #0f172a;
}

.swc-title span {
    color: #6b3aed;
}

.swc-sub {
    margin: 0;
    color: #000;
}

/* Step rail */
.swc-rail {
    margin: clamp(16px, 3.4vw, 26px) auto 10px;
    padding: 0;
    list-style: none;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
    gap: 0;
}

@media (max-width: 820px) {
    .swc-rail {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .swc-rail-sep {
        display: none;
    }
}

.swc-rail-item {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 10px 12px;
    border-radius: 14px;
    background: #ffefef;
    border: 1px solid #efe9ff;
}

@media (max-width: 820px) {
    .swc-rail-item {
        justify-content: flex-start;
    }
}

.swc-dot {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    flex: 0 0 40px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    box-shadow: 0 8px 18px rgba(124, 58, 237, .25);
}

.swc-rail-copy strong {
    display: block;
    color: #20123e;
}

.swc-rail-copy small {
    display: block;
    color: #6a5e8f;
}

/* separators between steps */
.swc-rail-sep {
    height: 2px;
    background: linear-gradient(90deg, #6e25ff, #ac8cff);
    border-radius: 999px;
    margin: 0 10px;
}

/* Perks strip */
.swc-perks {
    list-style: none;
    padding: 0;
    margin: 8px 0 14px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    color: #1f2a44;
    font-weight: 800;
}

.swc-perks li {
    display: flex;
    gap: 8px;
    align-items: center;
    background: #ffefef;
    border: 1px solid #ece6ff;
    border-radius: 999px;
    padding: 8px 12px;
}

.swc-perks i {
    color: #6b3aed;
}

/* CTA */
.swc-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.swc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    color: #fff;
    border: 1px solid transparent;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    box-shadow: 0 14px 28px rgba(124, 58, 237, .22);
    transition: transform .18s ease, box-shadow .18s ease;
}

.swc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(124, 58, 237, .28);
}

.swc-note {
    color: #1b2e2b;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.swc-note i {
    color: #16a34a;
}

/* ===== CTA (ctg-*) ===== */
.ctg-wrap {
    padding: clamp(40px, 7vw, 110px) 0;
    background:
        linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3);
}

.ctg-card {
    position: relative;
    margin: 0 auto;
    max-width: 980px;
    border-radius: 22px;
    padding: clamp(18px, 3.6vw, 32px);
    background: rgba(255, 255, 255, .85);
    border: 1px solid #ece6ff;
    box-shadow: 0 24px 60px rgba(48, 21, 105, .16);
    backdrop-filter: blur(6px) saturate(110%);
}

.ctg-head {
    text-align: center;
}

.ctg-title {
    margin: 0 0 6px;
    font-size: clamp(28px, 4.8vw, 44px);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #111827;
}

.ctg-title span {
    color: #6b3aed;
}

.ctg-sub {
    margin: 0;
    color: #514a6f;
}

.ctg-actions {
    margin-top: clamp(14px, 3vw, 22px);
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.ctg-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease;
}

.ctg-btn--primary {
    color: #fff;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    box-shadow: 0 14px 28px rgba(124, 58, 237, .22);
}

.ctg-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(124, 58, 237, .28);
}

.ctg-btn--ghost {
    background: #fff;
    color: #2b1b5b;
    border-color: #eadfff;
}

.ctg-btn--ghost:hover {
    transform: translateY(-2px);
}

.ctg-trust {
    margin: clamp(12px, 2.4vw, 18px) auto 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    color: #1f2a44;
    font-weight: 800;
}

.ctg-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ctg-trust i {
    color: #16a34a;
}

/* optional subtle glow behind the card */
.ctg-card::after {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: -1;
    border-radius: 28px;
    background: radial-gradient(500px 120px at 50% 100%, rgba(124, 58, 237, .18), transparent 70%);
}


/* ==== Blog page HTML ==== */ /* ===== Blog Top Section ===== */
.blog-top-section {
  height: 600px;
}
.blog-top-container {
  margin: auto;
  padding: 200px 0 0 0;
  margin-bottom: 0;
}
.blog-top-content {
  text-align: center;
}
.blog-top-content h1 {
  color: #ae67fa;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
}
.blog-top-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
} /* ===== Blog Filter & Grid ===== */
.blog-section {
  background: #f5f6fa;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}
.blog-container {
  max-width: 1200px;
  margin: auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease;
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.blog-card .blog-category {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
  margin-bottom: 5px;
}
.blog-card h3 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}
.blog-card a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-pagination {
  margin-top: 40px;
  text-align: center;
}
.blog-pagination ul {
  padding: 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.blog-pagination ul li {
  list-style: none;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-pagination ul li.active,
.blog-pagination ul li:hover {
  background: #1e90ff;
  color: #fff;
  border-color: #1e90ff;
}
.blog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 160px 60px;
  gap: 30px;
  background-size: cover;
}
.blog-header-left {
  padding: 20px;
  flex: 1;
  min-width: 300px;
}
.blog-header-left h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-header-left .meta {
  font-size: 14px;
  color: #fff;
}
.blog-header-right {
  flex: 1;
  text-align: center;
}
.blog-header-right img {
  width: 750px; /*  height: 420px;*/
  border-radius: 10px;
}
.blog-detail-container {
  background: #f5f6fa;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px 60px;
  gap: 40px;
}
.blog-content {
  line-height: 36px;
  color: #000;
  flex: 2;
}
.blog-content h3 {
  font-weight: 700;
  font-size: 38px;
}
.blog-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}
.sidebar-box {
  background: #e6e6fa;
  padding: 20px;
  border-radius: 10px;
}
.sidebar-box.blue {
  background-color: #8e87f7;
  color: #fff;
}
.sidebar-box h4 {
  text-align: center;
  color: #000;
  margin-bottom: 15px;
}
.sidebar-box ul {
  padding-left: 0;
}
.sidebar-box ul li {
  margin-bottom: 10px;
}
.blog-social-icons {
  color: #670580;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 22px;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.topic-button {
  height: 100px;
  color: #000;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.topic-button:hover {
  background: #edf2f7;
}
@media (max-width: 992px) {
  .container,
  .blog-top {
    flex-direction: column;
    padding: 20px;
  }
  .blog-header-right {
    text-align: left;
  }
}
.wpj-jtoc--item .wpj-jtoc--item-content > a {
  color: #000 !important;
}
.wpj-jtoc--item .wpj-jtoc--item-content > a:before {
  color: #000 !important;
}
div:not(.wpj-jtoc--widget-floating) > .wpj-jtoc--toc {
  width: 100%;
}
.d-none {
  display: none;
}
.simply-contact,
.simply-contact-phone {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #74b0ff78;
    padding: 22px 26px;
    border-radius: 22px;
    font-family: Inter, sans-serif;
    font-size: 22px;
    margin: 10px;
    font-weight: 500;
    color: white;
    width: fit-content;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.simply-contact a,
.simply-contact-phone a {
    text-decoration: none;
}

.simply-contact i,
.simply-contact-phone i {
    background: #f2eaff;
    color: #000;
    padding: 14px;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
