/* =========================================
   FLIGHT BOOKING APP DEVELOPMENT - STYLE
   ========================================= */

/* --- Variables & Core --- */
:root {
  --primary: #0F172A;
  --accent: #FF6B6B;
  --accent-light: #FF8E8E;
  --accent-soft: #FFF1F1;
  --secondary: #FF4757;
  --bg-light: #FDF2F2;
  --gray: #4B5563;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
  --dark-glass: rgba(15, 23, 42, 0.85);
  --glass: rgba(255, 255, 255, 0.85);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --radius-xl: 32px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  padding-left: 5%;
  padding-right: 5%;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
}

h1 span {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

p {
  font-size: 1.05rem;
  color: #b1b1b1;
}

/* --- Layout Utils --- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.items-center {
  align-items: center;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

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

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

.bg-light {
  background: var(--bg-light);
}

.bg-dark {
  background: var(--primary);
  color: var(--white);
}

.py-100 {
  padding: 100px 0;
}

section {
  padding: 100px 0;
  border-bottom: 1px solid var(--light-gray);
}

.pt-0 {
  padding-top: 0;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-40 {
  margin-top: 40px;
}

/* --- Badges & Icons --- */
.badge-title {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.badge-title.light {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-light);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--primary);
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--light-gray);
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  margin-left: 15px;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* --- Hero --- */
.hero-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: radial-gradient(circle at top right, var(--accent-soft), var(--white));
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--accent-light);
  filter: blur(120px);
  top: -200px;
  right: -200px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
  margin-bottom: 25px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.hero-text {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

.floating-card {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: float 6s infinite ease-in-out;
}

.c1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
  color: var(--accent);
}

.c2 {
  bottom: 15%;
  right: -20px;
  animation-delay: 2s;
  color: var(--secondary);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* --- Trusted Section --- */
.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.logo-item img {
  height: 35px;
  filter: grayscale(1) opacity(0.4);
  transition: 0.3s;
}

.logo-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

/* --- Feature Tabs (AI Section) --- */
.features-section {
  padding: 60px 0 !important; /* Overrides default huge vertical section padding */
}

.features-row {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.features-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 10;
  width: 100%;
  margin-bottom: 25px; /* compact margin */
}

.feature-tab {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1 1 auto;
}

.feature-tab h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  color: #1e3a8a;
  font-size: clamp(0.7rem, 0.9vw, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
}

.feature-tab:hover h3 {
  background: #545ced;
  color: #ffffff;
  border-color: #545ced;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(84, 92, 237, 0.35);
}

.feature-tab p {
  position: absolute;
  left: 50%;
  top: 70px; /* Reduced vertical gap */
  width: 90%;
  max-width: 800px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  text-align: center;
}

.feature-tab:hover p {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.features-visual {
  width: 100%;
  margin-top: 110px; /* Increased to ensure clearance for multi-line text */
  display: flex;
  justify-content: center;
  z-index: 1;
}

.features-visual img {
  max-width: 500px; /* Further reduces the image bounding box footprint implicitly reducing height */
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@media (max-width: 992px) {
  .features-row {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .feature-tab p {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    transform: none !important;
    text-align: center;
    margin-top: 15px;
    display: none;
  }
  .feature-tab:hover p {
    display: block;
  }
  .features-visual {
    position: relative;
    width: 100%;
    margin-top: 40px;
  }
}

/* --- Panel Grid (Features) --- */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.panel-item {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--light-gray);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.panel-item::before,
.panel-item::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--accent);
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0.05;
}

.panel-item::before {
  top: -75px;
  left: -75px;
}

.panel-item::after {
  bottom: -75px;
  right: -75px;
}

.panel-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.panel-item:hover::before,
.panel-item:hover::after {
  transform: scale(8);
  opacity: 1;
}

@keyframes iconShake {
  0%, 100% { transform: scale(1.2) rotate(0deg); }
  20% { transform: scale(1.2) rotate(-15deg); }
  40% { transform: scale(1.2) rotate(15deg); }
  60% { transform: scale(1.2) rotate(-15deg); }
  80% { transform: scale(1.2) rotate(15deg); }
}

.panel-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.panel-item:hover i {
  transform: scale(1.2);
  color: var(--white);
  animation: iconShake 0.5s ease-in-out;
}

.panel-item h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--primary);
  min-height: 2.4em;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.panel-item:hover h4 {
  color: var(--white);
}

.panel-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.panel-item:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.panel-item.dark {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.05);
}

.panel-item.dark h4,
.panel-item.dark p {
  color: var(--white);
}

.panel-item.dark p {
  opacity: 0.7;
}

/* --- Info Section (What Is) Re-Design --- */
.info-section {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.info-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  transition: var(--transition);
}

.info-visual img:hover {
  transform: scale(1.05);
}

.info-content h2 {
  font-size: 2.2rem;
  margin-top: 15px;
  margin-bottom: 20px;
}

.info-content h2 span {
  color: var(--accent);
}

.info-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .info-visual {
    margin-bottom: 30px;
  }

  .info-visual img {
    max-width: 100%;
  }

  .info-content {
    text-align: center;
  }
}

/* --- Choose Us Grid --- */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.choose-item {
  position: relative;
  padding: 40px 30px;
  border-radius: var(--radius-xl);
  background: var(--bg-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--light-gray);
  text-align: left;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}

.choose-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.choose-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.choose-item:hover::before {
  height: 100%;
}

.choose-item i {
  position: relative;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.choose-item:hover i {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-10px) rotate(360deg);
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.4);
}

.choose-item h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--primary);
  transition: color 0.4s ease;
}

.choose-item:hover h4 {
  color: var(--white);
}

.choose-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  transition: color 0.4s ease;
}

.choose-item:hover p {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Invest Grid --- */
.invest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.invest-card {
  flex: 1 1 200px;
  max-width: 240px;
  background: var(--white);
  padding: 40px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.invest-card:hover {
  transform: translateY(-10px);
  background: var(--accent);
  border-color: var(--accent);
}

.invest-card:hover h3,
.invest-card:hover p,
.invest-card:hover i {
  color: var(--primary) !important;
}

.invest-card .icon-box {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

/* --- Timeline Process --- */
.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-gray);
  transform: translateX(-50%);
  z-index: 1;
}

.process-step {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 50px;
  z-index: 2;
}

.process-step:nth-child(odd) {
  justify-content: flex-start;
}

.process-step:nth-child(even) {
  justify-content: flex-end;
}

.step-num {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 0 10px var(--white);
  transform: translateX(-50%);
  border: 4px solid var(--accent-soft);
}

.step-content {
  width: 45%;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.process-step:nth-child(odd) .step-content {
  text-align: right;
}

.process-step:hover .step-content {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.step-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-timeline::before {
    left: 20px;
  }

  .process-step {
    justify-content: flex-start !important;
    padding-left: 50px;
  }

  .step-num {
    left: 20px !important;
    transform: translateX(-50%);
  }

  .step-content {
    width: 100%;
    text-align: left !important;
  }
}

/* --- Monetization --- */
.monetize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.monetize-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.monetize-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
  border-color: var(--accent);
}

.monetize-card i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

/* --- Benefits Section --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.benefit-item h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* --- FAQ --- */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-q {
  padding: 25px 35px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  font-size: 1.1rem;
  color: var(--primary);
}

.faq-q:hover {
  background: var(--accent-soft);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 35px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-a {
  max-height: 500px;
  padding-bottom: 30px;
}

.faq-item.active .faq-q i {
  transform: rotate(180deg);
  color: var(--accent);
}

/* --- Final CTA --- */
.final-cta {
  padding: 100px 0;
  background: radial-gradient(circle at bottom left, var(--accent-soft), var(--white));
}

.cta-box {
  background: var(--primary);
  padding: 70px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--white);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.3);
}

.cta-box h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-box p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 40px;
  color: var(--white);
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero-content {
    text-align: center;
    margin-bottom: 60px;
  }

  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .features-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .invest-card {
    flex: 0 1 calc(33% - 20px);
  }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-secondary {
    margin-left: 0;
  }

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

  .invest-card {
    flex: 0 1 calc(50% - 20px);
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-btns {
    flex-direction: column;
  }
}

/* --- Grid Centering --- */
.grid-center {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 25px !important;
  justify-content: center !important;
}

.grid-center>* {
  flex: 1 1 300px !important;
  max-width: 400px !important;
}

/* --- Advanced Features Polish (Merged Above) --- */
/* Technology Stack Section */
.tech-stack-section {
  padding: 80px 20px;
  background-color: #f9f9ff;
  text-align: center;
}

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

.tech-header {
  margin-bottom: 50px;
}

.tech-subtitle {
  color: #0051C8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 14px;
}

.tech-main-title {
  font-size: 36px;
  color: #1a1a2e;
  margin-bottom: 20px;
  font-weight: 700;
}

.tech-desc {
  max-width: 700px;
  margin: 0 auto;
  color: #5E6570;
  font-size: 18px;
  line-height: 1.6;
}

/* Tech Stack Marquee Styling */
.tech-marquee-wrapper {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.tech-marquee {
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 10px 0;
}

.tech-marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.tech-marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: 30px;
  min-width: max-content;
}

.tech-marquee.left .tech-marquee-track {
  animation: scrollLeft 40s linear infinite;
}

.tech-marquee.right .tech-marquee-track {
  animation: scrollRight 40s linear infinite;
}

.tech-marquee:hover .tech-marquee-track {
  animation-play-state: paused;
}

.tech-marquee-item {
  background: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  min-width: max-content;
}

.tech-marquee-item i {
  font-size: 26px;
}

.tech-marquee-item img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.tech-marquee-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(66, 133, 244, 0.15);
  border-color: rgba(66, 133, 244, 0.3);
  color: #0051C8;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

@keyframes scrollRight {
  0% { transform: translateX(calc(-50% - 15px)); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .tech-marquee-item {
    font-size: 16px;
    padding: 14px 28px;
  }
  .tech-main-title {
    font-size: 28px;
  }
}
/* ============================================
   Social Proof - Counter Section
   ============================================ */
.counter-section {
  padding: 80px 20px;
  background: #ffffff;
  position: relative;
  z-index: 10;
}

.counter-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  background: #fbb6b6;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.counter-item {
  text-align: center;
  border-right: 1px solid #efefef;
  padding: 10px;
}

.counter-item:last-child {
  border-right: none;
}

.counter-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #FF5F64;
  margin-bottom: 5px;
}

.counter-text {
  font-size: 16px;
  color: #5E6570 !important;
  font-weight: 500 !important;
  margin: 0 !important;
  font-family: 'Poppins', sans-serif !important;
}

.rating-box {
  color: #FF5F64;
  font-size: 14px;
  margin-bottom: 5px;
}

/* Responsive for Counter Section */
@media screen and (max-width: 992px) {
  .counter-container {
     grid-template-columns: repeat(2, 1fr);
  }
  .counter-item {
    border-right: none;
  }
}

@media screen and (max-width: 480px) {
  .counter-container {
     grid-template-columns: 1fr;
  }
}
.monetize{
  padding-bottom: 20px;
}
