@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Space+Grotesk:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

:root {
  --primary-purple: #7c3aed;
  --text-dark: #1f2937;
  --text-gray: #4b5563;
  --white: #ffffff;
  --font-family-primary: "Space Grotesk", sans-serif;
  --font-family-secondary: "Plus Jakarta Sans", sans-serif;
}

body {
  font-family: var(--font-family-primary);
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 2rem;
}

@media(min-width:768px) and (max-width:1023px) {
.hero-section {
min-height:85vh;
}
}

@media(width:1024px){
.hero-section{
min-height:65vh;
}
}

@media(min-width:2000px){
.hero-section{
min-height:50vh;
}
}


.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../../assets/images/home-banner-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 1;
}

.container {
  max-width: 1239px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  position: relative;
  z-index: 100;
  background-color: #fff;
  border-radius: 50px;
}

.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.menu1 {
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-purple);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-purple);
}

.nav-menu a:hover::after {
  width: 100%;
}
.nav-logo img {
  width: 150px;
}

@media (max-width: 768px) {
  .nav-logo img {
    width: 100px;
  }
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background-image:
    linear-gradient(135deg, #f8e9fe, #eef8fd),
    linear-gradient(90deg, #02aaea, #bc22fa);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-size: 16px;
  font-weight: 500;
  color: #6162fb;
  cursor: pointer;
  font-family: var(--font-family-secondary);
}

@media (max-width: 1200px) {
  .contact-btn {
    display: none;
  }
  .mobile-contact {
    display: block !important;
  }
  .mobile-contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    background-image:
      linear-gradient(135deg, #f8e9fe, #eef8fd),
      linear-gradient(90deg, #02aaea, #bc22fa);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    font-size: 16px;
    font-weight: 500;
    color: #6162fb;
    cursor: pointer;
    font-family: var(--font-family-secondary);
  }
}

.mobile-contact {
  display: none;
}

@media (max-width: 600px) {
  .contact-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

.contact-btn .arrow {
  font-size: 16px;
  margin-left: 6px;
}

@media (max-width: 600px) {
  .contact-btn .arrow {
    font-size: 12px;
    margin-left: 4px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
  background: transparent;
  border: none;
  padding: 8px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: center;
  padding: 60px 0 120px;
  position: relative;
}

.hero-text {
  max-width: 700px;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-text h1 .highlight {
  color: #bc22fa;
}

.hero-text h1 .highlight-blue {
  color: #bc22fa;
}

/* Typing Effect */
#typingText,
#typingText2 {
  position: relative;
  background: linear-gradient(360deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* #typingText.typing::after,
#typingText2.typing::after {
  content: "";
  display: inline-block;
  margin-left: 2px;
  animation: blink-caret 0.75s step-end infinite;
} */

@keyframes blink-caret {
  from,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  font-weight: 500;
  margin-bottom: 16px;
  font-family: var(--font-family-secondary);
}

.cta-button {
  background: linear-gradient(90deg, #3a54f2, #fa22ec);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
  font-family: var(--font-family-primary);
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-button::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-button:hover::after {
  transform: translateX(4px);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

.mobile-mockup {
  position: relative;
  width: 100%;
  max-width: 320px;
  /* aspect-ratio: 1 / 2; */
  margin: auto;
}
/* phone frame */
.phone-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  top: 1.85%;
  left: 4%;
  width: 91%;
  height: 96%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

/* SCREEN IMAGES */
.screen-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  border-radius: 30px;
  transition: opacity 0.8s ease-in-out;
  transform: scale(1);
}

.screen-img.active {
  opacity: 1;
}

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

@media (max-width: 1200px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background: white;
    flex-direction: column;
    padding: 80px 40px;
    gap: 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    align-items: flex-start;
    z-index: 1;
  }

  .nav-menu.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    gap: 60px;
  }

  .hero-text h1 {
    font-size: 56px;
  }
  .mobile-mockup {
    max-width: 300px;
  }
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 0 110px;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .cta-button {
    margin: 0 auto;
  }

  .hero-image {
    height: 500px;
  }

  .mobile-mockup {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .mobile-mockup {
    max-width: 260px;
  }

  .phone-screen {
    border-radius: 20px;
  }

  .screen-img {
    border-radius: 20px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 0 70px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .navbar {
    padding: 14px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-image {
    height: 450px;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 15px;
  }
  .mobile-mockup {
    max-width: 240px;
  }

  .phone-screen {
    top: 1.85%;
    left: 4%;
    width: 91%;
    height: 96%;
    border-radius: 18px;
  }

  .screen-img {
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .mobile-mockup {
    max-width: 210px;
  }

  .phone-screen {
    border-radius: 16px;
  }

  .screen-img {
    border-radius: 16px;
  }
  .hero-image {
    height: 400px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.phone-mockup {
  will-change: transform;
}

.cta-button,
.contact-btn {
  will-change: transform;
}

/*client logo section */
.clients-section {
  padding: 60px 0;
  background: var(--clients-bg);
  position: relative;
  overflow: hidden;
}

.clients-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.clients-marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: clients-scroll 30s linear infinite;
}

@keyframes clients-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.clients-marquee-wrapper:hover .clients-marquee-track {
  animation-play-state: paused;
}

.clients-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: var(--clients-logo-opacity);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  filter: grayscale(100%);
}

.clients-logo img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

@media (max-width: 1024px) {
  .clients-section {
    padding: 60px 0;
  }

  .clients-marquee-track {
    gap: 60px;
  }

  .clients-logo img {
    height: 45px;
    max-width: 160px;
  }

  .clients-marquee-wrapper::before,
  .clients-marquee-wrapper::after {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 50px 0;
  }

  .clients-marquee-track {
    gap: 50px;
    animation: clients-scroll 25s linear infinite;
  }

  .clients-logo img {
    height: 40px;
    max-width: 140px;
  }

  .clients-marquee-wrapper::before,
  .clients-marquee-wrapper::after {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .clients-section {
    padding: 40px 0;
  }

  .clients-marquee-track {
    gap: 40px;
    animation: clients-scroll 20s linear infinite;
  }

  .clients-logo img {
    height: 35px;
    max-width: 120px;
  }

  .clients-marquee-wrapper::before,
  .clients-marquee-wrapper::after {
    width: 60px;
  }
}

.clients-marquee-track {
  will-change: transform;
}

.clients-logo {
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee-track {
    animation: none;
  }

  .clients-logo:hover {
    transform: none;
  }
}

.clients-logo img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/*about us and counter section*/
.about-section {
  padding: 60px 0;
  background: white;
  position: relative;
}

.about-container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.about-image-collage {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.about-img-main img {
  border-radius: 16px;
  transition: transform 1.2s ease;
  width: 70%;
}

.about-img-overlay {
  position: absolute;
  bottom: -105px;
  right: -80px;
  width: 70%;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(220px);
  transition: all 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-anim-section.about-anim-active .about-img-overlay {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-anim-section.about-anim-active .about-img-main img {
  transform: scale(1);
}
.image-overlay img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.about-image-mobile {
  display: none;
}

.about-image-mobile img {
  width: 100%;
  border-radius: 16px;
  opacity: 1;
  /* transform: translateY(160px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1); */
}

/* trigger animation */
.about-anim-section.about-anim-active .about-image-mobile img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 968px) {
  /* hide desktop collage */
  .about-image-collage {
    display: none;
  }

  /* show mobile image */
  .about-image-mobile {
    display: block;
  }
}

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

@media (max-width: 968px) {
  .about-img-overlay {
    right: -20px;
    bottom: -20px;
    width: 60%;
  }
}

@media (max-width: 480px) {
  .about-img-main img {
    border-radius: 16px;
    transition: transform 1.2s ease;
    width: 100%;
  }
  .about-img-overlay {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
    opacity: 1;
    transform: none;
  }
}

.about-text-content {
  max-width: 600px;
}

.about-label {
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  margin-top: 8px;
}

.about-title .about-highlight {
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--font-family-secondary);
  color: #4b5563;
  font-weight: 500;
}

.about-stats-section {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 20px 20px;
  border: 1px solid #e3e8ef;
  max-width: 850px;
  margin: auto;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
}

.about-stat-item {
  text-align: center;
}

.about-stat-number {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.about-stat-plus {
  font-size: 40px;
}

.about-stat-label {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family-secondary);
}

@media (max-width: 1200px) {
  .about-content-wrapper {
    gap: 80px;
    margin-bottom: 110px;
  }

  .about-title {
    font-size: 42px;
  }

  .about-stat-number {
    font-size: 48px;
  }
}

@media (max-width: 968px) {
  .about-section {
    padding: 30px 0;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
  }

  .about-text-content {
    order: 1;
    max-width: 100%;
  }

  .about-title {
    font-size: 36px;
  }

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

  .about-stats-section {
    padding: 50px 30px;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 24px 0;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-content-wrapper {
    gap: 40px;
    margin-bottom: 60px;
    margin-bottom: 24px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-stats-section {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }

  .about-stat-number {
    font-size: 38px;
  }

  .about-stat-plus {
    font-size: 32px;
  }

  .about-stat-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .about-stat-number {
    font-size: 32px;
  }

  .about-stat-plus {
    font-size: 32px;
  }
}

.about-stat-number {
  will-change: contents;
}

@media (prefers-reduced-motion: reduce) {
  .about-stat-number {
    will-change: auto;
  }
}

@keyframes about-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-stat-item {
  animation: about-fadeInUp 0.6s ease-out forwards;
}

.about-stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.about-stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.about-stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.about-stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

/* ===============================
   CTA SECTION
================================ */
.cta-section {
  background: url("../images/cta-section-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  overflow: hidden;
}

/* @media (min-width: 1400px) {
  .cta-section {
    height: 425px;
  }
} */

@media (max-width: 1023px) {
  .cta-section {
    background: url("../images/mobile-cta-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
  }
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
}

.cta-content {
  padding: 56px 56px 56px 20px;
}

.cta-eyebrow {
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px !important;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  margin-bottom: 14px;
}

.cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 480px;
  margin-bottom: 28px;
  font-family: var(--font-family-secondary);
  font-weight: 500;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.cta-btn.primary {
  background: linear-gradient(90deg, #02aaea, #bc22fa);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
  font-family: var(--font-family-primary);
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
}

.cta-btn.outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background-image:
    linear-gradient(135deg, #f8e9fe, #eef8fd),
    linear-gradient(90deg, #02aaea, #bc22fa);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-size: 16px;
  font-weight: 500;
  color: #6162fb;
  cursor: pointer;
  font-family: var(--font-family-secondary);
}

.cta-btn.outline:hover {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    height: 280px;
    border-radius: 0 0 16px 16px;
  }

  .cta-content {
    padding: 40px;
    padding-left: 24px;
  }

  .cta-title {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .cta-section {
    padding: 40px 14px;
  }

  .cta-content {
    padding: 32px 24px;
  }

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

  .cta-text {
    font-size: 14px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===============================
   SERVICES SECTION
================================ */
.services-section {
  padding: 80px 20px;
  background: #ffffff;
}

@media (max-width: 1024px) {
  .services-section {
    padding: 48px 20px;
  }
}
@media (max-width: 600px) {
  .services-section {
    padding: 24px 20px;
  }
}

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

.services-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  max-width: 800px;
  margin: auto;
  line-height: 1.1;
}

.services-title span {
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 24px auto 48px;
  font-size: 16px;
  font-family: var(--font-family-secondary);
  line-height: 1.7;
  color: #4b5563;
  font-weight: 500;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* Move last 3 cards to center */
.services-grid .service-card:nth-child(5) {
  grid-column: 2 / span 1;
}

.services-grid .service-card:nth-child(6) {
  grid-column: 3 / span 1;
}

.services-grid .service-card:nth-child(7) {
  grid-column: 4 / span 1;
}

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 24px 26px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition:
    background 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.5s ease;
  width: calc(25% - 18px);
}

.service-card:hover {
  background: linear-gradient(435deg, #02aaea, #bc22fa);
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -2%;
  margin-bottom: 10px;
  color: #1f2937;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  font-weight: 500;
  font-family: var(--font-family-secondary);
}

.service-icon {
  position: absolute;
  top: -18px;
  left: 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.service-icon img {
  width: 60px;
  height: 60px;
}

/* ===============================
   BOTTOM SECTION
================================ */
.services-bottom {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.services-bottom-left h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-bottom-left h4 span {
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-bottom-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  font-family: var(--font-family-secondary);
}

/* ===============================
   STATS
================================ */
.services-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.stat-box {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 36px 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  text-align: center;
  width:150px;
  height:150px;

}

/* FLOATING NUMBER */
.stat-number {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.stat-box p {
  margin: 0;
  margin-top: 30px;
  font-size: 15px;
  color: #1f2937;
  font-weight: 600;
}

.stat-circle {
  background: #ffffff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-circle strong {
  font-size: 18px;
  color: #6366f1;
}

.stat-circle span {
  font-size: 12px;
  color: #6b7280;
}

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

  .services-bottom {
    grid-template-columns: 1fr;
  }
  .service-card {
    width: calc(50% - 12px);
  }
.services-stats {
    margin-top:30px;
row-gap:80px;
  }

}

@media (max-width: 768px) {
  .services-stats {
    grid-template-columns: repeat(2, 1fr);
place-items:center;
  }

}
@media (max-width: 600px) {
  .services-title {
    font-size: 28px;
  }
  .service-card {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-stats {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    row-gap:80px;
    margin-top:30px;
  }

.stat-number {
padding:26px 22px;
}

.stat-box {
width:130px;
height:130px;
}

.stat-box p {
margin-top:13px;
}
}

/* App Solutions Section */
.apps-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background-image: url(../images/App-section-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.apps-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

@media(max-width:600px) {
.apps-header {
margin-bottom:30px;
}
}

.apps-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #facc61;
  margin-bottom: 20px;
}

.apps-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-family-secondary);
}

.apps-slider-container {
  position: relative;
  z-index: 2;
}

.apps-slider-wrapper {
  overflow: hidden;
  position: relative;
  padding: 14px 0;
}

.apps-slider-wrapper::before,
.apps-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.apps-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.apps-slider-track-left {
  animation: apps-slideLeft 40s linear infinite;
}

.apps-slider-track-right {
  animation: apps-slideRight 40s linear infinite;
}

@keyframes apps-slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes apps-slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* .apps-slider-wrapper:hover .apps-slider-track {
  animation-play-state: paused;
} */

.apps-card {
  border-radius: 24px;
  width: 380px;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* .apps-card:hover {
  transform: translateY(-5px);
} */

@media (max-width: 1024px) {
  .apps-header h2 {
    font-size: 40px;
  }

  .apps-card {
    width: 340px;
  }
}

@media (max-width: 768px) {
  .apps-section {
    padding: 80px 0;
  }

  .apps-header h2 {
    font-size: 36px;
  }

  .apps-header p {
    font-size: 16px;
    padding: 0 20px;
  }

  .apps-card {
    width: 300px;
  }

  .apps-slider-track {
    gap: 20px;
  }

  .apps-slider-track-left {
    animation: apps-slideLeft 30s linear infinite;
  }

  .apps-slider-track-right {
    animation: apps-slideRight 30s linear infinite;
  }
}

@media (max-width: 480px) {
  .apps-section {
    padding: 60px 0;
  }

  .apps-header h2 {
    font-size: 28px;
  }

  .apps-header p {
    font-size: 14px;
  }

  .apps-card {
    width: 260px;
  }

  .apps-slider-wrapper::before,
  .apps-slider-wrapper::after {
    width: 80px;
  }
}

.apps-slider-track {
  will-change: transform;
}

.apps-card {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .apps-slider-track-left,
  .apps-slider-track-right {
    animation: none;
  }

  .apps-card:hover {
    transform: none;
  }
}

/* ===============================
   WHY CHOOSE US SECTION
================================ */
.whyus-section {
  padding: 72px 20px;
  background: #ffffff;
}

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

.whyus-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.whyus-title span {
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.whyus-subtitle {
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  font-family: var(--font-family-secondary);
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.whyus-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 38px 18px 24px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whyus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.whyus-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -2%;
}

.whyus-icon {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.whyus-icon img {
  height: 30px;
  width: 30px;
}

@media (max-width: 1100px) {
  .whyus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .whyus-title {
    font-size: 28px;
  }

  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whyus-card {
    padding-top: 42px;
  }
}

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

  .whyus-card {
    padding: 44px 16px 22px;
  }

  .whyus-icon {
    width: 48px;
    height: 48px;
    top: -24px;
    font-size: 20px;
  }
}

/*techstack section*/
.techstack-section {
  padding: 80px 20px;
  /* background: radial-gradient(
    circle at top,
    #eef2ff 0%,
    #f5f3ff 40%,
    #ffffff 100%
  ); */
  background: url("../images/technology-section-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

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

.techstack-eyebrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: var(--font-family-secondary);
}

.techstack-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 14px;
}

.techstack-title span {
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.techstack-desc {
  max-width: 800px;
  margin: 0 auto 56px;
  font-size: 16px;
  line-height: 1.7;
  color: #1f2937;
  font-weight: 400;
  font-family: var(--font-family-secondary);
}

.techstack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  justify-items: center;
}

.techstack-card {
  width: 179px;
  height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.techstack-card img {
  width: 179px;
  height: 165px;
  object-fit: contain;
  margin-bottom: 10px;
}

.techstack-card p {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

@media (max-width: 1200px) {
  .techstack-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .techstack-title {
    font-size: 28px;
  }

  .techstack-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .techstack-card {
    width: 130px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .techstack-grid {
    grid-template-columns: repeat(3, 1fr);
    gap:0px;
    place-items:center;
  }

  .techstack-card {
    width: 110px;
    height: 120px;
  }
}

@media (max-width: 340px){
.techstack-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:0px;
    place-items:center;
  }

}

/* ================================
   TESTIMONIAL SECTION
================================ */

.utest-section {
  padding: 72px 20px;
  background: #ffffff;
}

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

.utest-subtitle {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(180deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: var(--font-family-secondary);
}

.utest-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.2;
}

.utest-gradient-text {
  background: linear-gradient(90deg, #02aaea, #bc22fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.utest-desc {
  max-width: 720px;
  margin: 0 auto 42px;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  font-family: var(--font-family-secondary);
  font-weight: 500;
}

.utest-slider-shell {
  position: relative;
  max-width: 75%;
  margin: 0 auto;
  background: #ffffff;
}

.utest-viewport {
  overflow: hidden;
  width: 100%;
  background: #ffffff;
  padding: 14px 0 36px;
}

.utest-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s ease;
}

.utest-card {
  flex: 0 0 calc((100% - 36px) / 3);
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px 30px;
  text-align: left;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(17, 24, 39, 0.1);
}

.utest-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.utest-role {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.utest-stars {
  font-size: 16px;
  letter-spacing: 1px;
  color: #fbbf24;
  white-space: nowrap;
}

.utest-quote {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 14px;
  font-family: var(--font-family-secondary);
}

.utest-person {
  display: flex;
  justify-content: flex-end;
}

.utest-name {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

.utest-avatar {
  position: absolute;
  left: 22px;
  bottom: -22px;
  width: 46px;
  height: 46px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.utest-avatar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.utest-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  color: #6a63ff;
  background: #ffffff;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.25s ease;
}

.utest-nav-prev {
  left: -33px;
}

.utest-nav-next {
  right: -33px;
}

@media (max-width: 1024px) {
  .utest-slider-shell {
    max-width: 90%;
  }

  .utest-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .utest-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .utest-slider-shell {
    max-width: 100%;
  }

  .utest-card {
    flex: 0 0 100%;
    padding: 20px 50px 30px;
  }

  .utest-title {
    font-size: 24px;
  }

  .utest-nav-prev {
    left: -10px;
  }

  .utest-nav-next {
    right: -10px;
  }
}

/*industries we serve section */
.industries-section {
  padding: 80px 20px;
  /* background: radial-gradient(
    circle at top,
    #eef2ff 0%,
    #f5f3ff 45%,
    #ffffff 100%
  ); */
  background: linear-gradient(90deg, #dbd6fa, #f7f7fe);
}

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

.industries-eyebrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #02aaea 0%, #bc22fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: var(--font-family-secondary);
}

.industries-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.industries-desc {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  font-family: var(--font-family-secondary);
  font-weight: 500;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.industries-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.industries-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.industries-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.industries-text {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industries-title {
    font-size: 30px;
  }
}

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

  .industries-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:16px;
  }

  .industries-card {
    padding: 12px 10px;
gap:8px;
  }

.industries-text {
font-size:14px;
}
}

@media (max-width: 340px) {
  .industries-grid {
    grid-template-columns: 1fr;

  }
}


/*contact form section*/
.contact-section {
  padding: 0;
  background: #ffffff;
}

.contact-wrapper {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  padding: 60px 60px 60px 80px; /* no left gap from screen */
  background: linear-gradient(90deg, #02aaea, #bc22fa);
  color: #ffffff;
}

.contact-badge {
  font-size: 20px;
  letter-spacing: 0%;
  font-weight: 700;
  display: block;
  font-family: var(--font-family-secondary);
  margin-bottom: 10px;
  text-align: center;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.6;
  font-family: var(--font-family-secondary);
  text-align: center;
}

.contact-details {
  margin-top: 28px;
  text-align: center;
}

.contact-details p {
  font-size: 13px;
  margin-bottom: 16px;
  font-family: var(--font-family-secondary);
}

.contact-form-box {
  padding: 60px 30px;
  max-width: 100%;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  font-size: 14px;
  color: #4b5563;
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-family-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 4px;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #6366f1;
}

.form-group small {
  color: red;
  font-size: 12px;
  display: none;
  margin-top: 6px;
}

.fcf-submit-btn {
  display: flex;
  margin: auto;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background-image:
    linear-gradient(135deg, #f8e9fe, #eef8fd),
    linear-gradient(90deg, #02aaea, #bc22fa);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-size: 16px;
  font-weight: 500;
  color: #6162fb;
  cursor: pointer;
  font-family: var(--font-family-secondary);
}

.fcf-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form-box {
    padding: 36px;
  }
}

/* certificate logos section */
.certificate-logos-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  padding-top:0px;
}

@media (min-width: 900px) {
.certificate-logos-section {
padding-top:32px;
}
}

@media (max-width: 767px) {
  .certificate-logos-section {
    display: flex;
    justify-content: center;
    padding: 36px 30px;
    padding-top:0px;
  }
}

/*footer section*/

.site-footer {
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #a855f7 100%);
  color: #ffffff;
  padding-block: 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right {
  text-align: right;
}

.footer-copy {
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.95;
  font-family: var(--font-family-secondary);
}

.footer-links {
  font-size: 14px;
  font-family: var(--font-family-secondary);
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

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

  .footer-right {
    text-align: center;
  }
}

/*popupu form*/

/* ================= POPUP MODAL ================= */
/* ================= POPUP MODAL ================= */
.popup-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: 0.3s ease;
  z-index: 9999;
  padding: 16px; /* important for mobile */
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-form-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: 28px 28px 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: popupSlideUp 0.4s ease;
  max-height: 90vh; /* mobile scroll fix */
  overflow-y: auto;
}

/* Animation */
@keyframes popupSlideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Title */
.popup-form-box h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.popup-form-box p {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #f3f4f6;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 480px) {
.popup-close {
width:24px;
height:24px;
}
}

/* Form fields */
.popup-group {
  margin-bottom: 14px;
}

.popup-group label {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  display: block;
  margin-bottom: 4px;
}

.popup-group input,
.popup-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

.popup-group input:focus,
.popup-group textarea:focus {
  border-color: #6366f1;
}

.error-msg {
  font-size: 12px;
  color: red;
  display: none;
  margin-top: 4px;
}

/* Button */
.popup-submit-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #02aaea, #bc22fa);
  margin-top: 10px;
}

.popup-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

/* Tablet */
@media (max-width: 768px) {
  .popup-form-box {
    max-width: 420px;
    padding: 22px;
  }

  .popup-form-box h2 {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .popup-overlay {
    align-items: center; /* bottom popup like app */
  }

  .popup-form-box {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 20px;
    animation: popupSlideUpMobile 0.35s ease;
  }

  @keyframes popupSlideUpMobile {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .popup-form-box h2 {
    font-size: 18px;
  }

  .popup-form-box p {
    font-size: 13px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .popup-form-box {
    padding: 16px;
  }

  .popup-group input,
  .popup-group textarea {
    font-size: 13px;
  }
}
