/* Reset & base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #140d32;
  color: #eee;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* Container max-width */
.container {
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
}

/* Fixed Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* Important: full width */
  background: #2B1A63;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Keep your existing container class as-is */
.head-container {
  max-width: 85%;
  /* or your preferred width */
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Push down page content to avoid overlap */
body {
  margin: 0;
  padding: 0;
}

main,
.hero,
.page-content {
  padding-top: 100px;
  /* adjust to match actual header height */
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  height: 100px;
  font-weight: 600;
  font-size: 14px;
  color: #ccc;
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: #4ef47e;
}

.logo img {
  width: 200px;
  height: auto;
  fill: #4ef47e;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: 14px;
}

nav a,
nav .dropdown-toggle {
  position: relative;
  color: #ccc;
  transition: color 0.3s ease;
}

nav a:hover,
nav .dropdown-toggle:hover {
  color: #4ef47e;
}

nav .dropdown-toggle {
  cursor: pointer;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 15px;
  background: #fff;
  color: #2f2155;
  min-width: 220px;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  padding: 20px 18px;
  font-size: 13px;
  display: none;
  z-index: 99;
  user-select: none;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
}

.dropdown-menu strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #3a2373;
}

.dropdown-menu a {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: #5a4d7d;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.dropdown-menu a:last-child {
  margin-bottom: 0;
}

.dropdown-menu a:hover {
  color: #4ef47e;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Right nav controls */
.right-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #ccc;
}

.btn-talk {
  border: 1.5px solid #4ef47e;
  padding: 8px 34px;
  font-size: 18px;
  border-radius: 20px;
  color: #4ef47e;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-talk:hover {
  background: #4ef47e;
  color: #140d32;
}

.sign-in {
  color: #eee;
  cursor: pointer;
  transition: color 0.3s ease;
}

.sign-in:hover {
  color: #4ef47e;
}

/* Search icon */
.search-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  stroke: #eee;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.search-icon:hover {
  stroke: #4ef47e;
}

/* Hero section */
.hero {
  position: relative;
  margin-top: 103px;
  padding: 81px 0 100px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(45deg, #2b1a63, #771081);
  /* background-image: linear-gradient(25deg, #8e87f7e6, #ffffff5c, #5827dbb3); */
  justify-content: flex-start;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* --- Mobile Nav & Hamburger --- */
.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 Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  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 a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #4ef47e;
}

/* Dropdown inside mobile */
.mobile-menu details summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.dropdown-mobile a {
  font-size: 14px;
  color: #aaa;
  margin-left: 16px;
  margin-top: 8px;
  display: block;
}

/* Open class triggers menu */
.mobile-menu.open {
  right: 0;
}

/* Responsive Behavior */
@media (max-width: 1024px) {

  .nav-links,
  .right-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* Curved background image container */
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  background: url("Images/simply-banerr.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;
}

/* 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;
  }

  .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 {
  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;
}

.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 {
  min-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 {
  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);
}

.rev-item-icon {
  min-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 {
  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;
  }

  /* 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;
  }

  /* 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;
  }

  /* 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: 28px;
  width: 28px;
  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;
}

.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;
}

html {
  scroll-behavior: smooth;
}

/* ======================================= */
/* Icon Css */
/* ======================================= */

.fa-solid,
.fas {
  font-size: 40px;
}

/* 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;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 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{
    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-right{
    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 ================================================== */
/* Thank-you Box styles */
.tybox {
  position: fixed; inset: 0; display: none;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,.35); backdrop-filter: blur(4px);
  z-index: 9999;
}
.tybox.show { display: flex; animation: tyfade .18s ease-out; }
@keyframes tyfade { from { opacity: 0 } to { opacity: 1 } }

.tycard {
  position: relative;
  max-width: 420px; width: calc(100% - 32px);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 20px 20px 18px;
  color: #EAF2FF; box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transform: translateY(8px) scale(.98); opacity: 0;
  animation: typop .22s ease-out forwards;
}
@keyframes typop { to { transform: none; opacity: 1 } }

.tyicon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  background: radial-gradient(120% 120% at 20% 20%, #34d399 0%, #10b981 60%, #0ea5e9 130%);
  display: grid; place-items: center; color: #0b1324; margin-right: 12px;
}
.tyicon svg { fill: #0b1324; }

.tycontent { display: grid; gap: 6px; margin-left: 12px; }
.tycontent h3 { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: .2px; }
.tycontent p  { margin: 0; font-size: 14px; color: #cfe3ff; line-height: 1.45; }

.tyclose {
  position: absolute; top: 8px; right: 10px;
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06); color: #EAF2FF;
  font-size: 20px; line-height: 1; cursor: pointer;
}
.tycard.error .tyicon { background: radial-gradient(120% 120% at 20% 20%, #f87171 0%, #ef4444 70%, #f59e0b 140%); }
