* {
  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;
}

button {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}


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 Styles */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  width: 124px;
  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;
}

/* Dropdown Arrow (fix) */
.dropdown-arrow {
  display: flex;
  align-items: center;
  /* keeps arrow vertically centered */
}

.dropdown-arrow img {
  width: 14px;
  /* default size */
  height: auto;
  display: block;
  margin-left: 4px;
  /* spacing between text and arrow */
  transition: transform 0.3s ease;
}

/* Rotate on hover (desktop) */
.nav-item:hover .dropdown-arrow img {
  transform: rotate(180deg);
}

/* Tablet */
@media screen and (max-width: 768px) {
  .dropdown-arrow img {
    width: 12px;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .dropdown-arrow img {
    width: 10px;
  }
}


.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 - 768px to 1024px */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-link {
    font-size: 15px;
  }

  .logo img {
    width: 110px;
  }

  .contact-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Mobile and Small Tablet Responsive - up to 768px */
@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;
  }

  .nav-item:hover .dropdown {
    max-height: 0;
  }

  .nav-item.dropdown-open:hover .dropdown {
    max-height: 300px;
  }

  .dropdown-link {
    padding: 10px 40px;
    font-size: 14px;
  }

  .dropdown-link:hover {
    padding-left: 40px;
    background-color: #f0f0ff;
  }

  .contact-btn {
    margin: 20px auto 10px auto;
    padding: 14px 40px;
    font-size: 16px;
    display: block;
    text-align: center;
    width: fit-content;
    min-width: 140px;
  }

  .logo img {
    width: 100px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 12px;
  }
}

/* Small Mobile - up to 480px */
@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 img {
    width: 80px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-subtitle {
    display: none;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 15px;
  }

  .contact-btn {
    padding: 12px 35px;
    font-size: 15px;
    margin: 15px auto 5px auto;
    display: block;
    width: fit-content;
    min-width: 120px;
  }
}

/* Very Small Screens - up to 360px */
@media screen and (max-width: 360px) {
  header {
    padding: 0 10px;
  }

  .logo img {
    width: 70px;
  }

  .logo-text {
    font-size: 16px;
  }

  .hamburger {
    width: 20px;
    height: 2px;
  }
}

/* Landscape Mobile Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .nav-menu {
    padding: 10px 0;
    max-height: calc(100vh - 50px);
  }

  .nav-link {
    padding: 10px 20px;
  }

  .nav-item {
    margin: 5px 0;
  }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Focus States for Accessibility */
.nav-link:focus,
.dropdown-link:focus,
.contact-btn:focus,
.mobile-toggle:focus {
  outline: 2px solid #0051C8;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header {
    position: static;
    box-shadow: none;
  }

  .mobile-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    gap: 20px;
    padding: 0;
  }
}

.wave {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  z-index: 1;
  margin-right: 700px;
}

.wave img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.mobile {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.mobile img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 60px;
  min-height: 100vh;
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;

}

.heading {
  font-family: 'Poppins', sans-serif;
  color: #FFB72B;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.description {
  font-family: 'Roboto', sans-serif;
  color: #5E6570;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFB72B;
  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: #e6a527;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 183, 43, 0.3);
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .container {
    padding: 80px 40px;
  }

  .heading {
    font-size: 48px;
  }

  .description {
    font-size: 18px;
    max-width: 500px;
  }

  .mobile img {
    max-height: 400px;
    right: 10px;
  }

  nav {
    padding: 10px 15px;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background-color: rgba(236, 236, 236, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }

  .nav-links ul li {
    margin: 15px 0;
    padding: 0;
  }

  .nav-links ul li a {
    font-size: 20px;
    display: block;
    padding: 10px;
  }

  .nav-links button {
    position: static;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
  }

  .container {
    padding: 120px 20px 60px;
    text-align: left;
  }

  .heading {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .description {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 25px;
  }



  .mobile {
    position: static;
    text-align: center;
    margin: 20px 0;
    transform: none;
  }

  .mobile img {
    max-height: 250px;
    width: auto;
  }

  .wave {
    display: none;
  }

  nav img {
    width: 100px;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 480px) {
  .container {
    padding: 100px 15px 40px;
  }

  .heading {
    font-size: 28px;
  }

  .description {
    font-size: 14px;
  }



  .mobile img {
    max-height: 200px;
  }

  nav img {
    width: 80px;
  }
}

/* Large Desktop */
@media screen and (min-width: 1400px) {
  .container {
    padding: 120px 80px;
  }

  .heading {
    font-size: 72px;
  }

  .description {
    font-size: 22px;
    max-width: 700px;
  }
}

/* Second section */
.uber-clone-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  /* smaller padding for mobile */
  color: #fff;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  width: 100%;
  align-items: center;
  gap: 20px;
}

.text-contents {
  text-align: left;
}

.text-contents h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #111827;
}

.text-contents p {
  font-size: 18px;
  line-height: 1.6;
  color: #5E6570;
  margin-bottom: 15px;
}

.image-content {
  width: 100%;
  max-width: 503px;
  height: auto;
  aspect-ratio: 5 / 6;
  /* keeps proportions */
  background: linear-gradient(to bottom right, #FFB72B, #D00254);
  border-radius: 20px;
  margin-left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-content img {
  max-width: 90%;
  height: auto;
  border-radius: 20px;
  margin: 0;
}

/* Tablet (768px and below) */
@media (max-width: 1024px) {
  .content-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .text-contents {
    text-align: center;
  }

  .text-contents h2 {
    font-size: 30px;
  }

  .text-contents p {
    font-size: 17px;
  }

  .image-content {
    margin: 20px auto 0 auto;
  }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
  .uber-clone-section {
    padding: 40px 15px;
  }

  .text-contents h2 {
    font-size: 26px;
  }

  .text-contents p {
    font-size: 15px;
  }

  .image-content {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 4 / 5;
  }

  .image-content img {
    max-width: 85%;
  }
}


/* third section */
.ai-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}

.top-title1 {
  color: #ffa500;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.features-section1 {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-top: 40px;

}

.tabs-container1 {
  flex: 1;
  max-width: 400px;
}

.tab {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 50px;
  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;
}

.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.5;
  display: none;
}

.tab.active .tab-desc {
  display: block;
}

.image-container {
  flex: 1;
  position: relative;
}

.image-container img {
  width: 100%;
  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);
  }
}

/* ✅ Tablet (1024px and below) */
@media (max-width: 1024px) {
  .features-section1 {
    flex-direction: column;
    align-items: center;
  }

  .tabs-container1 {
    max-width: 100%;
  }

  .image-container {
    width: 100%;
    margin-top: 20px;
  }

  h1 {
    font-size: 28px;
    text-align: center;
  }

  .tab-title {
    font-size: 16px;
  }

  .tab-desc {
    font-size: 13px;
  }
}

/* ✅ Mobile (600px and below) */
@media (max-width: 600px) {
  .ai-container {
    padding: 15px;
  }

  .top-title1 {
    font-size: 12px;
    text-align: center;
  }

  h1 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
  }

  .tab {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .tab-icon {
    margin: 0 0 10px 0;
  }

  .tab-content {
    margin-left: 0;
    text-align: left;
  }

  .tab-title {
    font-size: 15px;
  }

  .tab-desc {
    font-size: 13px;
  }

  .image-container {
    margin-top: 20px;
  }
}


/* benefits section */
/* ===== Base Styles (Desktop First with Responsive Adjustments) ===== */
.benefits-section {
  text-align: center;
  padding: 0px 20px;
  background-color: #ffffff;
  position: relative;
  margin-top: 40px;
}

.curve-container {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -60px;
}

.curve-image {
  height: auto;
  width: 35%;
  max-width: 500px;
  display: inline-block;
  margin-bottom: -35px;
}

.section-benefits-title {
  font-size: 2.8rem;
  /* 48px approx */
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.section-subwords {
  font-size: 1rem;
  font-weight: 400;
  color: #747980;
  margin-bottom: 40px;
}

.benefits-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #FFE9C9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  padding: 24px;
  text-align: left;
  flex: 1 1 calc(33.333% - 32px);
  max-width: 320px;
  min-width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 15px;
}

.benefit-card .icon {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF3DD;
  border-radius: 10px;
}

h3 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  color: #38404A;
  line-height: 1.6;
}

/* ====== Responsiveness ====== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .section-benefits-title {
    font-size: 2.4rem;
  }

  .section-subwords {
    font-size: 0.95rem;
  }

  .benefit-card {
    flex: 1 1 calc(50% - 24px);
    max-width: 100%;
  }

  .curve-image {
    width: 45%;
  }
}

/* Mobile Landscape / Small Tablets (≤768px) */
@media (max-width: 768px) {
  .benefits-section {
    padding: 50px 16px;
    margin-top: 60px;
  }

  .section-benefits-title {
    font-size: 2rem;
  }

  .benefit-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .curve-image {
    width: 55%;
  }
}

/* Mobile Phones (≤480px / 320px) */
@media (max-width: 480px) {
  .section-benefits-title {
    font-size: 1.6rem;
  }

  .section-subwords {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.9rem;
  }

  .curve-image {
    width: 70%;
  }

  .benefit-card {
    padding: 18px;
  }
}


/* Section Styles */
/* ====== Base Styles (Desktop First) ====== */
.section-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.info-column {
  flex: 1;
}

.visual-column {
  flex: 1;
}

.visual-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.section-caption {
  color: #FFC107;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.section-description {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.benefit-item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.benefit-number {
  font-weight: bold;
  margin-right: 12px;
  min-width: 28px;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.benefit-content-wrapper {
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.benefit-description {
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ====== Responsiveness ====== */

/* Large tablets and small laptops (≤1024px) */
@media (max-width: 1024px) {
  .section-wrapper {
    gap: 30px;
    padding: 50px 20px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-description {
    font-size: 0.95rem;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .section-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .info-column,
  .visual-column {
    flex: none;
    width: 100%;
  }

  .benefit-item {
    justify-content: center;
  }

  .benefit-number {
    margin-right: 8px;
  }

  .section-heading {
    font-size: 1.8rem;
  }
}

/* Mobile Phones (≤480px) */
@media (max-width: 480px) {
  .section-wrapper {
    padding: 40px 16px;
    gap: 24px;
  }

  .section-caption {
    font-size: 0.9rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .benefit-description {
    font-size: 0.85rem;
  }
}


/* global Section Styling */
/* ===== Base Styles (Desktop First) ===== */
.global-growth {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
}

/* Image Wrapper */
.image-wrap {
  flex: 1;
  max-width: 600px;
}

.image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Text Content */
.text-page {
  flex: 1;
  max-width: 600px;
}

.subheading-text {
  color: #FFB72B;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.main-heading-text {
  font-size: 2.25rem;
  /* ~36px */
  font-weight: 600;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
}

.description-page {
  font-size: 1.125rem;
  /* 18px */
  color: #5E6570;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ===== Responsive Breakpoints ===== */

/* Tablets and small laptops (≤1024px) */
@media (max-width: 1024px) {
  .global-growth {
    padding: 50px 20px;
  }

  .main-heading-text {
    font-size: 2rem;
  }

  .description-page {
    font-size: 1rem;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .content-wrap {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .image-wrap,
  .text-page {
    max-width: 100%;
    flex: none;
  }

  .main-heading-text {
    font-size: 1.75rem;
  }

  .description-page {
    font-size: 0.95rem;
  }
}

/* Mobile Phones (≤480px) */
@media (max-width: 480px) {
  .global-growth {
    padding: 40px 16px;
  }

  .subheading-text {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .main-heading-text {
    font-size: 1.5rem;
  }

  .description-page {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
}


/* Offer Section page*/
.offer-section {
  padding: 60px 5%;
  background-color: #ffffff;
  position: relative;
}

.offer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Text Content */
.text-content {
  text-align: left;
}

.subheading-offer {
  color: #FFB72B;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.main-heading-offer {
  font-size: 2.25rem;
  /* ~36px */
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
}

.description-offer {
  font-size: 1.125rem;
  /* 18px */
  color: #5E6570;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Offer List */
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.list-number {
  color: #1a1a1a;
  font-weight: bold;
  font-size: 0.9rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.list-content p {
  color: #38404A;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Image Section */
.offer-image {
  flex: 1;
  max-width: 600px;
}

.offer-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ===== Responsive Breakpoints ===== */

/* Tablets and small laptops (≤1024px) */
@media (max-width: 1024px) {
  .offer-container {
    gap: 30px;
  }

  .main-heading-offer {
    font-size: 2rem;
  }

  .description-offer {
    font-size: 1rem;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .offer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .text-content {
    text-align: center;
  }

  .offer-list li {
    justify-content: center;
  }

  .main-heading-offer {
    font-size: 1.75rem;
  }

  .description-offer {
    font-size: 0.95rem;
  }
}

/* Mobile Phones (≤480px) */
@media (max-width: 480px) {
  .offer-section {
    padding: 40px 16px;
  }

  .subheading-offer {
    font-size: 0.8rem;
  }

  .main-heading-offer {
    font-size: 1.5rem;
  }

  .description-offer {
    font-size: 0.9rem;
  }

  .list-number {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }

  .list-content p {
    font-size: 0.85rem;
  }
}

/* Features section*/
/* ===== Base Styles (Desktop First) ===== */
.features-section {
  margin: 0 auto;
  padding: 0px 20px;
  text-align: center;
  margin-top: 100px;
}

.curve-container2 {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -60px;
}

.curve-image2 {
  height: auto;
  width: 25%;
  max-width: 400px;
  display: inline-block;
  margin-bottom: -25px;
}

/* Section Title and Description */
.section-title-features {
  font-size: 2.8rem;
  /* ~48px */
  color: #111827;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-description-features {
  font-size: 1rem;
  color: #666;
  max-width: 650px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Features Grid */
.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

/* Feature Box */
.feature-box {
  background: #fff;
  border: 2px solid #fad281;
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.icon-container {
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
}

/* Title and Description */
.feature-title {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-description {
  font-size: 0.95rem;
  color: #747980;
  line-height: 1.6;
}

/* ===== Responsive Breakpoints ===== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .section-title-features {
    font-size: 2.2rem;
  }

  .section-description-features {
    font-size: 0.95rem;
  }

  .curve-image2 {
    width: 35%;
  }
}

/* Small Tablets (≤768px) */
@media (max-width: 768px) {
  .features-section {
    padding: 50px 16px;
    margin-top: 70px;
  }

  .section-title-features {
    font-size: 1.9rem;
  }

  .section-description-features {
    font-size: 0.9rem;
    margin-bottom: 40px;
  }

  .curve-image2 {
    width: 45%;
  }
}

/* Mobile Phones (≤480px) */
@media (max-width: 480px) {
  .features-section {
    padding: 40px 14px;
    margin-top: 50px;
  }

  .section-title-features {
    font-size: 1.6rem;
  }

  .section-description-features {
    font-size: 0.85rem;
    margin-bottom: 30px;
  }

  .curve-image2 {
    width: 65%;
  }

  .feature-box {
    width: 100%;
    padding: 20px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }
}


/* Extra-Addons section */
.addons-section {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  margin-top: 100px;
}

.section-title2 {
  font-size: 48px;
  font-weight: 600;
  color: #111827;
}

.section-subtitle {
  font-size: 16px;
  color: #747980;
  margin-bottom: 40px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.curve-container3 {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -60px;
}

.curve-image3 {
  height: auto;
  width: 30%;
  display: inline-block;
  margin-bottom: -35px;
}

.addon-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.addon-image {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.addon-title {
  font-size: 14px;
  color: #111827;
  margin: 15px 0 10px;
}

.addon-description {
  font-size: 12px;
  color: #747980;
}

/* ✅ Responsive Adjustments */
@media (max-width: 1024px) {
  .section-title2 {
    font-size: 36px;
  }

  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-title2 {
    font-size: 28px;
  }

  .addons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .addon-item {
    padding: 15px;
  }

  .addon-title {
    font-size: 13px;
  }

  .addon-description {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .section-title2 {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .addon-title {
    font-size: 12px;
  }

  .addon-description {
    font-size: 10px;
  }
}

/* Specifications section */
/* ===================== SPECIFICATIONS SECTION ===================== */
.specs-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
  position: relative;
}

.specs-header {
  margin-bottom: 50px;
}

.specs-caption {
  color: #FFB72B;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.specs-title {
  font-size: 40px;
  color: #111827;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.specs-subtitle {
  color: #5E6570;
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.spec-card {
  background: #f9f9ff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}

.spec-card.popular {
  background: linear-gradient(135deg, #fff8ee, #fff3dc);
  border: 2px solid #FFB72B;
  box-shadow: 0 8px 30px rgba(255, 183, 43, 0.15);
}

.spec-card.popular::before {
  content: "⭐ Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFB72B;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #FFB72B;
}

.spec-badge {
  display: inline-block;
  background: #FFB72B;
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.spec-intro {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-list li {
  margin-bottom: 14px;
  color: #444;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
}

.spec-list i {
  color: #FFB72B;
  font-size: 17px;
  flex-shrink: 0;
}

/* ===================== COMPARISON TABLE SECTION ===================== */
.comparison-section {
  padding: 20px 20px 80px;
  background: #fff;
}

.table-container {
  max-width: 1200px;
  margin: 0 auto;
}

.table-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-toggle-btn {
  background-color: #FFB72B;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(255, 183, 43, 0.35);
  font-family: 'Poppins', sans-serif;
}

.pricing-toggle-btn:hover {
  background-color: #e6a527;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 183, 43, 0.4);
}

.pricing-toggle-btn i {
  transition: transform 0.3s ease;
}

.pricing-toggle-btn.active i {
  transform: rotate(180deg);
}

.table-responsive {
  display: none;
  overflow-x: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.table-responsive.show {
  display: block;
}

/* Table base */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 620px;
}

/* Thead */
.comparison-table thead th {
  padding: 18px 20px;
  background: #111827;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.comparison-table thead th:first-child {
  text-align: left;
}

/* Regular rows */
.comparison-table tbody tr:nth-child(even) td {
  background: #f8f8fc;
}

.comparison-table tbody tr:nth-child(odd) td {
  background: #ffffff;
}

.comparison-table tbody tr:hover td {
  background: #fffbf0 !important;
}

.comparison-table td {
  padding: 15px 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 14.5px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #222;
}

/* Circular Icons */
.icon-check,
.icon-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
}

.icon-check {
  /* background: #22c55e; */
  color: #22c55e;
}

.icon-cross {
  /* background: #ef4444; */
  color: #ef4444;
}

/* Core Features header – dark style */
.core-header td {
  background: #4F6AE6 !important;
  /* color: #fff !important; */
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 14px 20px !important;
  text-align: left !important;
  font-family: 'Poppins', sans-serif !important;
  border-bottom: none !important;
}

/* Accordion section headers – blue/purple style matching reference */
.accordion-header td {
  background: #4F6AE6 !important;
  /* color: #fff !important; */
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 18px 24px !important;
  cursor: pointer;
  user-select: none;
  border-bottom: none !important;
  font-family: 'Poppins', sans-serif !important;
  transition: background 0.2s;
}

.accordion-header:hover td {
  background: #3d56d4 !important;
}

.accordion-header td .acc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acc-chevron {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.accordion-header.open .acc-chevron {
  transform: rotate(180deg);
}

/* Hidden accordion rows */
.acc-row.hidden {
  display: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .specs-title {
    font-size: 32px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .specs-section {
    padding: 60px 16px;
  }

  .specs-title {
    font-size: 26px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .comparison-section {
    padding: 10px 16px 60px;
  }

  .pricing-toggle-btn {
    padding: 13px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .specs-title {
    font-size: 22px;
  }

  .icon-check,
  .icon-cross {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}


/* FAQ section */
/* Base styles for mobile-first approach */
.faq-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 20px;
}

.faq-header {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.faq-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #11151e;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.faq-subtitle {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  max-width: 100%;
}

.faq-content {
  width: 100%;
  min-width: auto;
}

.faq-item {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 0.5rem;
  background: #fff;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.75rem;
  cursor: pointer;
  font-weight: 600;
  color: #11151e;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq-question:hover {
  color: #D18F0D;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.faq-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-item.active .faq-toggle {
  background-color: #D18F0D;
  transform: rotate(180deg);
}

.faq-item.active .faq-toggle svg {
  stroke: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0.75rem 1rem 0.75rem;
}

/* Small Mobile - 320px and up */
@media screen and (min-width: 320px) {
  .faq-section {
    padding: 1.25rem;
    margin-top: 20px;
  }

  .faq-title {
    font-size: 1.875rem;
  }

  .faq-question {
    padding: 1.125rem 1rem;
    font-size: 1rem;
  }

  .faq-toggle {
    width: 22px;
    height: 22px;
  }

  .faq-toggle svg {
    width: 11px;
    height: 11px;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1.125rem 1rem;
  }
}

/* Large Mobile - 480px and up */
@media screen and (min-width: 480px) {
  .faq-section {
    padding: 1.5rem;
    gap: 1.75rem;
    margin-top: 20px;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 1.25rem 1.125rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.125rem 1.25rem 1.125rem;
  }
}

/* Tablet - 768px and up */
@media screen and (min-width: 768px) {
  .faq-section {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1.75rem;
    gap: 2rem;
    margin-top: 20px;
  }

  .faq-header {
    width: 100%;
    max-width: 280px;
    text-align: left;
    margin-right: 1rem;
    margin-bottom: 0;
  }

  .faq-title {
    font-size: 2.125rem;
    margin-bottom: 1rem;
  }

  .faq-subtitle {
    font-size: 0.925rem;
  }

  .faq-content {
    flex: 1;
    min-width: 400px;
    margin-left: 0;
  }

  .faq-question {
    padding: 1.25rem 1.25rem;
    font-size: 1.05rem;
  }

  .faq-toggle {
    width: 24px;
    height: 24px;
    margin-left: 1rem;
  }

  .faq-toggle svg {
    width: 12px;
    height: 12px;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

/* Large Tablet - 1024px and up */
@media screen and (min-width: 1024px) {
  .faq-section {
    padding: 2rem;
    margin-top: 20px;
    gap: 2.5rem;
  }

  .faq-header {
    max-width: 300px;
    margin-right: 2rem;
  }

  .faq-title {
    font-size: 2.25rem;
    margin-bottom: 1.125rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
  }

  .faq-content {
    min-width: 500px;
    margin-left: 1rem;
  }

  .faq-question {
    padding: 1.375rem 1.5rem;
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 0.925rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.375rem 1.5rem;
  }
}

/* Desktop - 1200px and up */
@media screen and (min-width: 1200px) {
  .faq-section {
    padding: 2.25rem;
    gap: 3rem;
  }

  .faq-header {
    margin-right: 3rem;
  }

  .faq-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-content {
    margin-left: 2rem;
  }

  .faq-question {
    padding: 1.5rem 1.75rem;
    font-size: 1.125rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.75rem 1.5rem 1.75rem;
  }
}

/* Large Desktop - 1400px and up */
@media screen and (min-width: 1400px) {
  .faq-section {
    padding: 2.5rem;
    gap: 3.5rem;
  }

  .faq-header {
    margin-right: 4rem;
  }

  .faq-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }

  .faq-subtitle {
    font-size: 1.05rem;
  }

  .faq-content {
    margin-left: 3rem;
  }

  .faq-question {
    padding: 1.75rem 2rem;
    font-size: 1.15rem;
  }

  .faq-answer {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 2rem 1.75rem 2rem;
  }
}

/* High DPI displays */
@media screen and (-webkit-min-device-pixel-ratio: 2),
screen and (min-resolution: 192dpi) {
  .faq-toggle {
    border: 0.5px solid rgba(0, 0, 0, 0.05);
  }

  .faq-item {
    border-bottom-width: 0.5px;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  .faq-title {
    color: #1a1a1a;
  }

  .faq-question {
    color: #1a1a1a;
  }

  .faq-question:hover {
    color: #FFB72B;
  }

  .faq-answer {
    color: #b3b3b3;
  }

  /* .faq-item {
      background: #1a1a1a;
      border-bottom-color: #333;
  } */

  .faq-toggle {
    background-color: #333;
  }

  .faq-item.active .faq-toggle {
    background-color: #D18F0D;
  }
}

/* Print styles */
@media print {
  .faq-section {
    margin-top: 0;
    padding: 1rem;
    gap: 1rem;
  }

  .faq-toggle {
    display: none;
  }

  .faq-answer {
    max-height: none !important;
    padding: 0 0 1rem 0 !important;
    overflow: visible;
  }

  .faq-item {
    page-break-inside: avoid;
  }
}


.footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #f8f9ff;
  padding: 60px 20px;
}


.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: 30px;
}

/* 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;
  }
}

.get-btn {
  background: #FFB72B;
  color: #fff;
  border-radius: 100px;
  padding: 11px 17px;
  font-weight: 600;
}

.get-btn:hover,
.watch-btn:hover {
  color: var(--white-color);
  background: var(--link-color);
}

/* ============================================
   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;
}

.ai-badge {
  display: inline;
  margin-left: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff0057, #ff7a00);
  border-radius: 6px;
  text-transform: uppercase;
  vertical-align: middle;
}

/* 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: beige;
  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: #FFB72B;
  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: #FFB72B;
  font-size: 14px;
  margin-bottom: 5px;
}

/* ============================================
   Trusted By Section
   ============================================ */
.trusted-section {
  padding: 60px 20px;
  text-align: center;
  background: #fdfdfd;
  border-top: 1px solid #f0f0f0;
}

.trusted-title {
  font-size: 14px !important;
  color: #999 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.5s ease;
}

.logo-grid:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-grid img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
  padding: 100px 20px;
  background: #1a1a2e;
  color: #fff;
  text-align: center;
}

.testimonial-header {
  margin-bottom: 60px;
}

.testimonial-subtitle {
  color: #FFB72B !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px !important;
  margin-bottom: 10px !important;
  font-family: 'Poppins', sans-serif !important;
}

.testimonial-title {
  font-size: 36px !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-family: 'Poppins', sans-serif !important;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 24px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: #FFB72B;
}

.testimonial-quote {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #ccc !important;
  margin-bottom: 25px;
  position: relative;
  font-family: 'Open Sans', sans-serif !important;
  font-style: italic;
  font-weight: 400 !important;
}

.testimonial-quote i {
  color: #FFB72B;
  font-size: 24px;
  margin-bottom: 15px;
  display: block;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.user-img-container {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FFB72B;
}

.user-img-container img {
  width: auto;
  height: 100%;
}

.user-info h4 {
  font-size: 18px !important;
  color: #fff !important;
  margin: 0 !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.user-info p {
  font-size: 13px !important;
  color: #FFB72B !important;
  margin: 0 !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

/* Responsive for Counter & Testimonials */
@media screen and (max-width: 992px) {
  .counter-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .counter-item {
    border-right: none;
  }
}

@media screen and (max-width: 480px) {
  .counter-container {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Walkthrough Section
   ============================================ */
.walkthrough-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
  text-align: center;
}

.walkthrough-container {
  max-width: 1000px;
  margin: 0 auto;
}

.walkthrough-header {
  margin-bottom: 50px;
}

.walkthrough-subtitle {
  color: #0051C8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.walkthrough-title {
  font-size: 36px !important;
  color: #1a1a2e !important;
  font-weight: 700 !important;
  margin: 15px 0 !important;
  font-family: 'Poppins', sans-serif !important;
}

.walkthrough-desc {
  color: #5E6570 !important;
  font-size: 18px !important;
  max-width: 700px;
  margin: 0 auto !important;
  font-family: 'Open Sans', sans-serif !important;
}

.video-mockup {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin-bottom: 40px;
}

.video-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.play-btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-mockup:hover .play-btn-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.play-button {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.video-mockup:hover .play-button {
  transform: scale(1.1);
  background: #FFB72B;
  border-color: #FFB72B;
  color: #fff;
}

.demo-cta-box {
  background: #1a1a2e;
  padding: 60px 40px;
  border-radius: 40px;
  color: #fff;
  margin-top: 60px;
  box-shadow: 0 30px 80px rgba(26, 26, 46, 0.3);
}

.demo-cta-btn {
  display: inline-block;
  padding: 18px 45px;
  background: #FFB72B;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 15px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.demo-cta-btn:hover {
  background: #e6a527;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 183, 43, 0.4);
}

/* Secondary Hero CTA */
.cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cta-button.secondary {
  background: transparent !important;
  border: 2px solid #FFB72B !important;
  color: #FFB72B !important;
}

.cta-button.secondary:hover {
  background: #FFB72B !important;
  color: #fff !important;
  transform: translateY(-3px);
}

@media screen and (max-width: 600px) {
  .walkthrough-title {
    font-size: 28px !important;
  }

  .demo-cta-box {
    padding: 40px 20px;
  }
}
