* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  /* 🚫 Prevent horizontal scroll */
}

body {
  font-family: 'Poppins', sans-serif;
  /* padding-top: 70px; offset for fixed header on all screen sizes */
  padding-left: 5%;
  padding-right: 5%;
}

h1,
h2,
h3 {
  font-family: 'poppins', sans-serif;
}

p {
  font-family: 'roboto', sans-serif;
}

button {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}


header {
  /* max-width: 1440px; */
  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: 1440px;
  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 */
.dropdown-arrow {
  display: flex;
  align-items: center;
  /* keep arrow vertically aligned with text */
}

.dropdown-arrow img {
  width: 14px;
  /* default size */
  height: auto;
  display: block;
  margin-left: 4px;
  /* little space after text */
}

/* Tablet Responsive */
@media screen and (max-width: 768px) {
  .dropdown-arrow img {
    width: 12px;
    /* smaller arrow on tablets & mobile */
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .dropdown-arrow img {
    width: 10px;
    /* smallest arrow */
  }
}


.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;
  }

  .dropdown-arrow img {
    font-size: 10px;
  }
}

/* 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: 800px;
}

.wave img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.mobile {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.mobile img {
  max-width: 400px;
  height: auto;
  display: block;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 60px;
  height: calc(95vh - 80px);
  position: relative;
  z-index: 3;
  max-width: 1620px;
  margin: 0 auto;
}

.heading {
  font-family: 'Poppins', sans-serif;
  color: #528BF4;
  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: #528BF4;
  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: #4169E1;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(82, 139, 244, 0.3);
}

/* Mobile hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Tablet Styles */
@media screen and (max-width: 1200px) {
  nav {
    padding: 20px 40px;
  }

  .container {
    padding: 80px 40px;
  }

  .mobile {
    right: 40px;
  }

  .mobile img {
    max-width: 350px;
  }

  .heading {
    font-size: 56px;
  }

  .description {
    font-size: 18px;
    max-width: 550px;
  }
}

@media screen and (max-width: 1024px) {
  .nav-links ul li {
    margin: 0 3px;
    padding: 8px 8px;
  }

  .nav-links ul li a {
    font-size: 15px;
  }

  .nav-links .contact-btn {
    padding: 10px 20px;
    font-size: 15px;
    margin-left: 15px;
  }

  .mobile img {
    max-width: 300px;
  }

  .heading {
    font-size: 48px;
  }

  .description {
    max-width: 500px;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  nav {
    padding: 15px 20px;
    position: relative;
  }

  .nav-links {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-radius: 0 0 15px 15px;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links.active {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    padding: 20px;
    margin: 0;
  }

  .nav-links ul li {
    margin: 0;
    display: block;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links ul li:last-child {
    border-bottom: none;
    padding-bottom: 10px;
  }

  .nav-links ul li a {
    font-size: 16px;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
  }

  .nav-links ul li a:hover {
    background-color: #f8f9ff;
    color: #528BF4;
  }

  .nav-links .contact-btn {
    position: static;
    margin: 15px auto 5px;
    width: 80%;
    padding: 12px 24px;
    font-size: 16px;
    display: block;
    text-align: center;
    border-radius: 25px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .wave {
    display: none;
  }

  .mobile {
    display: none;
  }

  .container {
    padding: 60px 20px;
    text-align: center;
    align-items: center;
    height: calc(100vh - 70px);
    justify-content: center;
  }

  .heading {
    font-size: 42px;
    margin-bottom: 25px;
    text-align: center;
  }

  .description {
    font-size: 16px;
    text-align: center;
    max-width: 100%;
    margin-bottom: 35px;
  }


}

@media screen and (max-width: 480px) {
  nav {
    padding: 12px 15px;
  }

  nav img {
    width: 110px;
  }

  .container {
    padding: 40px 15px;
    height: calc(100vh - 60px);
  }

  .heading {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .description {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
  }



  .nav-links ul li a {
    font-size: 15px;
    padding: 12px 15px;
  }

  .nav-links .contact-btn {
    width: 85%;
    padding: 12px 20px;
    font-size: 15px;
  }
}

@media screen and (max-width: 360px) {
  nav img {
    width: 95px;
  }

  .heading {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .container {
    padding: 35px 12px;
  }


}

/* High-resolution desktop */
@media screen and (min-width: 1441px) {
  /* nav {
    padding: 25px 80px;
  } */

  .container {
    padding: 120px 80px;
  }

  .mobile {
    right: 80px;
  }

  .mobile img {
    max-width: 450px;
  }

  .heading {
    font-size: 72px;
  }

  .description {
    font-size: 22px;
    max-width: 650px;
  }


}

/* Landscape orientation for mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .container {
    height: auto;
    min-height: 60vh;
    padding: 30px 20px;
  }

  .heading {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .description {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

/* Second section */

.uber-clone-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  color: #fff;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  width: 100%;
  align-items: center;
  gap: 40px;
}

.text-contents {
  text-align: left;
}

/* .text-contents h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #111827;
} */
.text-contents h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #111827;
}

.text-contents p {
  font-size: 20px;
  line-height: 1.6;
  color: #5E6570;
  margin-bottom: 15px;
}

.image-content1 {
  max-width: 100%;
  border-radius: 20px;
  margin-top: 0;
  margin-left: 0;
  display: flex;
  justify-content: center;
  height: 383px;
}

.image-content1 img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}


@media (max-width: 1024px) {
  .content-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .text-contents {
    text-align: center;
  }

  /* .text-contents h1 {
    font-size: 30px;
  } */
  .text-contents h2 {
    font-size: 30px;
  }

  .text-contents p {
    font-size: 18px;
  }

  .image-content1 {
    margin-top: 20px;
  }
}


@media (max-width: 767px) {
  .uber-clone-section {
    padding: 40px 20px;
  }

  .text-contents {
    text-align: center;
  }

  /* .text-contents h1 {
    font-size: 26px;
  } */
  .text-contents h2 {
    font-size: 26px;
  }

  .text-contents p {
    font-size: 16px;
  }

  .image-content1 {
    margin-top: 20px;
  }

  .image-content1 img {
    width: 100%;
    height: auto;
  }
}


/* third section */
.ai-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 5%;
  /* background-color: #FFFAF0; */
}

.top-title1 {
  color: #528BF4;
  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: 3%;
}

/* === Tabs === */
.tabs-container1 {
  flex: 1;
  max-width: 400px;
}

.tab {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 45px;
  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: #528BF4;
  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(179, 167, 251, 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.5;
  display: none;
  color: white;
}

.tab.active .tab-desc {
  display: block;
}

/* === Image Section === */
.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 === */
.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);
  }
}



/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .features-section1 {
    flex-direction: column;
    gap: 40px;
  }

  .tabs-container1 {
    max-width: 100%;
  }

  h1 {
    font-size: 28px;
    text-align: center;
  }

  .tab-title {
    font-size: 16px;
  }

  .tab-desc {
    font-size: 13px;
  }
}

/* Mobile Devices (up to 767px) */
@media (max-width: 767px) {
  .ai-container {
    padding: 15px;
  }

  .features-section1 {
    flex-direction: column;
    gap: 30px;
  }

  .tabs-container1 {
    max-width: 100%;
  }

  .tab {
    padding: 15px;
  }

  .tab-icon {
    width: 35px;
    height: 35px;
  }

  .tab-title {
    font-size: 15px;
    color: white;
  }

  .tab-desc {
    font-size: 13px;
    color: white;
  }

  h1 {
    font-size: 24px;
    text-align: center;
  }

  .image-container img {
    border-radius: 12px;
  }

  .content-area {
    padding: 20px;
  }
}


/* benefits section */
.benefits-section {
  text-align: space-evenly;
  padding: 0px 5%;
  background-color: #ffffff;
  position: relative;
  /* margin-top: 100px; */
}

.curve-container {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -60px;
}

.curve-image {
  height: auto;
  width: 40%;
  max-width: 500px;
  display: inline-block;
  margin-bottom: -35px;
}

.section-benefits-title {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  text-align: center;
}

.section-subwords {
  font-size: 16px;
  color: #747980;
  margin-bottom: 40px;
  text-align: center;
}

.benefits-container {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
  flex-wrap: wrap;
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #DAE3FF;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  flex: 1 1 calc(33.333% - 40px);
  max-width: 320px;
  min-width: 260px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card .icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #DAE3FF;
  border-radius: 10px;
  margin-bottom: 15px;
}

.benefit-card .icon img {
  width: 24px;
}

h3 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 10px;
}

p {
  font-size: 0.95rem;
  color: #38404A;
  line-height: 1.5;
}



/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .section-benefits-title {
    font-size: 36px;
  }

  .benefits-container {
    gap: 30px;
  }

  .benefit-card {
    flex: 1 1 calc(50% - 30px);
    max-width: 350px;
  }
}

/* Mobile (<= 768px) */
@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%;
    text-align: center;
  }

  .benefit-card .icon {
    margin: 0 auto 15px auto;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .curve-image {
    width: 70%;
  }

  .section-benefits-title {
    font-size: 24px;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 0.9rem;
  }

  .benefit-card {
    padding: 20px;
  }
}


/* Section Styles */
/* Base styles - Mobile First */
.why-choose-section {
  max-width: 1440px;
  margin: 50px auto;
  padding: 40px 20px;
  margin-top: 60px;
}

.content-choose-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* Text Content */
.text-content {
  text-align: left;
  order: 2;
}

.section-title {
  color: #3E76FE;
  font-size: 24px;
  /* Mobile H2 size */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  display: inline-block;
}

.main-heading-text {
  font-size: 16px;
  /* Mobile P size */
  font-weight: 400;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.3;
}

.description {
  font-size: 16px;
  color: #5E6570;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list1st-box {
  margin-bottom: 16px;
  margin-left: -20px;
}

.features-list1st-box li {
  /* background-color: #e2eafc; */
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.features-list1st-box li:hover {
  background-color: #d1e0fb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(62, 118, 254, 0.15);
}

.features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #38404A;
}

.list-content {
  width: 100%;
}

.list-content p {
  color: #38404A;
  margin: 0;
}

.list-content p:first-child {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 16px;
}

.list-content p:last-child {
  font-weight: 400;
  opacity: 0.85;
  font-size: 14px;
}

/* Image Content */
.image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
}

.image-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Tablet Styles */
@media screen and (min-width: 768px) {
  .why-choose-section {
    padding: 50px 30px;
    margin-top: 80px;
  }

  .content-choose-container {
    gap: 50px;
  }

  .section-title {
    font-size: 28px;
    /* Tablet H2 size */
    margin-bottom: 10px;
  }

  .main-heading-text {
    font-size: 17px;
    /* Tablet P size */
    margin-bottom: 18px;
    line-height: 1.4;
  }

  .description {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .features-list1st-box {
    margin-bottom: 18px;
  }

  .features-list1st-box li {
    padding: 18px;
    border-radius: 10px;
  }

  .features-list li {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .list-content p:first-child {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .list-content p:last-child {
    font-size: 15px;
  }

  .image-content img {
    border-radius: 10px;
  }
}

/* Desktop Styles */
@media screen and (min-width: 1024px) {
  .why-choose-section {
    padding: 60px 40px;
    margin-top: 100px;
  }

  .content-choose-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }

  .text-content {
    order: 1;
  }

  .image-content {
    order: 2;
    max-width: 600px;
  }

  .section-title {
    font-size: 32px;
    /* Desktop H2 size */
    margin-bottom: 12px;
  }

  .main-heading-text {
    font-size: 18px;
    /* Desktop P size */
    margin-bottom: 20px;
  }

  .description {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .features-list1st-box {
    margin-bottom: 20px;
  }

  .features-list1st-box li {
    padding: 20px;
  }

  .features-list li {
    margin-bottom: 20px;
  }

  .list-content p:first-child {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .list-content p:last-child {
    font-size: 16px;
  }
}

/* Large Desktop Styles */
@media screen and (min-width: 1200px) {
  .content-choose-container {
    gap: 80px;
  }

  .section-title {
    font-size: 36px;
    /* Large Desktop H2 size */
  }

  .main-heading-text {
    font-size: 19px;
    /* Large Desktop P size */
    line-height: 1.2;
  }

  .features-list1st-box li {
    padding: 24px;
  }
}

/* Extra Large Desktop */
@media screen and (min-width: 1440px) {
  .why-choose-section {
    padding: 80px 60px;
  }

  .content-choose-container {
    gap: 100px;
  }

  .section-title {
    font-size: 38px;
    /* XL Desktop H2 size */
  }

  .main-heading-text {
    font-size: 20px;
    /* XL Desktop P size */
  }
}

/* Small Mobile Optimization */
@media screen and (max-width: 480px) {
  .why-choose-section {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .content-choose-container {
    gap: 30px;
  }

  .section-title {
    font-size: 20px;
    /* Small Mobile H2 size */
    margin-bottom: 6px;
  }

  .main-heading-text {
    font-size: 15px;
    /* Small Mobile P size */
    margin-bottom: 20px;
  }

  .features-list1st-box {
    margin-bottom: 14px;
  }

  .features-list1st-box li {
    padding: 14px;
    border-radius: 6px;
  }

  .features-list li {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .list-content p:first-child {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .list-content p:last-child {
    font-size: 13px;
  }

  .image-content img {
    border-radius: 6px;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
  .why-choose-section {
    padding: 25px 12px;
    margin-top: 30px;
  }

  .main-heading {
    font-size: 22px;
    line-height: 1.2;
  }

  .description {
    font-size: 14px;
  }

  .features-list1st-box li {
    padding: 12px;
  }
}

/* Landscape orientation for tablets */
@media screen and (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  .content-choose-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .text-content {
    order: 1;
  }

  .image-content {
    order: 2;
  }
}

/* Print styles */
@media print {
  .why-choose-section {
    margin: 20px auto;
    padding: 20px;
  }

  .content-choose-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-content img {
    max-height: 300px;
    object-fit: contain;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .section-title {
    color: #0052CC;
  }

  .features-list1st-box li {
    background-color: #f0f4ff;
    border: 2px solid #3E76FE;
  }

  .image-content img {
    border: 2px solid #333;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  .features-list1st-box li,
  .image-content img {
    transition: none;
  }

  .features-list1st-box li:hover,
  .image-content img:hover {
    transform: none;
  }
}



/* global Section Styling */
.revenue-growth {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
}

/* Image Wrapper */
.image-wrap {
  flex: 1;
  margin-right: 100px;
}

.image-wrap img {
  width: 100%;
  height: 490px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Text Content */
.text-page {
  flex: 1;
  max-width: 600px;
}

.subheading-text {
  color: #3E76FE;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading-text {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.4;
}

.description-page {
  font-size: 18px;
  color: #5E6570;
  line-height: 1.6;
  margin-bottom: 15px;
}



/* Tablets */
@media (max-width: 1024px) {
  .content-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .image-wrap {
    margin-right: 0;
    max-width: 80%;
  }

  .image-wrap img {
    height: auto;
    max-height: 400px;
  }

  .main-heading-text {
    font-size: 30px;
  }

  .description-page {
    font-size: 16px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .revenue-growth {
    padding: 40px 15px;
  }

  .main-heading-text {
    font-size: 26px;
    line-height: 1.3;
  }

  .description-page {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .image-wrap {
    max-width: 100%;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .subheading-text {
    font-size: 12px;
  }

  .main-heading-text {
    font-size: 22px;
  }

  .description-page {
    font-size: 14px;
  }

  .image-wrap img {
    border-radius: 8px;
    max-height: 300px;
  }
}


/* Offer Section page*/
.offer-section {
  max-width: 1440px;
  margin: 50px auto 100px;
  display: flex;
  align-items: left;
  padding: 0% 5%;
}

.offer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* Text Content */
.text-content {
  text-align: left;
}

.subheading-offer {
  color: #3E76FE;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading-offer {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.4;
}

.description-offer {
  font-size: 18px;
  color: #5E6570;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Offer List */
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list1st-box li {
  background-color: #e2eafc;
  padding: 20px;
  border-radius: 10px;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.list-number {
  color: #38404A;
  font-weight: bold;
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  /* background-color: #f0f4ff; */
}

.list-content p {
  color: #38404A;
  display: flex;
  flex-direction: column;
}

/* Image Section */
.offer-image {
  flex: 1;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}



/* Tablets */
@media (max-width: 1024px) {
  .offer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .text-content {
    text-align: center;
  }

  .main-heading-offer {
    font-size: 30px;
  }

  .description-offer {
    font-size: 16px;
  }

  .offer-image {
    max-width: 80%;
    margin: 0 auto;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .offer-section {
    margin: 30px auto 60px;
    padding: 0 15px;
  }

  .main-heading-offer {
    font-size: 26px;
    line-height: 1.3;
  }

  .description-offer {
    font-size: 15px;
  }

  .offer-list li {
    font-size: 14px;
  }

  .offer-list1st-box li {
    padding: 15px;
  }

  .offer-image {
    max-width: 100%;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .subheading-offer {
    font-size: 12px;
  }

  .main-heading-offer {
    font-size: 22px;
  }

  .description-offer {
    font-size: 14px;
  }

  .offer-list li {
    font-size: 13px;
  }

  .list-number {
    font-size: 12px;
    width: 25px;
    height: 25px;
  }

  .offer-image img {
    border-radius: 8px;
  }
}

/* Features section*/

.features-section {
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.curve-container2 {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: -60px;
}

.curve-image2 {
  height: auto;
  width: 35%;
  max-width: 500px;
  display: inline-block;
  margin-bottom: -35px;
}

/* Section Title and Description */
.section-title-features {
  font-size: 48px;
  color: #111827;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.section-description-features {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  text-align: center;
}

/* Features Grid */
.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Feature Box */
.feature-box {
  background: #fff;
  border: 2px solid #C7D0F9;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  width: 300px;
  max-width: 100%;
  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(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.icon-container {
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
}

/* Title and Description */
.feature-title {
  font-size: 18px;
  color: #111827;
  margin-bottom: 10px;
  min-height: 54px;
  /* Space for 2 lines */
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-description {
  font-size: 15px;
  color: #747980;
  line-height: 1.6;
}



/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .section-title-features {
    font-size: 36px;
  }

  .section-description-features {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .features-container {
    gap: 30px;
  }

  .feature-box {
    width: 45%;
    min-width: 260px;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .features-section {
    padding: 40px 15px;
  }

  .section-title-features {
    font-size: 28px;
  }

  .section-description-features {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .feature-box {
    width: 90%;
    text-align: center;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-description {
    font-size: 14px;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .curve-image2 {
    width: 70%;
  }

  .section-title-features {
    font-size: 24px;
  }

  .feature-box {
    width: 100%;
    padding: 20px;
  }

  .feature-title {
    font-size: 15px;
  }

  .feature-description {
    font-size: 13px;
  }
}


/* Extra-Addons section */
.addons-section {
  text-align: center;
  padding: 100px 20px;
  background-color: #fff;
}

.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: 1fr 1fr 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:nth-child(4),
.addon-item:nth-child(5) {
  align-items: center;
  justify-content: center;
  grid-column: span 1;
}

.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;
}



/* Tablets */
@media (max-width: 1024px) {
  .addons-grid {
    grid-template-columns: 1fr 1fr;
    /* 2 columns */
    gap: 30px;
  }

  .section-title2 {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 15px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .addons-section {
    padding: 60px 15px;
  }

  .addons-grid {
    grid-template-columns: 1fr;
    /* 1 column */
    gap: 25px;
  }

  .section-title2 {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .addon-title {
    font-size: 13px;
  }

  .addon-description {
    font-size: 12px;
  }

  .curve-image3 {
    width: 50%;
    margin-bottom: -25px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .section-title2 {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .addon-title {
    font-size: 12px;
  }

  .addon-description {
    font-size: 11px;
  }

  .curve-image3 {
    width: 70%;
  }
}


/* FAQ section */
.faq-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  margin-left: 60px;
}

.faq-header {
  max-width: 700px;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.faq-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
  max-width: 400px;
}

.faq-content {
  display: flex;
  flex-direction: column;
  max-width: 900px;

}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  cursor: pointer;
  font-weight: 500;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-answer {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  max-height: 300px;
  padding: 0 1.2rem 1.2rem;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ccc;
  color: #ccc;
  margin-left: 1rem;
}

.faq-toggle.active {
  border-color: #555;
  color: #555;
}



/* Tablets & Up (default two-column layout) */
@media screen and (min-width: 768px) {
  .faq-container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-left: 40px;
    /* reduce spacing for mid-screens */
  }

  .faq-header {
    width: 30%;
    padding-right: 2rem;
  }

  .faq-content {
    width: 70%;
    margin-left: 0;
  }
}

/* Tablets (portrait & small landscape) */
@media screen and (max-width: 1024px) {
  .faq-title {
    font-size: 1.75rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

/* Mobiles */
@media screen and (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    margin-left: 0;
    padding: 1.5rem;
  }

  .faq-header {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 2rem;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  .faq-content {
    width: 100%;
    margin-left: 0;
  }
}

/* Small Mobiles */
@media screen and (max-width: 480px) {
  .faq-title {
    font-size: 1.3rem;
  }

  .faq-subtitle {
    font-size: 0.85rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .faq-toggle {
    min-width: 20px;
    height: 20px;
  }
}


/* Footer Styles */
.footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #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;
  }
}

/* ============================================
   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: 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: 0px 20px;
  background: #ffffff;
  position: relative;
  z-index: 10;
  padding-top: 5%;
}

.counter-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  background: #e6f3ff;
  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: #528BF4;
  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: #528BF4;
  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;
  }
}

@media (max-width: 1366px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 60px;
    height: calc(110vh - 80px);
    position: relative;
    z-index: 3;
    max-width: 1620px;
    margin: 0 auto;
  }
}
