/* Fonts */
@font-face {
  font-family: 'lufga';
  src: url('../fonts/LufgaMedium.ttf') format('truetype');
  font-weight: 10;
  font-style: normal;
}

@font-face {
  font-family: 'Lufga';
  src: url('../fonts/LufgaThin.ttf') format('opentype');
  font-weight: 10;
  font-style: normal;
}
/* =========== Preeloader CSS ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loaded .preloader {
  display: none;
}

.preloader-logo {
  width: 500px;
  height: auto;
}

/* SoftX header styles */
:root {
  --sx-primary: #2f54a3;
  --sx-dark: #222;
  --sx-border: #d9e1f2;
  --sx-bg: #ffffff;
}

/* ================= Banner Section CSS ================ */
/* Banner Section */
.sx-banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--sx-primary) 0%, #1e3a8a 100%);
  overflow: hidden;
  padding: 60px 20px;
}

/* Container */
.sx-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Left Side */
.sx-banner-left {
  flex: 1;
  color: #fff;
  position: relative;
}

.sx-banner-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  animation: sx-banner-slideInUp 1s ease forwards;
}

.sx-banner-description {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
  animation: sx-banner-slideInUp 1s ease 0.3s forwards;
}

/* Right Side Image */
.sx-banner-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sx-banner-image {
  width: 100%;
  max-width: 1080px;
  border-radius: 12px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);*/
}

/* Animated Logo fixed in left-bottom corner */
.sx-banner-logo-wrapper {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 200px;
  height: 200px;
  z-index: 3;
}

.sx-banner-logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    rgba(47, 84, 163, 0.4)
  );
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: sx-banner-logo-bgPulse 4s ease-in-out infinite;
  filter: blur(12px);
  z-index: 1;
}

.sx-banner-logo {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition: all 0.5s ease;
  z-index: 2;
}

.sx-banner-logo:hover {
  transform: scale(1.2) rotate(-10deg);
  filter: drop-shadow(0 10px 25px rgba(255, 255, 255, 0.6));
}

/* Banner background animation */
.sx-banner-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.sx-banner-bg-animation span {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: sx-bg-float 10s linear infinite;
}

.sx-banner-bg-animation span:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-duration: 12s;
}
.sx-banner-bg-animation span:nth-child(2) {
  top: 50%;
  left: 10%;
  animation-duration: 15s;
}
.sx-banner-bg-animation span:nth-child(3) {
  top: 20%;
  left: 70%;
  animation-duration: 8s;
}
.sx-banner-bg-animation span:nth-child(4) {
  top: 80%;
  left: 40%;
  animation-duration: 14s;
}
.sx-banner-bg-animation span:nth-child(5) {
  top: 60%;
  left: 80%;
  animation-duration: 11s;
}

/* Animations */
@keyframes sx-banner-slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sx-banner-logo-bgPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes sx-bg-float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-50px) translateX(30px) rotate(180deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .sx-banner-container {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .sx-banner-left,
  .sx-banner-right {
    flex: unset;
    width: 100%;
    text-align: center;
  }
  .sx-banner-logo-wrapper {
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .sx-banner-title {
    font-size: 2rem;
  }
  .sx-banner-description {
    font-size: 1rem;
  }
  .sx-banner-logo-wrapper {
    width: 120px;
    height: 120px;
  }
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Hero Slider Styles */
.sx-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.sx-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.sx-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
}

.sx-slide.active {
  opacity: 1;
  visibility: visible;
}

.sx-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sx-primary) 0%, #1e3a8a 100%);
  z-index: 1;
}

.sx-slide:nth-child(2) .sx-slide-bg {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.sx-slide:nth-child(3) .sx-slide-bg {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Lufga', sans-serif;
  color: var(--sx-dark);
  background: var(--sx-bg);
}

/* =====================
   HEADER - GLASS EFFECT & ELEVATION
===================== */
.sx-header-new {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #fff;
  border-bottom: 1.5px solid #e3e7f2;
  box-shadow: 0 4px 16px rgba(47, 84, 163, 0.1);
  font-family: 'Lufga', sans-serif;
  transition: box-shadow 0.3s, background 0.3s;
}

/* HEADER CONTAINER */
.sx-header-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* LOGO */
.sx-header-logo img {
  height: 34px;
  max-width: 120px;
  object-fit: contain;
  transition: filter 0.25s;
  filter: drop-shadow(0 0 6px rgba(47, 84, 163, 0.13));
  margin-right: 4px;
}
.sx-header-logo:hover img {
  filter: drop-shadow(0 0 14px rgba(47, 84, 163, 0.23));
}

/* NAVIGATION CONTAINER */
.sx-nav-new {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sx-nav-list-new {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* NAV LINKS */
.sx-nav-link-new {
  font-weight: 700;
  color: #233d85;
  text-decoration: none;
  font-size: 1.05rem;
  padding: 8px 10px;
  border-radius: 6px;
  background: transparent;
  position: relative;
  transition: color 0.19s, background 0.19s;
}
.sx-nav-link-new:hover,
.sx-nav-link-new:focus-visible {
  color: #2754a3;
  background: #f5f8fe;
}
.sx-nav-link-new::after {
  content: "";
  display: block;
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, #2f54a3 45%, #248cdf 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.28s cubic-bezier(0.75, 0.01, 0.45, 1.01);
}
.sx-nav-link-new:hover::after,
.sx-nav-link-new:focus-visible::after {
  transform: scaleX(1);
}

/* DROPDOWN SUBMENU */
.sx-has-submenu {
  position: relative;
}
.sx-submenu-new {
  list-style: none;
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(47, 84, 163, 0.11);
  border-radius: 11px;
  padding: 7px 0;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.22s cubic-bezier(0.66, 0.09, 0.52, 0.93);
  z-index: 9999;
}
.sx-has-submenu:hover > .sx-submenu-new,
.sx-has-submenu:focus-within > .sx-submenu-new {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sx-submenu-new li a {
  display: block;
  padding: 10px 21px;
  color: #2254a3;
  background: none;
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 9px;
  transition: background 0.17s, color 0.16s;
}
.sx-submenu-new li a:hover,
.sx-submenu-new li a:focus-visible {
  background: linear-gradient(90deg, #2f54a3 60%, #248cdf 100%);
  color: #fff;
}

/* CTA BUTTON */
.sx-cta-new {
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.sx-button-new {
  padding: 9px 16px;
  background: linear-gradient(90deg, #2f54a3 50%, #556cd6 100%);
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  font-size: 1.02rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(47, 84, 163, 0.12);
  transition: transform 0.19s, box-shadow 0.19s, background 0.14s;
  display: inline-block;
  white-space: nowrap;
}
.sx-button-new:hover,
.sx-button-new:focus-visible {
  background: linear-gradient(90deg, #248cdf 40%, #2f54a3 90%);
  transform: scale(1.04) translateY(-1.5px);
  box-shadow: 0 16px 44px rgba(47, 84, 163, 0.18);
}

/* Hamburger Button */
.sx-header-toggle-new {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f9faff;
  border: 1px solid #e3e7f2;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(47, 84, 163, 0.07);
}
.sx-header-toggle-new .sx-bar {
  width: 22px;
  height: 2.5px;
  background: #2f54a3;
  border-radius: 2px;
  transition: all 0.32s;
}
.sx-header-toggle-new.is-active .sx-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.sx-header-toggle-new.is-active .sx-bar:nth-child(2) {
  opacity: 0;
}
.sx-header-toggle-new.is-active .sx-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Phone Icon Animation */
.sx-phone-icon-new {
  display: inline-flex;
  margin-left: 4px;
  animation: ring 1.2s infinite ease-in-out;
  transform-origin: center;
  vertical-align: middle;
}
@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(13deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(9deg);
  }
  40% {
    transform: rotate(-6deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* =====================
   RESPONSIVE FIXES
===================== */
@media (max-width: 992px) {
  /* Hide CTA button on mobile */
  .sx-cta-new {
    display: none !important;
  }

  /* Header spacing */
  .sx-header-container {
    padding: 10px 15px;
    gap: 0;
    justify-content: space-between;
  }

  /* Logo size */
  .sx-header-logo img {
    height: 26px;
    max-width: 95px;
  }

  /* Show hamburger properly on right */
  .sx-header-toggle-new {
    display: flex;
    margin-left: auto;
  }

  /* Mobile menu */
  .sx-nav-new {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 24px rgba(47, 84, 163, 0.15);
    flex-direction: column;
    padding: 18px 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55),
      opacity 0.25s ease-in-out;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .sx-nav-new.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sx-nav-list-new {
    flex-direction: column;
    gap: 6px;
    padding: 6px 0;
    width: 100%;
  }
  .sx-nav-link-new {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 1.05rem;
    border-radius: 8px;
  }
  .sx-nav-link-new:hover {
    background: #f0f4ff;
    transform: translateX(4px);
  }

  /* Submenu mobile */
  .sx-submenu-new {
    position: relative;
    background: #f7f9ff;
    border-radius: 10px;
    margin: 6px 14px;
    padding: 8px 0;
    display: none;
  }
  .sx-has-submenu.open > .sx-submenu-new {
    display: flex;
    flex-direction: column;
  }
  .sx-submenu-new li a {
    padding: 11px 18px;
    font-size: 0.97rem;
    border-radius: 6px;
  }
  .sx-submenu-new li a:hover {
    background: #eaf1ff;
    color: #2f54a3;
  }
}

@media (max-width: 768px) {
  .sx-header-container {
    padding: 9px 12px;
  }
  .sx-header-logo img {
    height: 24px;
    max-width: 80px;
  }
}

@media (max-width: 605px) {
  .sx-header-container {
    padding: 7px 10px;
  }
  .sx-header-logo img {
    height: 22px;
    max-width: 130px;
  }
}

/* Mobile submenu slide-down */
@media (max-width: 992px) {
  .sx-submenu-new {
    max-height: 0; /* start closed */
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
  }
  .sx-has-submenu.open > .sx-submenu-new {
    max-height: 500px; /* big enough for all submenu items */
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Slider Styles */
.sx-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.sx-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.sx-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
}

.sx-slide.active {
  opacity: 1;
  visibility: visible;
}

.sx-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sx-primary) 0%, #1e3a8a 100%);
  z-index: 1;
}

.sx-slide:nth-child(2) .sx-slide-bg {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.sx-slide:nth-child(3) .sx-slide-bg {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.sx-slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.sx-slide-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  animation: slideInUp 0.8s ease 0.2s both;
}

.sx-slide-description {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin: 0 0 40px 0;
  line-height: 1.6;
  opacity: 0.9;
  animation: slideInUp 0.8s ease 0.4s both;
}

.sx-slide-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease 0.6s both;
}

.sx-button-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: none;
}

.sx-button-outline:hover {
  background: #fff;
  color: var(--sx-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25);
}

/* Slider Controls */
.sx-slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 10;
}

.sx-slider-prev,
.sx-slider-next {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.sx-slider-prev:hover,
.sx-slider-next:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.sx-slider-prev:active,
.sx-slider-next:active {
  transform: scale(0.95);
}

.sx-slider-dots {
  display: flex;
  gap: 12px;
}

.sx-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sx-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.sx-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sx-hero {
    min-height: 500px;
  }

  .sx-slide-content {
    padding: 0 16px;
  }

  .sx-slide-actions {
    flex-direction: column;
    align-items: center;
  }

  .sx-slider-controls {
    bottom: 20px;
    gap: 16px;
  }

  .sx-slider-prev,
  .sx-slider-next {
    width: 40px;
    height: 40px;
  }

  .sx-dot {
    width: 10px;
    height: 10px;
  }
}

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

  .sx-slide-description {
    font-size: 1rem;
  }

  .sx-slider-controls {
    bottom: 16px;
    gap: 12px;
  }
}

/* Slider Controls */
.sx-slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 10;
}

.sx-slider-prev,
.sx-slider-next {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.sx-slider-prev:hover,
.sx-slider-next:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.sx-slider-prev:active,
.sx-slider-next:active {
  transform: scale(0.95);
}

.sx-slider-dots {
  display: flex;
  gap: 12px;
}

.sx-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sx-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.sx-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sx-hero {
    min-height: 500px;
  }

  .sx-slide-content {
    padding: 0 16px;
  }

  .sx-slide-actions {
    flex-direction: column;
    align-items: center;
  }

  .sx-slider-controls {
    bottom: 20px;
    gap: 16px;
  }

  .sx-slider-prev,
  .sx-slider-next {
    width: 40px;
    height: 40px;
  }

  .sx-dot {
    width: 10px;
    height: 10px;
  }
}

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

  .sx-slide-description {
    font-size: 1rem;
  }

  .sx-slider-controls {
    bottom: 16px;
    gap: 12px;
  }
}

/* Who We Are Section */
.sx-who-we-are {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.sx-who-we-are-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sx-who-we-are-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.sx-who-box {
  background: linear-gradient(135deg, #ffb3d1 0%, #ff8fb3 100%);
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(255, 143, 179, 0.3);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.sx-who-box:hover {
  transform: rotate(-2deg) scale(1.05);
}

.sx-who-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sx-primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.sx-we-are-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
  letter-spacing: 2px;
}

.sx-blue-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: var(--sx-primary);
  border-radius: 15px;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.sx-who-we-are-text {
  padding-left: 20px;
}

.sx-company-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.sx-established-year {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--sx-primary);
  margin: 0 0 30px 0;
  line-height: 1.2;
}

.sx-company-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.sx-company-description p {
  margin: 0 0 20px 0;
}

.sx-company-description p:last-child {
  margin-bottom: 0;
}

/* Animation for text content */
.sx-who-we-are-text > * {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.8s ease forwards;
}

.sx-company-title {
  animation-delay: 0.2s;
}

.sx-established-year {
  animation-delay: 0.4s;
}

.sx-company-description {
  animation-delay: 0.6s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design for Who We Are */
@media (max-width: 992px) {
  .sx-who-we-are {
    padding: 80px 0;
  }

  .sx-who-we-are-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .sx-who-we-are-visual {
    order: 2;
    min-height: 250px;
  }

  .sx-who-we-are-text {
    order: 1;
    padding-left: 0;
  }

  .sx-who-text,
  .sx-we-are-text {
    font-size: 2rem;
  }

  .sx-company-title {
    font-size: 1.8rem;
  }

  .sx-established-year {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .sx-who-we-are {
    padding: 60px 0;
  }

  .sx-who-we-are-content {
    gap: 40px;
    padding: 0 16px;
  }

  .sx-who-box {
    padding: 30px 20px;
    transform: rotate(-3deg);
  }

  .sx-who-text,
  .sx-we-are-text {
    font-size: 1.6rem;
  }

  .sx-company-title {
    font-size: 1.6rem;
  }

  .sx-established-year {
    font-size: 2rem;
  }

  .sx-company-description {
    font-size: 1rem;
  }

  .sx-blue-accent {
    width: 60px;
    height: 60px;
    bottom: -15px;
    left: -15px;
  }
}

@media (max-width: 480px) {
  .sx-who-we-are {
    padding: 40px 0;
  }

  .sx-who-box {
    padding: 25px 15px;
  }

  .sx-who-text,
  .sx-we-are-text {
    font-size: 1.4rem;
  }

  .sx-company-title {
    font-size: 1.4rem;
  }

  .sx-established-year {
    font-size: 1.8rem;
  }

  .sx-company-description {
    font-size: 0.95rem;
  }
}

/* ✅ Responsive Fix for Who We Are */
@media (max-width: 992px) {
  .sx-who-we-are-visual {
    order: 1; /* Heading first */
    text-align: center;
  }
  .sx-who-we-are-text {
    order: 2; /* Content second */
  }
}

@media (max-width: 768px) {
  .sx-who-we-are-visual {
    order: 1;
    text-align: center;
  }
  .sx-who-we-are-text {
    order: 2;
  }
}

@media (max-width: 480px) {
  .sx-who-we-are-visual {
    order: 1;
    text-align: center;
  }
  .sx-who-we-are-text {
    order: 2;
  }
}

/* What We Do Section */
.sx-what-we-do {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.sx-what-we-do-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sx-what-we-do-text {
  padding-right: 20px;
}

.sx-main-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a202c;
  margin: 0 0 40px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sx-highlight {
  color: var(--sx-primary);
  background: linear-gradient(135deg, var(--sx-primary) 0%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sx-description-blocks {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sx-description-block {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

.sx-description-block strong {
  color: #2d3748;
  font-weight: 700;
}

.sx-intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 20px 0 15px 0;
  font-weight: 600;
}

.sx-intro-text strong {
  color: var(--sx-primary);
  font-weight: 700;
}

.sx-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sx-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5568;
}

.sx-bullet-icon {
  width: 8px;
  height: 8px;
  background: var(--sx-primary);
  border-radius: 2px;
  margin-top: 8px;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.sx-what-we-do-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.sx-what-box {
  background: #fef7f0;
  border: 2px solid var(--sx-primary);
  padding: 50px 40px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 50px rgba(47, 84, 163, 0.15);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sx-what-box:hover {
  transform: rotate(1deg) scale(1.02);
}

.sx-what-text {
  font-size: 3rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.sx-we-do-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sx-primary);
  line-height: 1;
  letter-spacing: 2px;
}

.sx-blue-accent-what {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 90px;
  height: 90px;
  background: var(--sx-primary);
  border-radius: 20px;
  z-index: 1;
  transform: rotate(15deg);
  animation: floatRotate 4s ease-in-out infinite;
}

@keyframes floatRotate {
  0%,
  100% {
    transform: rotate(15deg) translateY(0px);
  }
  50% {
    transform: rotate(20deg) translateY(-15px);
  }
}

/* Animation for text content */
.sx-what-we-do-text > * {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease forwards;
}

.sx-main-heading {
  animation-delay: 0.2s;
}

.sx-description-blocks {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design for What We Do */
@media (max-width: 992px) {
  .sx-what-we-do {
    padding: 80px 0;
  }

  .sx-what-we-do-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sx-what-we-do-visual {
    order: 2;
    min-height: 300px;
  }

  .sx-what-we-do-text {
    order: 1;
    padding-right: 0;
  }

  .sx-main-heading {
    font-size: 2.2rem;
    text-align: center;
  }

  .sx-what-text {
    font-size: 2.5rem;
  }

  .sx-we-do-text {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .sx-what-we-do {
    padding: 60px 0;
  }

  .sx-what-we-do-content {
    gap: 40px;
    padding: 0 16px;
  }

  .sx-main-heading {
    font-size: 1.8rem;
  }

  .sx-description-block,
  .sx-intro-text {
    font-size: 1rem;
  }

  .sx-feature-item {
    font-size: 0.95rem;
  }

  .sx-what-box {
    padding: 40px 30px;
    transform: rotate(2deg);
    min-height: 250px;
  }

  .sx-what-text {
    font-size: 2rem;
  }

  .sx-we-do-text {
    font-size: 1.6rem;
  }

  .sx-blue-accent-what {
    width: 70px;
    height: 70px;
    bottom: -20px;
    right: -20px;
  }
}

@media (max-width: 480px) {
  .sx-what-we-do {
    padding: 40px 0;
  }

  .sx-main-heading {
    font-size: 1.5rem;
  }

  .sx-what-box {
    padding: 30px 20px;
    min-height: 200px;
  }

  .sx-what-text {
    font-size: 1.6rem;
  }

  .sx-we-do-text {
    font-size: 1.3rem;
  }

  .sx-blue-accent-what {
    width: 60px;
    height: 60px;
    bottom: -15px;
    right: -15px;
  }
}

/* ✅ Responsive Fix for What We Do */
@media (max-width: 992px) {
  .sx-what-we-do-visual {
    order: 1; /* Heading first */
    text-align: center;
  }
  .sx-what-we-do-text {
    order: 2; /* Content second */
  }
}

@media (max-width: 768px) {
  .sx-what-we-do-visual {
    order: 1;
    text-align: center;
  }
  .sx-what-we-do-text {
    order: 2;
  }
}

@media (max-width: 480px) {
  .sx-what-we-do-visual {
    order: 1;
    text-align: center;
  }
  .sx-what-we-do-text {
    order: 2;
  }
}

/* Achievement Section Layout */
.sx-achievement {
  background: #f8fafc;
}

.sx-achievement-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left Paragraph */
.sx-achievement-left {
  text-align: left;
}
.sx-achievement-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
}

/* Trophy Section */
.sx-achievement-visual {
  text-align: center;
}
.sx-trophy-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.sx-trophy-svg svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Stars Animation */
.sx-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.sx-star {
  position: absolute;
  color: #ffd700;
  font-size: 22px;
  opacity: 0;
  animation: twinkle 3s infinite;
}
.star-1 {
  top: 15%;
  left: 20%;
  animation-delay: 0.5s;
}
.star-2 {
  top: 5%;
  right: 25%;
  animation-delay: 1s;
}
.star-3 {
  bottom: 15%;
  left: 25%;
  animation-delay: 1.5s;
}
.star-4 {
  bottom: 20%;
  right: 20%;
  animation-delay: 2s;
}
.star-5 {
  top: 40%;
  right: 10%;
  animation-delay: 2.5s;
}

/* Right Side Text */
.sx-achievement-heading {
  text-align: center;
}
.sx-achievement-subtitle {
  font-size: 2rem; /* Bigger */
  font-weight: 800;
  color: #2f54a3;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
/* Gradient 200+ */
.sx-achievement-number {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(
    90deg,
    #2f54a3,
    #6c8de3
  ); /* from your color → lighter shade */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 12px rgba(47, 84, 163, 0.25);
}

/* Gradient Animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Animations */
@keyframes twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(20deg);
    filter: brightness(1.5);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .sx-achievement-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sx-achievement-left {
    text-align: center;
  }
}

/* =====================
   Contact Section Styles
   ===================== */
.sx-contact {
  padding: 100px 0;
  background: #f8f9ff;
  position: relative;
  overflow: hidden;
}

.sx-contact-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sx-contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #1d2144;
  position: relative;
  display: inline-block;
}

.sx-contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #2f54a3, #1d2e5c);
  border-radius: 2px;
  animation: expandLine 1s ease-out forwards;
}

.mb-10 {
  margin-bottom: 10px;
}

.sx-contact-subtitle {
  font-size: 1.2rem;
  margin: 0 0 50px 0;
  opacity: 0.9;
  line-height: 1.6;
  color: #666;
}

.sx-contact-form-container {
  display: flex;
  background: #2f54a3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease-out;
}

.sx-form-left {
  flex: 1;
  padding: 40px;
  background: white;
}

.sx-form-right {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #2f54a3 0%, #1d2e5c 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.sx-contact-form-right-links {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.sx-contact-form-right-links:hover {
  color: #000;
}

.sx-form-left h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1d2144;
}

.sx-form-intro {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.sx-contact-form {
  margin-top: 20px;
}

.sx-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.sx-form-row .sx-input-group {
  flex: 1;
}

.sx-input-group {
  position: relative;
  text-align: left;
}
.sx-input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1d2144;
  transition: all 0.3s ease;
}
.sx-input-group input,
.sx-input-group textarea,
.sx-input-group select {
    color: #000;
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f9f9f9;
  font-family: 'Lufga', sans-serif;
}
.sx-input-group input:focus,
.sx-input-group textarea:focus,
.sx-input-group select:focus {
  outline: none;
  border-color: #2f54a3;
  background: white;
  box-shadow: 0 5px 15px rgba(74, 108, 247, 0.1);
}

.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.custom-select-trigger {
  background: #f9f9f9;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
  text-align: left; /* 👈 Ensures text is aligned to the left */
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: #2f54a3;
  background: white;
  box-shadow: 0 5px 15px rgba(74, 108, 247, 0.1);
}

.custom-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
  text-align: left;
}

.custom-select-wrapper.open .custom-options {
  display: block;
}

.custom-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-option:hover {
  background: #f1f3ff;
}

.custom-option.selected {
  background: #e6ebff;
  color: #2f54a3;
  font-weight: 600;
}

.custom-select-trigger {
  background: #f9f9f9;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 40px; /* Space for arrow */
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: #2f54a3;
  background: white;
  box-shadow: 0 5px 15px rgba(74, 108, 247, 0.1);
}

/* ▼ Arrow icon */
.custom-select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2f54a3;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.custom-select-wrapper.open .custom-select-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}


/* =====================
     Voice Section
     ===================== */
.sx-voice-section {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9ff;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(47, 84, 163, 0.05);
}
.sx-voice-section h4 {
  margin-bottom: 15px;
  color: #1d2144;
  font-weight: 600;
}

.sx-voice-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.mic-instruction-wrapper {
  display: flex;
  align-items: center;
  gap: 16px; /* space between button and text */
  margin-bottom: 20px;
  flex-wrap: wrap; /* ensures responsiveness on smaller screens */
}

.sx-voice-btn {
  height: 50px;
  flex: 1;
  min-width: 70px;
  padding: 12px 20px;
  background: linear-gradient(to right, #2f54a3, #1d2e5c);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 84, 163, 0.25);
}

.mic-instruction-text {
  color: #2f54a3;
  font-size: 14px;
  max-width: 300px;
  line-height: 1.4;
}
.sx-voice-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.sx-voice-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(47, 84, 163, 0.35);
}
.sx-voice-btn.remove-btn {
  background: linear-gradient(135deg, #e63946, #b71c1c);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}
.sx-voice-btn.remove-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff4d5a, #c62828);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.4);
}

.sx-recording-preview {
  min-height: 120px;
  background: #fff;
  border-radius: 10px;
  border: 2px dashed #d1d9ff;
  margin-bottom: 20px;
  padding: 15px;
  font-size: 0.95rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sx-voice-player {
  width: 100%;
  border-radius: 12px;
  background: #f1f3ff;
  padding: 6px;
}

/* =====================
     File Upload
     ===================== */
.sx-file-upload {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}
.sx-upload-btn {
  padding: 12px 20px;
  background: #f1f3ff;
  border: 2px dashed #d1d9ff;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #2f54a3;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}
.sx-upload-btn:hover {
  background: #e6ebff;
  border-color: #2f54a3;
}

/* =====================
     Consent & Submit
     ===================== */
.sx-consent {
  margin: 25px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  text-align: left;
}
.sx-submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(to right, #2f54a3, #1d2e5c);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(74, 108, 247, 0.4);
}
.sx-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 108, 247, 0.5);
}
.sx-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}
.sx-submit-btn:hover::before {
  left: 100%;
}

/* =====================
     Alternative Contact
     ===================== */
.sx-alternative-contact {
  margin-top: 30px;
  text-align: center;
  color: #666;
}
.sx-alternative-contact a {
  color: #2f54a3;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.sx-alternative-contact a:hover {
  color: #6f42c1;
  text-decoration: underline;
}

/* =====================
     Contact Info
     ===================== */
.sx-contact-info {
  margin-bottom: 40px;
}
.sx-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.sx-contact-item:hover {
  transform: translateX(5px);
}
.sx-contact-item i {
  font-size: 1.5rem;
  color: white;
  opacity: 0.9;
}

/* =====================
     Process Steps
     ===================== */
.sx-process-steps {
  position: relative;
  padding-left: 0;
  margin-top: 20px;
}
.sx-process-steps h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  color: #fff;
}
.sx-process-steps h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

/* Each Step */
.sx-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 15px 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInRight 0.8s ease-out;
  animation-fill-mode: both;
  opacity: 0;
  text-align: left;
}
.sx-step:nth-child(1) {
  animation-delay: 0s;
}
.sx-step:nth-child(2) {
  animation-delay: 0.2s;
}
.sx-step:nth-child(3) {
  animation-delay: 0.4s;
}
.sx-step:nth-child(4) {
  animation-delay: 0.6s;
}
.sx-step:nth-child(5) {
  animation-delay: 0.8s;
}

/* Hover Effects */
.sx-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.sx-step::before,
.sx-step::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transition: all 0.4s ease;
  opacity: 0;
}
.sx-step::before {
  width: 80px;
  height: 80px;
  background: rgba(47, 84, 163, 0.15);
  top: -20px;
  left: -20px;
}
.sx-step::after {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  bottom: -30px;
  right: -30px;
}
.sx-step:hover::before,
.sx-step:hover::after {
  opacity: 1;
  transform: scale(1.1);
}

/* Step Number */
.sx-step-number {
  min-width: 40px;
  height: 40px;
  background: #ffffff;
  color: #2f54a3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 15px;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
.sx-step:hover .sx-step-number {
  background: #2f54a3;
  color: #ffffff;
  transform: scale(1.1);
}

.sx-step-content h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  text-align: left;
}
.sx-step-content p {
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

/* =====================
     Animations
     ===================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
@keyframes pulseBackground {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 108, 247, 0.1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 108, 247, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 108, 247, 0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =====================
     Responsive Design
     ===================== */
@media (max-width: 900px) {
  .sx-contact-form-container {
    flex-direction: column;
  }
  .sx-form-right {
    order: -1;
  }
  .sx-form-row {
    flex-direction: column;
    gap: 0;
  }
  .sx-file-upload {
    flex-direction: column;
  }
  .sx-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .sx-contact-title {
    font-size: 2rem;
  }
  .sx-contact-subtitle {
    font-size: 1rem;
  }
}

/* Footer Styles */
.sx-footer {
  background: #1a202c;
  color: #e2e8f0;
  padding: 60px 0 20px 0;
  /* margin-top: 80px; */
}
.sx-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.sx-footer-main {
  margin-bottom: 40px;
}

.sx-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.sx-footer-section h3.sx-footer-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.sx-footer-description {
  color: #a0aec0;
  line-height: 1.6;
  margin: 0 0 25px 0;
  font-size: 0.95rem;
}

.sx-social-links {
  display: flex;
  gap: 15px;
}

.sx-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sx-social-link:hover {
  background: var(--sx-primary);
  color: #fff;
  transform: translateY(-2px);
}

.sx-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sx-footer-links li {
  margin-bottom: 12px;
}

.sx-footer-contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.sx-footer-contact-link:hover {
  color: var(--sx-primary);
}

.sx-footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.sx-footer-links a:hover {
  color: var(--sx-primary);
}

.sx-footer .sx-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sx-footer .sx-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #a0aec0;
}

.sx-footer .sx-contact-item i {
  color: var(--sx-primary);
  width: 16px;
  text-align: center;
}

.sx-footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  clear: both;
  width: 100%;
}

.sx-footer-copyright p {
  margin: 0;
  color: #a0aec0;
  font-size: 0.9rem;
}

.sx-footer-credit-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  clear: both;
  width: 100%;
}

.sx-footer-credit {
  text-align: center;
}

.sx-footer-credit p {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
}

.sx-footer-credit a {
  color: var(--sx-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sx-footer-credit a:hover {
  color: #f8fafc;
}

.sx-footer-credit #copyright a {
  color: var(--sx-primary);
  font-weight: 600;
}

.text-parrot-green {
  color: #10b981;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Footer Responsive Design */
@media (max-width: 992px) {
  .sx-footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .sx-footer-section:first-child {
    grid-column: 1 / -1;
  }

  .sx-footer-main {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .sx-footer {
    padding: 40px 0 20px 0;
    margin-top: 60px;
  }

  .sx-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    /* text-align: center; */
  }

  .sx-footer-main {
    margin-bottom: 25px;
  }

  .sx-social-links {
    justify-content: center;
  }

  .sx-footer-bottom {
    text-align: center;
  }

  .sx-footer-credit-section {
    margin-top: 30px;
    padding-top: 20px;
  }

  .sx-credit-line {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .sx-footer {
    padding: 30px 0 15px 0;
  }

  .sx-footer-content {
    gap: 25px;
  }

  .sx-footer-section h3.sx-footer-title {
    font-size: 1.1rem;
  }

  .sx-footer-description,
  .sx-footer-links a,
  .sx-footer .sx-contact-item {
    font-size: 0.9rem;
  }

  .sx-footer-credit-section {
    margin-top: 25px;
    padding-top: 15px;
  }

  .sx-credit-line {
    max-width: 300px;
  }

  .sx-footer-credit p {
    font-size: 0.9rem;
  }

  .sx-separator {
    width: 50%;
    height: 1px;
  }
}
.sx-credit-line {
  flex-grow: 1;
  height: 1px;
  background: #4a5568;
  min-width: 20px;
}

.sx-credit-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* allows wrap on small screens */
  gap: 10px;
  text-align: center;
}

.sx-separator {
  width: 1px;
  height: 20px;
  background-color: #ccc;
}

/* On small screens: make separator horizontal instead of vertical */
@media (max-width: 600px) {
  .sx-separator {
    width: 70%;
    height: 1px;
  }
}
/* =============== Success Message CSS ================= */
/* Overlay background */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

/* Show when active */
.success-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Success box */
.success-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: popIn 0.5s ease forwards;
}

/* Success icon */
.success-icon {
  margin-bottom: 15px;
}
.success-icon svg {
  width: 80px;
  height: 80px;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: drawCircle 1s forwards ease-in-out;
}
.checkmark {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.6s forwards ease-in-out 1s;
}

/* Text */
.success-box h2 {
  font-size: 1.5rem;
  color: #2f7a3f;
  margin: 10px 0;
}
.success-box p {
  color: #555;
  font-size: 1rem;
}

/* Animations */
@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

/* ==================== Success Message CSS End ==================== */