* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  padding-left: 5%;
  padding-right: 5%;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  /* 🚫 Prevent horizontal scroll */
}


h1,
h2,
h3 {
  font-family: 'poppins', sans-serif;
}

p {
  font-family: 'roboto', sans-serif;
  line-height: 1.6;
}

button {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

/* Header Section */
/* Header */
header {
  background-color: #f9f9ff;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  width: 124px !important;
  height: auto;
}

.logo-text {
  background: linear-gradient(45deg, #0051C8, #ea4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
  font-weight: bold;
}

.logo-subtitle {
  color: #666;
  font-size: 14px;
  font-weight: normal;
  margin-left: 5px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0051C8;
}

.nav-link.active {
  color: #333;
  font-weight: 500;
}

/* Dropdown Arrow */
.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  list-style: none;
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background-color: #f8f9ff;
  color: #0051C8;
  padding-left: 25px;
}

/* Contact Button */
.contact-btn {
  background: transparent;
  border: 2px solid #0051C8;
  color: #0051C8;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.contact-btn:hover {
  background-color: #0051C8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-toggle.active .hamburger:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Tablet Responsive */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-link {
    font-size: 15px;
  }

  .contact-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  header {
    padding: 0 15px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 0;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    margin: 10px 0;
  }

  .nav-link {
    padding: 15px 20px;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9ff;
    margin-top: 10px;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.dropdown-open .dropdown {
    max-height: 300px;
  }

  .dropdown-link {
    padding: 10px 40px;
    font-size: 14px;
  }

  .dropdown-link:hover {
    padding-left: 40px;
    background-color: #f0f0ff;
  }

  /* FIXED Contact Button for mobile */
  .contact-btn {
    margin: 10px auto;
    padding: 8px 18px;
    font-size: 14px;
    display: block;
    text-align: center;
    width: auto;
    min-width: unset;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  header {
    padding: 0 15px;
  }

  nav {
    height: 60px;
  }

  .nav-menu {
    top: 60px;
    max-height: calc(100vh - 60px);
  }

  .logo-subtitle {
    display: none;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 15px;
  }

  /* Contact Button smaller */
  .contact-btn {
    padding: 7px 16px;
    font-size: 13px;
    margin: 8px auto;
    width: auto;
  }
}

/* Very Small Screens */
@media screen and (max-width: 360px) {
  header {
    padding: 0 10px;
  }

  .logo-text {
    font-size: 16px;
  }

  .logo img {
    width: 100px !important;
    /* shrink logo a bit */
  }

  .hamburger {
    width: 20px;
    height: 2px;
  }
}

/* Focus States */
.nav-link:focus,
.dropdown-link:focus,
.contact-btn:focus,
.mobile-toggle:focus {
  outline: 2px solid #0051C8;
  outline-offset: 2px;
}


/* Background Wave */
.wave {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.wave img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Mobile Image */
.mobile {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 45%;
}

.mobile img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

/* Main Content Container */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  min-height: 100vh;
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;
}

.heading {
  font-family: 'Poppins', sans-serif;
  color: #E0A123;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.description {
  font-family: 'Roboto', sans-serif;
  color: #5E6570;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #E0A123;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.cta-button:hover {
  background-color: #c8921f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(224, 161, 35, 0.3);
}

/* Tablet Styles - 768px to 1024px */
@media screen and (max-width: 1024px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .logo img {
    width: 110px;
  }

  .nav-links ul li {
    margin: 0 0.75rem;
  }

  .nav-links ul li a {
    font-size: 0.9rem;
  }

  .mobile {
    right: 1rem;
    max-width: 40%;
  }

  .container {
    padding: 4.5rem;
  }

  .heading {
    font-size: 3.5rem;
  }

  .description {
    font-size: 1.125rem;
    max-width: 550px;
  }


}

/* Mobile Styles - 768px and below */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background: rgba(255, 244, 222, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
  }

  .nav-links.active {
    right: 0;
    visibility: visible;
    opacity: 1;
  }

  .nav-links ul {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 300px;
  }

  .nav-links ul li {
    margin: 1rem 0;
    padding: 0;
    width: 100%;
  }

  .nav-links ul li a {
    font-size: 1.25rem;
    display: block;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-links ul li a:hover {
    background-color: rgba(224, 161, 35, 0.1);
  }

  .nav-links .contact-btn {
    position: static;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    display: block;
  }

  .mobile {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    text-align: center;
    max-width: 80%;
    margin: 5rem auto 0;
  }

  .mobile img {
    max-height: 300px;
  }

  .wave {
    display: none;
  }

  .container {
    padding: 6rem 1.5rem 2rem;
    text-align: center;
    align-items: center;
  }

  .heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .description {
    font-size: 1rem;
    max-width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }



  .logo img {
    width: 90px;
  }

  nav {
    padding: 1rem;
  }
}

/* Small Mobile - 480px and below */
@media screen and (max-width: 480px) {
  .container {
    padding: 2rem 1rem 4rem;
  }

  .heading {
    font-size: 2rem;
  }

  .description {
    font-size: 0.9rem;
  }



  .mobile img {
    max-height: 250px;
  }

  .logo img {
    width: 80px;
  }

  .nav-links ul li a {
    font-size: 1.125rem;
  }
}

/* Very Small Mobile - 320px and below */
@media screen and (max-width: 320px) {
  .heading {
    font-size: 1.75rem;
  }

  .description {
    font-size: 0.875rem;
  }



  .mobile img {
    max-height: 200px;
  }

  .container {
    padding: 4rem 0.75rem 1.5rem;
  }
}

/* Large Desktop - 1400px and up */
@media screen and (min-width: 1400px) {
  .container {
    padding: 3rem;
  }

  .heading {
    font-size: 4.5rem;
  }

  .description {
    font-size: 1.375rem;
    max-width: 700px;
  }



  .mobile {
    max-width: 50%;
  }

  .logo img {
    width: 150px;
  }
}

/*Second section*/
.uber-clone-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  background-color: #fff;
  /* optional */
  color: #111827;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  width: 100%;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}

.text-contents {
  text-align: left;
}

.text-contents h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111827;
}

.text-contents p {
  font-size: 18px;
  line-height: 1.6;
  color: #5E6570;
  margin-bottom: 15px;
}

.phone-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 30px;
  display: block;
  margin: 0 auto;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
  .content-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .text-contents {
    text-align: center;
  }

  .text-contents h1 {
    font-size: 32px;
  }

  .text-contents p {
    font-size: 16px;
  }

  .phone-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .uber-clone-section {
    padding: 30px 15px;
  }

  .text-contents h1 {
    font-size: 28px;
  }

  .text-contents p {
    font-size: 15px;
  }

  .phone-image {
    max-width: 350px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .uber-clone-section {
    padding: 30px 10px;
  }

  .text-contents h1 {
    font-size: 24px;
  }

  .text-contents p {
    font-size: 14px;
  }

  .phone-image {
    max-width: 280px;
    border-radius: 15px;
  }
}


/*Benefits section*/
.benefits-section {
  text-align: center;
  padding: 20px 20px;
  background-color: #ffffff;
  position: relative;
}

.curve-container {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -64px;
}

.curve-image {
  height: auto;
  width: 40%;
  display: inline-block;
  margin-bottom: -35px;
}

.section-benefits-title {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 3px;
}

.section-subwords {
  font-size: 16px;
  font-weight: normal;
  color: #747980;
  margin-bottom: 30px;
}

.benefits-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 20px;
  border: 2px solid #FFF3DB;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  flex: 1 1 calc(33% - 40px);
  max-width: 300px;
  min-width: 280px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefit-card .icon {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFAF0;
  border-radius: 10px;
  margin-bottom: 15px;
}

h3 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 10px;
}

p {
  font-size: 0.95rem;
  color: #38404A;
  line-height: 1.6;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* Tablets */
@media (max-width: 1024px) {
  .section-benefits-title {
    font-size: 38px;
  }

  .benefits-container {
    gap: 40px;
  }

  .benefit-card {
    flex: 1 1 calc(45% - 20px);
    max-width: 100%;
  }

  .curve-image {
    width: 60%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section-benefits-title {
    font-size: 28px;
  }

  .section-subwords {
    font-size: 14px;
  }

  .benefits-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .benefit-card {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .curve-image {
    width: 80%;
  }
}


/*third section*/

/*Section Wrapper*/
.ai-container1 {
  max-width: 1440px;
  margin: 40px auto;
  padding: 20px 5%;
}

.top-title1 {
  color: #E0A123;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.ai-container1 p {
  /* margin-bottom: 40px; */
  color: #5E6570;
}

.features-section1 {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.tabs-container1 {
  flex: 1;
  max-width: 400px;
}

.tab {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.tab.active {
  background-color: #ffa500;
  color: white;
}

.tab:hover:not(.active) {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-icon {
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 165, 0, 0.1);
  margin-right: 15px;
  flex-shrink: 0;
}

.tab.active .tab-icon {
  background-color: white;
  width: 40px;
  height: 40px;
}

.tab-content {
  margin-left: 15px;
  text-align: left;
}

.tab-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}

.tab-desc {
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.tab.active .tab-desc {
  display: block;
}

.image-container {
  flex: 1;
  position: relative;
  margin-left: 80px;
}

.image-container img {
  width: 90%;
  height: auto;
  border-radius: 15px;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}

.content-area {
  margin-top: 20px;
  padding: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: none;
}

.content-area.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: 26px;
  }

  .features-section1 {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .tabs-container1 {
    max-width: 100%;
    width: 100%;
  }

  .image-container {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .top-title1 {
    font-size: 12px;
  }

  .tab {
    padding: 15px;
  }

  .tab-title {
    font-size: 16px;
  }

  .tab-desc {
    font-size: 13px;
  }

  .features-section1 {
    gap: 20px;
  }

  .image-container img {
    border-radius: 10px;
  }
}


/*How It Work section*/
.work-section {
  max-width: 1440px;
  margin: 50px auto;
  margin: 40px auto;
  padding: 0 5%;
}

.work-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  max-width: 1440px;
  margin: 0 auto;
}

/*Text Content*/
.text-content {
  text-align: left;
}

.subheading-work {
  color: #E0A123;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading-work {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.4;
}

.description-work {
  font-size: 18px;
  color: #5E6570;
  margin-bottom: 20px;
  line-height: 1.6;
}

/*Offer List*/
.work-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-list1st-box li {
  /* background-color: #FFFAF0; */
  padding: 20px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.work-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  cursor: pointer;
}

.list-content p {
  color: #38404A;
  display: flex;
  flex-direction: column;
  color: 38404A;
}

/*Image Section*/
.work-image {
  flex: 1;
  max-width: 600px;
  display: flex;
  align-items: right;
}

.work-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.work-section {
  max-width: 1440px;
  margin: 40px auto;
  display: flex;
  align-items: flex-start;
}

.work-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Text Content */
.text-content {
  text-align: left;
}

.subheading-work {
  color: #E0A123;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading-work {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.4;
}

.description-work {
  font-size: 18px;
  color: #5E6570;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Offer List */
.work-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-list1st-box li {
  /* background-color: #FFFAF0; */
  padding: 20px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.work-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  cursor: pointer;
}

.list-content p {
  color: #38404A;
  display: flex;
  flex-direction: column;
}

/* Image Section */
.work-image {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: flex-end;
}

.work-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ------------ RESPONSIVE ------------ */

/* Tablet */
@media (max-width: 1024px) {
  .work-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .text-content {
    text-align: center;
  }

  .main-heading-work {
    font-size: 28px;
  }

  .description-work {
    font-size: 16px;
  }

  .work-image {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .work-section {
    margin: 30px auto;
    padding: 0 15px;
  }

  .main-heading-work {
    font-size: 24px;
    line-height: 1.3;
  }

  .description-work {
    font-size: 15px;
    line-height: 1.5;
  }

  .work-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .work-list1st-box li {
    padding: 15px;
  }

  .work-image img {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
}


/*earnings section*/
.earning-section {
  max-width: 1440px;
  margin: 40px auto;
  display: flex;
  align-items: flex-start;
}

.earning-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Text Content */
.text-content {
  text-align: left;
}

.subheading-earning {
  color: #E0A123;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading-earning {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.4;
}

.description-earning {
  font-size: 18px;
  color: #5E6570;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Offer List */
.earning-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.earning-list1st-box li {
  /* background-color: #FFFAF0; */
  padding: 20px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.earning-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  cursor: pointer;
}

.list-content p {
  color: #38404A;
  display: flex;
  flex-direction: column;
}

/* Image Section */
.earning-image {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: flex-end;
}

.earning-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ------------ RESPONSIVE ------------ */

/* Tablet */
@media (max-width: 1024px) {
  .earning-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .text-content {
    text-align: center;
  }

  .main-heading-earning {
    font-size: 28px;
  }

  .description-earning {
    font-size: 16px;
  }

  .earning-image {
    justify-content: center;
  }
}

/* Mobile */
/* @media (max-width: 1440px) {
  .earning-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 35px;
  }
  .earning-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  max-width: 1440px;
  margin: 0 auto;
}
} */


@media (max-width: 768px) {
  .earning-section {
    margin: 30px auto;
    padding: 0 15px;
  }

  .main-heading-earning {
    font-size: 24px;
    line-height: 1.3;
  }

  .description-earning {
    font-size: 15px;
    line-height: 1.5;
  }

  .earning-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .earning-list1st-box li {
    padding: 15px;
  }

  .earning-image img {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
}


/* Features section*/
/* Base Styles - Mobile First Approach */
.benefits-section {
  margin: 0 auto;
  padding: 40px 15px;
  text-align: center;
  max-width: 100%;
  overflow-x: hidden;
}

.curve-container2 {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -30px;
}

.curve-image2 {
  height: auto;
  width: 40%;
  max-width: 200px;
  display: inline-block;
  margin-bottom: -15px;
}

/* Section Title and Description */
.section-title-features {
  font-size: 28px;
  color: #111827;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.2;
  padding: 0 10px;
}

.section-description-features {
  font-size: 14px;
  color: #666;
  max-width: 90%;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  text-align: center;
  padding: 0 10px;
}

/* Features Grid - Mobile First */
.box-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 15px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.box {
  background-color: #fff;
  border: 2px solid #FFF3DB;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.icon {
  background-color: #FFFAF0;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 15px 0;
  flex-shrink: 0;
}

.icon img {
  width: 22px;
  height: 22px;
}

.box h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #111827;
  line-height: 1.3;
}

.box p {
  font-size: 14px;
  color: #38404A;
  margin: 0;
  line-height: 1.6;
}

/* Small Mobile Devices (320px and up) */
@media screen and (min-width: 320px) {
  .benefits-section {
    padding: 35px 20px;
  }

  .section-title-features {
    font-size: 32px;
  }

  .section-description-features {
    font-size: 15px;
    max-width: 95%;
  }

  .box-section {
    padding: 20px;
    gap: 25px;
  }

  .box {
    padding: 24px;
  }

  .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }

  .icon img {
    width: 24px;
    height: 24px;
  }

  .box h3 {
    font-size: 19px;
  }

  .box p {
    font-size: 15px;
  }
}

/* Large Mobile / Small Tablet (480px and up) */
@media screen and (min-width: 480px) {
  .benefits-section {
    padding: 40px 25px;
  }

  .section-title-features {
    font-size: 36px;
    margin-bottom: 18px;
  }

  .section-description-features {
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 35px;
  }

  .curve-image2 {
    width: 35%;
    margin-bottom: -20px;
  }

  .curve-container2 {
    margin-bottom: -40px;
  }
}

/* Tablet Portrait (768px and up) */
@media screen and (min-width: 768px) {
  .benefits-section {
    padding: 50px 30px;
  }

  .section-title-features {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .section-description-features {
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 40px;
  }

  .curve-image2 {
    width: 30%;
    margin-bottom: -22px;
  }

  .curve-container2 {
    margin-bottom: -50px;
  }

  .box-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 25px;
  }

  .box {
    padding: 28px;
  }

  .box h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .box p {
    font-size: 16px;
  }

  .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
}

/* Tablet Landscape / Small Desktop (1024px and up) */
@media screen and (min-width: 1024px) {
  .benefits-section {
    padding: 60px 40px;
  }

  .section-title-features {
    font-size: 48px;
    margin-bottom: 22px;
  }

  .section-description-features {
    font-size: 17px;
    max-width: 650px;
    margin-bottom: 45px;
  }

  .curve-image2 {
    width: 25%;
    margin-bottom: -25px;
  }

  .curve-container2 {
    margin-bottom: -60px;
  }

  .box-section {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    padding: 30px;
  }

  .box {
    padding: 32px;
    border-radius: 20px;
  }

  .icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .icon img {
    width: 26px;
    height: 26px;
  }

  .box h3 {
    font-size: 21px;
    margin-bottom: 16px;
  }

  .box p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Large Desktop (1200px and up) */
@media screen and (min-width: 1200px) {
  .benefits-section {
    padding: 70px 50px;
  }

  .section-title-features {
    font-size: 52px;
  }

  .section-description-features {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 50px;
  }

  .box-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
  }

  .box {
    padding: 36px;
  }

  .box h3 {
    font-size: 22px;
  }

  .box p {
    font-size: 17px;
  }
}

/* Extra Large Desktop (1440px and up) */
@media screen and (min-width: 1440px) {
  .benefits-section {
    padding: 50px 60px;
  }

  .section-title-features {
    font-size: 56px;
  }

  .section-description-features {
    font-size: 19px;
    max-width: 750px;
  }

  .box-section {
    max-width: 1300px;
    gap: 45px;
  }

  .box {
    padding: 40px;
  }
}

/* High Resolution Displays */
@media screen and (min-width: 1920px) {
  .benefits-section {
    padding: 90px 80px;
  }

  .box-section {
    max-width: 1400px;
  }
}

/*Extra-Addons section*/
.addons-section {
  text-align: center;
  padding: 0 5%;
  background-color: #fff;
}

.section-title2 {
  font-size: 2.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: #747980;
  margin-bottom: 28px;
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4px;
}

.curve-container3 {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -36px;
}

.curve-image3 {
  width: 60%;
  height: auto;
  display: inline-block;
  margin-bottom: -20px;
}

.addon-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.13);
}

.addon-image {
  width: 100%;
  max-height: 110px;
  object-fit: cover;
  border-radius: 5px;
}

.addon-title {
  font-size: 1rem;
  color: #111827;
  margin: 12px 0 7px;
}

.addon-description {
  font-size: 0.94rem;
  color: #747980;
  line-height: 1.6;
  text-align: center;
}

/* Tablet: 768px and up */
@media (min-width: 768px) {
  .addons-section {
    padding: 80px 24px;
  }

  .section-title2 {
    font-size: 2.6rem;
  }

  .section-subtitle {
    font-size: 1.18rem;
    margin-bottom: 36px;
  }

  .addons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 12px;
  }

  .curve-container3 {
    margin-bottom: -52px;
  }

  .curve-image3 {
    width: 40%;
    margin-bottom: -28px;
  }

  .addon-item {
    padding: 20px;
  }

  .addon-image {
    max-height: 135px;
  }
}

/* Desktop: 1024px and up */
@media (min-width: 1024px) {
  .addons-section {
    padding: 100px 30px;
  }

  .section-title2 {
    font-size: 3rem;
  }

  .section-subtitle {
    font-size: 1.26rem;
    margin-bottom: 40px;
  }

  .addons-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 16px;
  }

  .curve-container3 {
    margin-bottom: -60px;
  }

  .curve-image3 {
    width: 30%;
    margin-bottom: -35px;
  }

  .addon-item {
    padding: 28px;
  }

  .addon-image {
    max-height: 150px;
  }
}



/* Section Container */
.technologies-section {
  text-align: center;
  padding: 40px 15px;
  background-color: #fff;
}

.curve-container3 img {
  margin-bottom: -25px;
}

.section-title2 {
  font-size: 42px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 40px;
}

/* Tech Section Styles */
.tech-section1,
.tech-section2,
.tech-section3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 40px;
  border-radius: 16px;
  max-width: 1240px;
  margin: 40px auto;
  gap: 40px;
}

.tech-section1 {
  background-color: #F0F8FA;
}

.tech-section2 {
  background-color: #FFF8EC;
}

.tech-section3 {
  background-color: #FAF0F7;
}

/* Text Content */
.tech-content {
  flex: 1;
  max-width: 480px;
}

.tech-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 12px;
}

.tech-content p {
  font-size: 16px;
  color: #5A6A75;
  line-height: 1.6;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 20px;
  background-color: transparent;
  border: 2px solid #E0A123;
  color: #E0A123;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #F1C40F;
  color: #000;
}

/* Image Section */
.tech-image {
  flex: 1;
}

.tech-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .section-title2 {
    font-size: 36px;
  }

  .tech-section1,
  .tech-section2,
  .tech-section3 {
    gap: 20px;
    padding: 30px;
  }

  .tech-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .tech-section1,
  .tech-section2,
  .tech-section3 {
    flex-direction: column;
    text-align: center;
  }

  .tech-content {
    text-align: center;
  }

  .btn {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .section-title2 {
    font-size: 28px;
  }

  .tech-content h2 {
    font-size: 20px;
  }

  .tech-content p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}


.faq-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 32px 5%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.faq-title {
  flex: 0 0 auto;
  margin-bottom: 12px;
}

.faq-title h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
  line-height: 1.2;
}

.faq-title p {
  font-size: 1rem;
  color: #6b7280;
}

.faq-content {
  flex: 1;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #6b7280;
  text-align: left;
  font-size: 0.97rem;
}

.faq-item.active .faq-answer {
  padding: 0 16px 16px;
  max-height: 250px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background-color: #e5e7eb;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .faq-container {
    flex-direction: row;
    gap: 60px;
    padding: 40px 18px;
  }

  .faq-title {
    flex: 0 0 240px;
    margin-bottom: 0;
  }

  .faq-title h1 {
    font-size: 2.2rem;
  }

  .faq-title p {
    font-size: 1.1rem;
  }

  .faq-question {
    font-size: 1.08rem;
    padding: 18px 20px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
  }

  .faq-answer {
    font-size: 1.07rem;
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .faq-container {
    gap: 90px;
    padding: 0px 28px;
  }

  .faq-title {
    flex: 0 0 300px;
  }

  .faq-title h1 {
    font-size: 2.5rem;
  }

  .faq-content {
    max-width: 800px;
  }

  .faq-question {
    font-size: 1.14rem;
  }
}


/*Footer section*/
/* Footer Styles */
.footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  color: #333;
  margin-bottom: -200px;

}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Company Info Section */
.footer-company {
  grid-column: span 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 120px;
  height: auto;
  margin-right: 10px;
}

.company-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

/* Social Media Icons */
.social-media {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  color: white;
}

.social-icon.linkedin {
  background-color: #0077b5;
}

.social-icon.twitter {
  background-color: #000;
}

.social-icon.facebook {
  background-color: #1877f2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.threads {
  background-color: #000;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Sections */
.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-links a:hover {
  color: #0051C8;
  padding-left: 5px;
}

/* Contact Section */
.contact-infos {
  list-style: none;
}

.contact-infos li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #666;
  font-size: 15px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  color: #0051C8;
}

.contact-text {
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  text-align: center;
}

.copyright {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-company {
    grid-column: span 1;
  }

  .footer-container {
    padding: 0 30px;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 0 20px 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-company {
    grid-column: span 2;
    text-align: center;
    margin-bottom: 20px;
  }

  .company-description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .social-media {
    justify-content: center;
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .contact-infos li {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .contact-icon {
    width: 18px;
    height: 18px;
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .footer {
    padding: 30px 0 15px 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }

  .footer-company {
    grid-column: span 1;
    margin-bottom: 15px;
  }

  .footer-logo img {
    width: 100px;
  }

  .company-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-links a {
    padding: 8px 0;
  }

  .contact-infos li {
    justify-content: flex-start;
    text-align: left;
  }

  .copyright {
    font-size: 13px;
    padding: 0 10px;
  }
}

/* Very Small Screens */
@media screen and (max-width: 360px) {
  .footer-container {
    padding: 0 10px;
  }

  .social-media {
    gap: 10px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .contact-infos li {
    margin-bottom: 12px;
  }
}

/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .footer {
    padding: 20px 0 10px 0;
  }

  .footer-content {
    margin-bottom: 15px;
  }

  .footer-section h3 {
    margin-bottom: 15px;
  }
}

/* ============================================
   Standardized Font Sizes for Headings & Paragraphs
   Ensures consistent sizing across ALL sections.
   h1 = 60px base, scaled down proportionally.
   ============================================ */
h1 {
  font-size: 53px !important;
  font-weight: 700 !important;
  line-height: 72px !important;
}

h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
  line-height: 58px !important;
}

h3 {
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 43px !important;
}

h4 {
  font-size: 21px !important;
  font-weight: 600 !important;
  line-height: 34px !important;
}

h5 {
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 29px !important;
}

h6 {
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 24px !important;
}

p {
  font-family: "Open Sans", sans-serif !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 28px !important;
}
/* 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: scrollLeft 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: 0 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: white;
  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: #E0A123;
  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: #E0A123;
  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;
  }
}
