/*
Theme Name: DPS Theme
Theme URI: https://datapulsesoft.com
Author: DPS
Author URI: https://datapulsesoft.com
Description: Custom theme for DPS.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dps-website
*/

/* Global CSS -> Start */

:root {
  --secondary: rgba(0, 211, 168, 1);
  --primary: rgba(0, 124, 207, 1);
  --text: #09162d;
}

body.nav-open {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  max-width: 100%;
  font-family: 'Poppins Regular', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  border: none;
}

/* Global CSS -> End */

/* Landing Page -> Start */

/* Hero Section -> Start */
.hero-section {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column; /* header on top, swiper below */
  justify-content: flex-start;
  align-items: center;
  background-image: url('assets/img/hero-bg.jpg');
  background-color: #0c162f;
  background-size: 100% 100%;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  display: flex;
}
.hero-swiper .swiper-wrapper {
  display: flex;
  height: 100%;
  align-items: center;
}
.hero-swiper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 2em;
  max-width: 600px;
}

.hc-title {
  font-family: 'Poppins Bold', sans-serif;
  color: var(--secondary);
  font-size: 5em;
  line-height: 1;
}
.hc-text {
  font-size: 1.4em;
  color: white;
  font-family: 'Poppins Medium', sans-serif;
}
.hc-btn {
  background-color: rgba(0, 124, 207, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1em;
  border-radius: 100px;
  color: white;
  font-family: 'Poppins Bold', sans-serif;
  font-weight: bold;
  padding: 0.8em 2em;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.hc-btn:hover {
  background-color: var(--primary);
}

.hc-img {
  width: 40%;
  object-fit: contain;
  height: auto;
}
.slide-2 .hc-img {
  width: 50%;
  position: absolute;
  right: 0;
  top: 30%;
}
.slide-3 .hc-img {
  width: 32%;
  position: absolute;
  right: 0;
  top: 30%;
}

/* Header */
.hero-header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  object-fit: contain;
  cursor: pointer;
  height: 150px;
}
.header-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2em;
}
.links {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2em;
}
.link {
  color: white;
  text-transform: uppercase;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5em;
}
.link.active {
  font-family: 'Poppins Bold', sans-serif;
  font-weight: bold;
}
.h-icon {
  margin-top: -3px !important;
}

/* Services Dropdown */
.services-dropdown {
  position: relative;
}

.services-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0c162f;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 211, 168, 0.2);
  padding: 16px;
  min-width: 540px;
}

.services-dropdown:hover .services-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 14px;
  color: white;
  text-decoration: none;
  font-size: 0.9em;
  font-family: 'Poppins Regular', sans-serif;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px 18px;
}

.services-dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dropdown-label {
  font-size: 0.85em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 2px 0 2px 2px;
  font-family: 'Poppins Medium', sans-serif;
}

.dropdown-label--ai {
  margin-top: 10px;
}

.dropdown-item--highlight {
  color: var(--secondary);
  font-family: 'Poppins Medium', sans-serif;
}

.dropdown-ai-group {
  border: 1px solid rgba(0, 211, 168, 0.25);
  background: rgba(0, 211, 168, 0.08);
  border-radius: 10px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-item--muted {
  opacity: 0.9;
}

.dropdown-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  margin-top: 14px;
  padding: 12px 14px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 12px;
  font-family: 'Poppins Bold', sans-serif;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(0, 211, 168, 0.1);
  color: var(--secondary);
  padding-left: 20px;
}

.services-link:hover {
  color: var(--secondary) !important;
}

/* Mobile dropdown styles */
@media (max-width: 992px) {
  .services-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 211, 168, 0.1);
    box-shadow: none;
    border: none;
    margin-top: 10px;
    padding: 12px;
    min-width: unset;
  }

  .dropdown-item {
    padding: 10px 12px;
    font-size: 0.92em;
  }

  .dropdown-item:hover {
    background: rgba(0, 211, 168, 0.2);
    padding-left: 16px;
  }

  .services-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dropdown-ai-group {
    padding: 8px 10px;
  }

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

.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1em;
  border-radius: 100px;
  background-color: rgba(0, 211, 168, 1);
  color: white;
  font-family: 'Poppins Bold', sans-serif;
  font-weight: bold;
  padding: 0.8em 2em;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.header-btn:hover {
  background-color: var(--primary);
}

.hb-icon-div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: rgba(0, 211, 168, 1);
  font-size: 0.7em;
  padding: 0.5em;
  border-radius: 100px;
  width: 10px;
  height: 10px;
}
.hb-icon {
  margin-top: -3px !important;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 42px;
  height: 36px;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-backdrop {
  display: none;
}

/* Responsive */
@media (max-width: 1400px) {
  .logo {
    height: 130px;
  }
  .links {
    column-gap: 1.5em;
  }
  .hc-title {
    font-size: 4.25em;
  }
  .hc-text {
    font-size: 1.25em;
  }
  .hc-img {
    width: 44%;
  }
  .slide-2 .hc-img {
    width: 52%;
    top: 28%;
  }
  .slide-3 .hc-img {
    width: 36%;
    top: 28%;
  }
}
@media (max-width: 1200px) {
  .hero-section {
    min-height: 100dvh;
  }
  .logo {
    height: 115px;
  }
  .header-links,
  .links {
    column-gap: 1.25em;
  }
  .link {
    font-size: 0.95em;
  }
  .header-btn {
    padding: 0.7em 1.6em;
  }
  .hero-content {
    max-width: 1100px;
  }
  .hc-left {
    max-width: 560px;
  }
  .hc-title {
    font-size: 3.75em;
  }
  .hc-text {
    font-size: 1.15em;
  }
  .hc-img {
    width: 42%;
  }
  .slide-2 .hc-img {
    width: 50%;
    top: 26%;
  }
  .slide-3 .hc-img {
    width: 34%;
    top: 26%;
  }
}
@media (max-width: 992px) {
  .logo {
    height: 100px;
  }
  .links {
    column-gap: 1em;
  }
  .link {
    font-size: 0.9em;
  }
  .header-btn {
    padding: 0.6em 1.4em;
  }
  .hero-section {
    height: auto;
  }
  .hero-swiper,
  .hero-swiper .swiper-slide {
    height: auto;
  }
  .hero-content {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 1.75em;
    text-align: center;
    min-height: 70vh;
  }
  .hc-left {
    align-items: center;
    max-width: 640px;
    row-gap: 1.5em;
  }
  .hc-title {
    font-size: 3em;
    line-height: 1.05;
  }
  .hc-text {
    font-size: 1.1em;
  }
  .hc-img,
  .slide-2 .hc-img,
  .slide-3 .hc-img {
    position: static;
    width: min(76%, 520px);
    margin: 0 auto;
  }
  .hamburger {
    display: flex;
  }
  .hero-header .header-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    transform: translateX(100%);
    background: #0c162f;
    box-shadow: -16px 0 32px rgba(0, 0, 0, 0.35);
    padding: 96px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.35s ease;
    z-index: 60;
  }
  .hero-header.is-open .header-links {
    transform: translateX(0);
  }
  .hero-header .header-links .links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero-header .header-links .link {
    font-size: 1rem;
    text-transform: none;
    line-height: 1.2;
  }
  .hero-header .header-links .mobile-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: auto;
  }
  .hero-header.is-open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hero-header.is-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .hero-header.is-open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero-header .nav-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 55;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
  }
  .hero-header.is-open .nav-backdrop {
    display: block;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    padding: 0 1em;
    gap: 2em;
  }
  .header-links {
    max-width: 55vw;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .header-links::-webkit-scrollbar {
    display: none;
  }
  .links {
    column-gap: 1em;
    white-space: nowrap;
  }
  .link {
    font-size: 0.9em;
    text-transform: none;
  }
  .logo {
    height: 90px;
  }
  .header-btn {
    font-size: 0.9em;
    column-gap: 0.75em;
  }
  .hc-title {
    font-size: 2.4em;
  }
  .hc-text {
    font-size: 1.05em;
  }
  .hc-btn {
    padding: 0.7em 1.4em;
  }
  .hb-icon-div {
    width: 9px;
    height: 9px;
    padding: 0.45em;
  }
}
@media (max-width: 576px) {
  .hero-section {
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
  }
  .hero-header {
    gap: 0.5em;
  }
  .logo {
    height: 72px;
  }
  .header-links {
    display: none;
  }
  .header-btn {
    padding: 0.6em 1.2em;
    font-size: 0.9em;
  }
  .hc-left {
    max-width: 92vw;
  }
  .hc-title {
    font-size: 2em;
  }
  .hc-text {
    font-size: 1em;
  }
  .hc-btn {
    width: 100%;
    justify-content: center;
  }
  .hc-img {
    width: 82%;
  }
}
@media (max-width: 420px) {
  .logo {
    height: 64px;
  }
  .hc-title {
    font-size: 1.8em;
  }
  .hc-text {
    font-size: 0.95em;
  }
  .hc-btn {
    padding: 0.6em 1.1em;
    font-size: 0.9em;
  }
  .hb-icon-div {
    width: 8px;
    height: 8px;
    padding: 0.4em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header-btn,
  .hc-btn {
    transition: none;
  }
}

/* prevent layout shift when drawer opens */
:root {
  --sbw: 0px;
}
body.nav-open {
  overflow: hidden;
}

/* Hero Section -> End */

/* About Section -> Start */

.aboutus-section {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2em 0;
  justify-content: space-between;
}

.as-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.as-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 40%;
  row-gap: 5px;
}

.as-title-div {
  display: flex;
  align-items: center;
  column-gap: 1em;
}

.as-title {
  font-size: 2.5em;
  color: rgba(11, 37, 66, 1);
  font-family: 'Poppins Bold', sans-serif;
}

.as-subtitle {
  color: black;
  font-family: 'Poppins Medium', sans-serif;
  font-size: 1.5em;
}

.as-subtitle span {
  color: var(--secondary);
}

.as-btn {
  margin: 1em 0;
}

.as-text {
  font-size: 1em;
  color: rgba(11, 37, 66, 1);
  line-height: 1.5;
  opacity: 0.7;
}

.as-img {
  width: 50%;
  height: auto;
}

@media (max-width: 1400px) {
  .as-content {
    max-width: 1200px;
    gap: 2em;
  }
  .as-left {
    max-width: 45%;
  }
  .as-title {
    font-size: 2.3em;
  }
  .as-subtitle {
    font-size: 1.4em;
  }
  .as-img {
    width: 48%;
  }
}

@media (max-width: 1200px) {
  .aboutus-section {
    padding: 2em 1.25em;
  }
  .as-content {
    max-width: 1100px;
    gap: 1.75em;
  }
  .as-left {
    max-width: 48%;
  }
  .as-title {
    font-size: 2.1em;
  }
  .as-subtitle {
    font-size: 1.3em;
  }
  .as-text {
    font-size: 0.975em;
  }
  .as-img {
    width: 46%;
  }
}

@media (max-width: 992px) {
  .as-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5em;
  }
  .as-left {
    max-width: 720px;
    width: 100%;
    align-items: center;
  }
  .as-title-div {
    justify-content: center;
  }
  .as-title {
    font-size: 2em;
  }
  .as-subtitle {
    font-size: 1.2em;
  }
  .as-text {
    font-size: 1em;
    line-height: 1.6;
    max-width: 720px;
  }

  .as-img {
    width: min(80%, 560px);
    margin: 0 auto;
    display: block;
  }

  .as-btn {
    margin: 0.75em 0 0.5em;
  }
}

@media (max-width: 768px) {
  .aboutus-section {
    padding: 1.75em 1em;
  }
  .as-title {
    font-size: 1.85em;
  }
  .as-subtitle {
    font-size: 1.15em;
  }
  .as-text {
    font-size: 0.975em;
  }
  .as-title-img {
    width: 34px;
    height: auto;
  }
  .as-img {
    width: min(86%, 520px);
  }
}

@media (max-width: 576px) {
  .aboutus-section {
    padding: 1.5em 0.9em;
  }
  .as-title-div {
    column-gap: 0.6em;
  }
  .as-title {
    font-size: 1.65em;
  }
  .as-subtitle {
    font-size: 1.05em;
  }
  .as-text {
    font-size: 0.95em;
  }
  .as-btn {
    width: 100%;
    justify-content: center;
  }
  .as-img {
    width: 92%;
  }
}

@media (max-width: 420px) {
  .as-title {
    font-size: 1.5em;
  }
  .as-subtitle {
    font-size: 1em;
  }
  .as-text {
    font-size: 0.92em;
  }
  .as-title-img {
    width: 28px;
  }
  .as-content {
    gap: 1.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .as-btn {
    transition: none;
  }
}

/* About Section -> End */

/* Featured Services Section -> Start */

.services-section {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2em 0;
  justify-content: center;
  background-color: #00111f;
}

.services-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  row-gap: 3em;
  padding: 3em 0;
}

.sc-title-div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 1em;
}

.sc-title {
  font-size: 2em;
  color: white;
  font-family: 'Poppins Bold', sans-serif;
}

.sc-title span {
  color: var(--secondary);
}

.service-boxes {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  gap: 1em;
  margin-top: 3em;
}

.service-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-radius: 50px;
  padding: 2em;
  row-gap: 1em;
  width: 350px;
}

.sb-white {
  background-color: white;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.sb-dark {
  background-color: var(--secondary);
}

.sb-img {
  width: 100px;
  height: auto;
  object-fit: contain;
  margin-top: -90px;
  align-self: center;
  display: flex;
}

.sb-title {
  font-size: 1.2em;
  font-weight: bold;
  color: rgba(4, 23, 45, 1);
}

.sb-text {
  font-size: 0.9em;
  color: black;
}

.sb-link-div {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}

.sb-link {
  display: flex;
  align-self: flex-end;
  font-size: 0.8em;
  column-gap: 0.5em;
  font-family: 'Poppins Bold', sans-serif;
}

.sb-white .sb-link {
  color: var(--primary);
}

.sb-dark .sb-link {
  color: white;
}

.sb-dark .sb-title,
.sb-dark .sb-text {
  color: white;
}

@media (max-width: 1400px) {
  .services-content {
    max-width: 1200px;
    row-gap: 2.5em;
    padding: 2.5em 0;
  }
  .service-boxes {
    gap: 1.25em;
  }
  .service-box {
    width: 1px;
    flex: 1 1 0;
  }
  .sb-img {
    width: 92px;
    margin-top: -80px;
  }
  .sc-title {
    font-size: 1.9em;
  }
}

@media (max-width: 1200px) {
  .services-section {
    padding: 2em 1.25em;
  }
  .services-content {
    max-width: 1100px;
  }
  .service-boxes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25em;
  }
  .service-box {
    width: auto;
  }
  .sb-img {
    width: 88px;
    margin-top: -72px;
  }
  .sb-title {
    font-size: 1.15em;
  }
  .sb-text {
    font-size: 0.95em;
  }
}

@media (max-width: 992px) {
  .services-content {
    row-gap: 2em;
  }
  .service-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1em;
    margin-top: 2em;
  }
  .service-box {
    border-radius: 32px;
    padding: 1.5em;
  }
  .sb-img {
    width: 82px;
    margin-top: -64px;
  }
  .sc-title {
    font-size: 1.8em;
    text-align: center;
  }
  .sc-title-img {
    width: 120px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 1.75em 1em;
  }
  .services-content {
    row-gap: 1.5em;
  }
  .sc-title-div {
    row-gap: 0.75em;
  }
  .sc-title {
    font-size: 1.65em;
    text-align: center;
  }
  .service-boxes {
    grid-template-columns: 1fr;
    gap: 5em;
  }
  .service-box {
    padding: 1.4em 1.2em;
    border-radius: 28px;
  }

  .sb-img {
    width: 78px;
    margin-top: -40px;
  }
  .sb-title {
    font-size: 1.1em;
  }
  .sb-text {
    font-size: 0.95em;
    line-height: 1.6;
  }
  .sb-link {
    font-size: 0.85em;
  }
}

@media (max-width: 576px) {
  .sc-title {
    font-size: 1.5em;
  }
  .service-box {
    padding: 1.2em 1em;
    border-radius: 24px;
  }
  .sb-img {
    width: 72px;
    margin-top: -28px;
  }
  .sb-title {
    font-size: 1.05em;
  }
  .sb-text {
    font-size: 0.93em;
  }
  .sb-link-div {
    justify-content: center;
  }
  .sb-link {
    align-self: center;
  }
}

@media (max-width: 420px) {
  .sc-title {
    font-size: 1.4em;
  }
  .sc-title-img {
    width: 100px;
  }
  .service-box {
    padding: 1.1em 0.9em;
  }
  .sb-img {
    width: 66px;
    margin-top: -60px;
  }
  .sb-text {
    font-size: 0.9em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-box,
  .sb-link {
    transition: none;
  }
}

/* Featured Services Section -> End */

/* Top Services Section -> Start */

.top-services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  row-gap: 1em;
}

.tsc-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 0;
}

.tsc-title-div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 0.6em;
}

.tsc-title {
  font-size: 2em;
  color: rgba(11, 37, 66, 1);
  font-family: 'Poppins Medium', sans-serif;
}

.tsc-title span {
  color: var(--secondary);
}

.tsc-subtitle {
  color: rgba(11, 37, 66, 1);
  font-family: 'Poppins Regular', sans-serif;
  font-size: 1em;
}

.tsc-subtitle span {
  font-family: 'Poppins Bold', sans-serif;
  color: black;
}

.tsc-boxes {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 90%;
  row-gap: 6em;
  column-gap: 2em;
  margin-top: 2em;
  flex-wrap: wrap;
}

.tsc-boxes .service-box {
  flex: 1 1 200px;
  min-width: 300px;
}

@media (max-width: 1400px) {
  .tsc-content {
    max-width: 1200px;
    padding: 2em 0;
  }
  .tsc-boxes {
    column-gap: 1.5em;
    row-gap: 4em;
  }
  .tsc-title {
    font-size: 1.9em;
  }
  .tsc-subtitle {
    font-size: 1em;
    max-width: 70ch;
    text-align: center;
  }
  .tsc-boxes .service-box {
    flex: 1 1 260px;
  }
}

@media (max-width: 1200px) {
  .top-services-section {
    padding: 2em 1.25em;
  }
  .tsc-content {
    max-width: 1100px;
  }
  .tsc-title {
    font-size: 1.85em;
    text-align: center;
  }
  .tsc-subtitle {
    font-size: 0.95em;
    text-align: center;
  }
  .tsc-boxes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5em;
  }
  .tsc-boxes .service-box {
    flex: none;
  }
  .sb-img {
    width: 88px;
    margin-top: -72px;
  }
}

@media (max-width: 992px) {
  .tsc-content {
    padding: 1.75em 1em;
  }
  .tsc-title {
    font-size: 1.7em;
  }
  .tsc-subtitle {
    font-size: 0.95em;
    line-height: 1.5;
  }
  .tsc-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25em;
  }
  .tsc-boxes .service-box {
    border-radius: 32px;
    padding: 1.5em;
  }
  .sb-img {
    width: 82px;
    margin-top: -60px;
  }
  .sb-title {
    font-size: 1.15em;
  }
  .sb-text {
    font-size: 0.95em;
  }
}

@media (max-width: 768px) {
  .tsc-title {
    font-size: 1.6em;
  }
  .tsc-subtitle {
    font-size: 0.9em;
  }
  .tsc-boxes {
    grid-template-columns: 1fr;
    gap: 5em;
  }
  .tsc-boxes .service-box {
    padding: 1.4em 1.2em;
    border-radius: 28px;
  }
  .sb-img {
    width: 76px;
    margin-top: -40px;
  }
  .sb-title {
    font-size: 1.1em;
  }
  .sb-text {
    font-size: 0.93em;
    line-height: 1.6;
  }
  .sb-link {
    font-size: 0.85em;
  }
}

@media (max-width: 576px) {
  .tsc-title {
    font-size: 1.45em;
    text-align: center;
  }
  .tsc-subtitle {
    font-size: 0.88em;
  }
  .tsc-boxes .service-box {
    padding: 1.2em 1em;
    border-radius: 24px;
  }
  .sb-img {
    width: 70px;
    margin-top: -28px;
  }
  .sb-title {
    font-size: 1.05em;
  }
  .sb-text {
    font-size: 0.92em;
  }
  .sb-link-div {
    justify-content: center;
  }
  .sb-link {
    align-self: center;
  }
}

@media (max-width: 420px) {
  .tsc-title {
    font-size: 1.35em;
  }
  .tsc-subtitle {
    font-size: 0.85em;
  }
  .tsc-boxes .service-box {
    padding: 1.1em 0.9em;
  }
  .sb-img {
    width: 64px;
    margin-top: -60px;
  }
  .sb-text {
    font-size: 0.9em;
  }
}

@media (min-width: 1600px) {
  .tsc-content {
    max-width: 1320px;
  }
  .tsc-subtitle {
    max-width: 64ch;
  }
  .tsc-boxes {
    column-gap: 2em;
    row-gap: 5em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tsc-boxes .service-box,
  .sb-link {
    transition: none;
  }
}

/* Top Services Section -> End */

/* Why Section -> Start */

.why-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background-color: #00111f;
  margin-top: 4em;
}

.ws-row-div {
  padding: 1.5em 0;
  width: 100%;
  position: relative;
}

.ws-div {
  display: flex;
  align-items: flex-start;
  column-gap: 0.6em;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.ws-light::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-color: #007ccf;
  opacity: 18%;
  mix-blend-mode: lighten;
}

.ws-text {
  font-size: 0.9em;
  color: white;
}

.ws-text span {
  font-weight: bold;
  color: var(--secondary);
}

.ws-img {
  width: 10px;
  height: auto;
  object-fit: contain;
  margin-top: 5px;
}

.ws-title {
  font-size: 1.4em;
  font-weight: bold;
  color: white;
  font-family: 'Poppins Medium', sans-serif;
}

@media (max-width: 1400px) {
  .ws-div {
    max-width: 1200px;
    padding: 0 1rem;
  }
  .ws-title {
    font-size: 1.35em;
  }
  .ws-text {
    font-size: 0.95em;
  }
  .ws-img {
    width: 12px;
  }
}

@media (max-width: 1200px) {
  .why-section {
    margin: 3.5em 0;
  }
  .ws-row-div {
    padding: 1.4em 0;
  }
  .ws-div {
    max-width: 1100px;
  }
  .ws-title {
    font-size: 1.3em;
  }
  .ws-text {
    font-size: 0.95em;
  }
}

@media (max-width: 992px) {
  .why-section {
    margin: 3em 0;
  }
  .ws-row-div {
    padding: 1.35em 0;
  }
  .ws-div {
    max-width: 900px;
    padding: 0 1.25rem;
    column-gap: 0.75em;
  }
  .ws-title {
    font-size: 1.25em;
  }
  .ws-text {
    font-size: 0.98em;
    line-height: 1.7;
  }
  .ws-img {
    width: 14px;
    margin-top: 4px;
  }
  .ws-light::after {
    opacity: 0.16;
  }
}

@media (max-width: 768px) {
  .why-section {
    margin: 2.5em 0;
  }
  .ws-row-div {
    padding: 1.25em 0;
  }
  .ws-div {
    max-width: 680px;
    padding: 0 1rem;
    align-items: center;
    column-gap: 0.8em;
  }
  .ws-title {
    font-size: 1.2em;
    text-align: center;
    width: 100%;
  }
  .ws-text {
    font-size: 0.98em;
    text-align: left;
    max-width: 70ch;
  }
  .ws-img {
    width: 16px;
    margin-top: 2px;
  }
}

@media (max-width: 576px) {
  .why-section {
    margin: 2em 0;
  }
  .ws-row-div {
    padding: 1.1em 0;
  }
  .ws-div {
    max-width: 520px;
    padding: 0 0.9rem;
    column-gap: 0.7em;
  }
  .ws-title {
    font-size: 1.15em;
  }
  .ws-text {
    font-size: 0.96em;
  }
  .ws-img {
    width: 18px;
    margin-top: 2px;
  }
  .ws-light::after {
    opacity: 0.14;
  }
}

@media (max-width: 420px) {
  .ws-row-div {
    padding: 1em 0;
  }
  .ws-div {
    padding: 0 0.75rem;
    column-gap: 0.6em;
  }
  .ws-title {
    font-size: 1.1em;
  }
  .ws-text {
    font-size: 0.7em;
  }
  .ws-img {
    width: 18px;
    margin-top: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ws-row-div,
  .ws-light::after {
    transition: none;
  }
}

@media (prefers-contrast: more) {
  .ws-light::after {
    opacity: 0.2;
  }
}

/* Why Section -> End */

/* Who Box -> Start */

.who-boxes {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  gap: 1.5em;
  margin-top: 2em;
  flex-wrap: wrap;
}

.who-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  row-gap: 1em;
  padding: 1em;
  text-align: center;
  width: 220px;
}

.wb-title {
  font-size: 2em;
  font-weight: bold;
  font-family: 'Poppins Medium', sans-serif;
  color: var(--secondary);
}

.who-box.dark {
  background-color: rgba(0, 211, 168, 0.07);
}

@media (max-width: 1400px) {
  .tsc-content {
    max-width: 1200px;
    padding: 0 1rem;
  }
  .who-box {
    width: calc(20% - 1.2em);
  }
}

@media (max-width: 1200px) {
  .who-boxes {
    justify-content: center;
    gap: 1.25em;
  }
  .who-box {
    width: calc(25% - 1em);
    padding: 0.9em;
  }
  .wb-title {
    font-size: 1.8em;
  }
}

@media (max-width: 992px) {
  .who-box {
    width: calc(33.333% - 1em);
  }
  .wb-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .who-boxes {
    gap: 1em;
  }
  .who-box {
    width: calc(50% - 0.75em);
  }
}

@media (max-width: 576px) {
  .who-boxes {
    justify-content: center;
  }
  .who-box {
    width: 100%;
    max-width: 420px;
  }
  .wb-title {
    font-size: 1.5em;
  }
}

@media (max-width: 420px) {
  .who-box {
    padding: 0.9em;
  }
  .wb-title {
    font-size: 1.35em;
  }
  .wb-text {
    font-size: 0.98em;
  }
}

/* Who Box -> End */

/* Commitment Section -> Start */

.commitment-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 4em;
  padding-bottom: 2em;
}

.cs-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  padding: 3em;
  background-color: #0b2542;
  padding-right: 8em;
  border-radius: 50px;
  z-index: -1;
  row-gap: 1em;
  position: relative;
  margin-top: -100px;
}

.csl-title {
  color: white;
  font-weight: bold;
  font-size: 2em;
  line-height: 1;
  font-family: 'Poppins Medium', sans-serif;
}

.csl-title span {
  color: var(--secondary);
}

.csl-text {
  color: white;
  font-size: 1em;
  line-height: 1.4;
}

.cs-right {
  width: 52%;
  height: auto;
  object-fit: contain;
  margin-left: auto;
  z-index: 100;
  margin-left: -100px;
}

@media (max-width: 1200px) {
  .commitment-section {
    padding-top: 3.5em;
  }
  .cs-left {
    padding: 2.5em;
    padding-right: 5em;
    margin-top: -72px;
  }
  .cs-right {
    width: 50%;
    margin-left: -60px;
  }
  .csl-title {
    font-size: 1.9em;
  }
}

@media (max-width: 992px) {
  .commitment-section {
    max-width: 920px;
    padding-top: 2.5em;
    padding-bottom: 2em;
    gap: 1.25em;
    flex-direction: column;
    align-items: center;
  }
  .cs-right {
    width: min(86%, 520px);
    margin-left: 0;
    order: -1;
  }
  .cs-left {
    width: 100%;
    padding: 2em 1.75em;
    padding-right: 1.75em;
    border-radius: 36px;
    margin-top: 0;
    z-index: 0;
    align-items: center;
    text-align: center;
    row-gap: 0.9em;
  }
  .csl-title {
    font-size: 1.8em;
    line-height: 1.05;
  }
  .csl-text {
    font-size: 1em;
    line-height: 1.6;
    max-width: 70ch;
  }
  .cs-right {
    display: block;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .commitment-section {
    padding-top: 2em;
  }
  .cs-left {
    border-radius: 28px;
    padding: 1.6em 1.4em;
  }
  .csl-title {
    font-size: 1.6em;
  }
  .csl-text {
    font-size: 0.98em;
  }
  .cs-right {
    width: min(88%, 460px);
  }
}

@media (max-width: 576px) {
  .commitment-section {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .cs-left {
    border-radius: 24px;
    padding: 1.4em 1.1em;
  }
  .csl-title {
    font-size: 1.45em;
  }
  .csl-text {
    font-size: 0.96em;
  }
  .cs-right {
    width: 92%;
  }
}

@media (max-width: 420px) {
  .csl-title {
    font-size: 1.35em;
  }
  .csl-text {
    font-size: 0.94em;
  }
  .cs-left {
    padding: 1.2em 1em;
    border-radius: 22px;
  }
}

/* Commitment Section -> End */

/* Automations Section -> Start */

.automations-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.5em;
  background-color: rgba(0, 211, 168, 0.05);
  padding: 1em;
}

.asc {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2em;
  max-width: 1200px;
  width: 100%;
  padding: 2em 0;
}

.asc-title {
  font-size: 1.7em;
  font-weight: bold;
  font-family: 'Poppins Medium', sans-serif;
  color: black;
  text-align: center;
  width: 60%;
}

.asc-title span {
  color: var(--secondary);
}

.as-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  gap: 1em;
  flex-wrap: wrap;
  width: 100%;
  padding: 1em 3em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  background-color: white;
}

.asc-img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

/* Safe defaults */
.asc-title {
  margin: 0 auto;
}
.as-box > * {
  min-width: 0;
}

/* Large desktops */
@media (max-width: 1400px) {
  .asc {
    max-width: 1200px;
    padding: 2em 1rem;
  }
  .asc-title {
    width: 64%;
    font-size: 1.6em;
  }
  .as-box {
    gap: 1em;
    padding: 1em 2.25em;
  }
  .asc-img {
    width: 90px;
  }
}

/* Desktops / laptops */
@media (max-width: 1200px) {
  .asc {
    max-width: 1100px;
  }
  .asc-title {
    width: 70%;
    font-size: 1.55em;
  }
  .as-box {
    padding: 1em 2em;
  }
  .asc-img {
    width: 84px;
  }
}

/* Tablets landscape / small laptops */
@media (max-width: 992px) {
  .automations-section {
    padding: 1em 1rem;
  }
  .asc {
    row-gap: 1.5em;
  }
  .asc-title {
    width: 85%;
    font-size: 1.5em;
  }
  .as-box {
    padding: 1em 1.25em;
    gap: 0.9em;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
  }
  .asc-img {
    width: 76px;
  }
}

/* Tablets portrait / large phones */
@media (max-width: 768px) {
  .asc-title {
    width: 100%;
    font-size: 1.45em;
  }
  .as-box {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8em 1em;
  }
  .asc-img {
    width: 68px;
  }
}

/* Phones */
@media (max-width: 576px) {
  .automations-section {
    padding: 0.9em 0.9rem;
  }
  .asc {
    padding: 1.25em 0;
  }
  .asc-title {
    font-size: 1.35em;
  }
  .as-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.9em 1em;
    gap: 0.8em;
  }
  .asc-img {
    width: 56px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .asc-title {
    font-size: 1.28em;
  }
  .asc-img {
    width: 50px;
  }
}

/* Automations Section -> End */

/* Agentic Services Section -> Start */

.agentic-services-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3em 1em;
  background-color: #00111f;
}

.agentic-services-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  row-gap: 2.25em;
}

.agentic-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25em;
}

.agentic-card {
  display: flex;
  flex-direction: column;
  row-gap: 0.9em;
  border-radius: 40px;
  padding: 2em;
  min-width: 0;
}

.agentic-card--light {
  background-color: white;
  color: rgba(4, 23, 45, 1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.agentic-card--dark {
  background-color: var(--secondary);
  color: white;
}

.agentic-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
}

.agentic-card--dark .agentic-card-icon {
  background: rgba(255, 255, 255, 0.16);
}

.agentic-card-icon i {
  font-size: 1.4em;
}

.agentic-card-title {
  font-size: 1.2em;
  font-family: 'Poppins Bold', sans-serif;
  margin: 0;
}

.agentic-card-kicker {
  margin: 0;
  font-family: 'Poppins Medium', sans-serif;
  opacity: 0.92;
}

.agentic-card-text {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.55;
}

.agentic-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  column-gap: 0.5em;
  font-family: 'Poppins Bold', sans-serif;
  text-decoration: none;
  width: fit-content;
  padding: 0.85em 1.1em;
  border-radius: 999px;
  background-color: rgba(0, 124, 207, 0.12);
  color: var(--primary);
}

.agentic-card--dark .agentic-card-cta {
  background-color: rgba(255, 255, 255, 0.16);
  color: white;
}

.agentic-tools {
  border-radius: 32px;
  padding: 1.75em;
  background: rgba(255, 255, 255, 0.06);
}

.agentic-tools-title {
  margin: 0;
  color: white;
  font-size: 1.3em;
  font-family: 'Poppins Bold', sans-serif;
}

.agentic-tools-subtitle {
  margin: 0.7em 0 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 820px;
}

.agentic-tools-list {
  list-style: none;
  padding: 0;
  margin: 1.25em 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}

.agentic-tools-list li {
  display: inline-flex;
  align-items: center;
  padding: 0.65em 0.9em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 0.92em;
}

.agentic-hero-eyebrow {
  margin: 0 0 0.75em;
  font-size: 0.9em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  font-family: 'Poppins Medium', sans-serif;
}

.agentic-page-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 3.5em 1em;
  background-color: white;
}

.agentic-page-section--alt {
  background-color: rgba(0, 17, 31, 0.03);
}

.agentic-page-content {
  width: 100%;
}

.agentic-section-title {
  margin: 0 0 0.75em;
  font-size: 1.8em;
  font-family: 'Poppins Bold', sans-serif;
  color: rgba(4, 23, 45, 1);
}

.agentic-section-subtitle {
  margin: -0.25em 0 0;
  color: rgba(4, 23, 45, 0.85);
  max-width: 820px;
}

.agentic-bullets {
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
  display: grid;
  gap: 0.7em;
}

.agentic-bullets li {
  position: relative;
  padding-left: 1.6em;
  line-height: 1.55;
}

.agentic-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-family: 'Poppins Bold', sans-serif;
}

.agentic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1em;
  margin-top: 1.25em;
}

.agentic-grid-item {
  background-color: white;
  border-radius: 22px;
  padding: 1.25em;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.06);
}

.agentic-grid-title {
  margin: 0;
  font-size: 1.05em;
  font-family: 'Poppins Bold', sans-serif;
  color: rgba(4, 23, 45, 1);
}

.agentic-grid-text {
  margin: 0.55em 0 0;
  color: rgba(4, 23, 45, 0.88);
  line-height: 1.55;
}

.agentic-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2em;
}

.agentic-cta-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 3.25em 1em;
  background-color: #00111f;
}

.agentic-cta-content {
  width: 100%;
  max-width: 1200px;
  border-radius: 34px;
  padding: 2.5em;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.agentic-cta-title {
  margin: 0;
  font-size: 2em;
  font-family: 'Poppins Bold', sans-serif;
}

.agentic-cta-text {
  margin: 0.9em 0 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 900px;
}

.agentic-cta-buttons {
  margin-top: 1.5em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85em;
}

.agentic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Poppins Bold', sans-serif;
  padding: 0.9em 1.25em;
  border-radius: 999px;
}

.agentic-btn--primary {
  background-color: var(--secondary);
  color: white;
}

.agentic-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  background: transparent;
}

.agentic-related-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 3.5em 1em;
  background-color: white;
}

.agentic-related-cards {
  margin-top: 1.25em;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1em;
}

.agentic-related-card {
  display: block;
  text-decoration: none;
  border-radius: 26px;
  padding: 1.5em;
  background: rgba(0, 17, 31, 0.04);
  color: rgba(4, 23, 45, 1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.agentic-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.08);
}

.agentic-related-title {
  margin: 0;
  font-size: 1.1em;
  font-family: 'Poppins Bold', sans-serif;
}

.agentic-related-text {
  margin: 0.7em 0 0;
  color: rgba(4, 23, 45, 0.86);
  line-height: 1.55;
}

@media (max-width: 992px) {
  .agentic-cards {
    grid-template-columns: 1fr;
  }
  .agentic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .agentic-two-col {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  .agentic-related-cards {
    grid-template-columns: 1fr;
  }
  .agentic-cta-content {
    padding: 2em;
  }
  .agentic-cta-title {
    font-size: 1.7em;
  }
}

@media (max-width: 576px) {
  .agentic-card {
    border-radius: 28px;
    padding: 1.5em;
  }
  .agentic-tools {
    border-radius: 26px;
    padding: 1.4em;
  }
  .agentic-cta-content {
    border-radius: 26px;
    padding: 1.6em;
  }
  .agentic-section-title {
    font-size: 1.55em;
  }
  .agentic-grid {
    grid-template-columns: 1fr;
  }
}

/* Agentic Services Section -> End */

/* Industries Section -> Start */

.industries-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url('assets/img/features-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1em;
}

.is-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 1.5em;
  width: 100%;
  max-width: 1200px;
  padding: 2em 0;
}

.is-title {
  font-family: 'Poppins Medium', sans-serif;
  color: white;
  font-size: 1.5em;
}

.is-title span {
  color: var(--secondary);
}

.is-text {
  color: white;
  font-size: 1em;
  line-height: 1.5;
  width: 75%;
}

.is-boxes {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  row-gap: 6em;
  column-gap: 1em;
  margin-top: 5em;
}

.is-light {
  background: linear-gradient(47deg, rgba(0, 211, 168, 1) 1%, rgba(0, 179, 182, 1) 38%, rgba(0, 124, 207, 1) 100%);
}

.is-dark {
  background-color: rgba(0, 211, 168, 1);
}

.is-boxes .sb-title,
.is-boxes .sb-text {
  color: white !important;
}

.is-content {
  min-width: 0;
}
.is-boxes {
  align-items: stretch;
}
.is-boxes .service-box {
  flex: 1 1 calc(33.333% - 1em);
  min-width: 260px;
}
.is-boxes .sb-img {
  width: 88px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1400px) {
  .is-content {
    max-width: 1200px;
    padding: 2em 1rem;
  }
  .is-title {
    font-size: 1.45em;
  }
  .is-text {
    width: 72%;
  }
  .is-boxes {
    row-gap: 4.5em;
    column-gap: 1em;
  }
}

@media (max-width: 1200px) {
  .industries-section {
    background-size: cover;
    background-position: center;
  }
  .is-content {
    max-width: 1100px;
  }
  .is-title {
    font-size: 1.4em;
  }
  .is-text {
    width: 68%;
  }
  .is-boxes .sb-img {
    width: 84px;
  }
}

@media (max-width: 992px) {
  .is-content {
    padding: 1.75em 1rem;
    row-gap: 1.25em;
  }
  .is-title {
    font-size: 1.35em;
    line-height: 1.2;
  }
  .is-text {
    width: 100%;
  }
  .is-boxes {
    margin-top: 3em;
    row-gap: 2em;
    column-gap: 1em;
  }
  .is-boxes .service-box {
    flex: 1 1 calc(50% - 0.5em);
  }
  .is-boxes .sb-img {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .is-content {
    align-items: center;
    text-align: center;
  }
  .is-title {
    font-size: 1.3em;
  }
  .is-text {
    font-size: 1.02em;
  }
  .is-boxes {
    margin-top: 2em;
  }
  .is-boxes .sb-img {
    width: 76px;
  }
}

@media (max-width: 576px) {
  .industries-section {
    padding: 0.9em;
  }
  .is-title {
    font-size: 1.25em;
  }
  .is-text {
    font-size: 1em;
  }
  .is-boxes {
    row-gap: 1.2em;
  }
  .is-boxes .service-box {
    flex: 1 1 100%;
    min-width: 0;
  }
  .is-boxes .sb-img {
    width: 72px;
  }
}

@media (max-width: 420px) {
  .is-title {
    font-size: 1.2em;
  }
  .is-text {
    font-size: 0.98em;
  }
  .is-boxes .sb-img {
    width: 68px;
  }
}

/* Industries Section -> End */

/* Portfolio Section -> Start */

.portfolio-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2em 0;
}

.ps-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  row-gap: 1em;
}

.ps-subtitle {
  font-size: 1.2em;
  color: var(--secondary);
}

.ps-title {
  font-size: 1.5em;
  font-weight: bold;
  color: black;
}

.ps-title span {
  color: var(--secondary);
}

.ps-items-div {
  display: flex;
  align-self: flex-start;
  width: 100%;
  justify-content: space-between;
  gap: 1em;
  margin-top: 1.5em;
}

.ps-featured-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1em;
  width: 50%;
}

.ps-featured-img {
  border-radius: 40px;
}

.ps-featured-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.6em;
}

.psi-subtitle {
  color: rgba(46, 62, 92, 1);
  font-size: 0.9em;
}

.psi-title {
  color: black;
  font-size: 1.2em;
  font-weight: bold;
  font-family: 'Poppins Medium', sans-serif;
}

.ps-items {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 45%;
  gap: 1.5em;
}

.psi-img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ps-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.6em;
  flex: 1 1 35%;
}

.ps-featured-img,
.psi-img {
  width: 100%;
  height: auto;
  display: block;
}
.ps-items-div > * {
  min-width: 0;
}
.ps-items,
.ps-featured-item {
  min-width: 0;
}

@media (max-width: 1400px) {
  .ps-content {
    max-width: 1200px;
    padding: 0 1rem;
  }
  .ps-title {
    font-size: 1.45em;
  }
}

@media (max-width: 1200px) {
  .ps-content {
    max-width: 1100px;
  }
  .ps-title {
    font-size: 1.35em;
  }
  .ps-subtitle {
    font-size: 1.1em;
  }
  .ps-items {
    gap: 1.25em;
  }
}

@media (max-width: 992px) {
  .portfolio-section {
    padding: 1.75em 1em;
  }
  .ps-items-div {
    gap: 1.25em;
    align-items: stretch;
  }
  .ps-featured-item {
    width: 48%;
  }
  .ps-items {
    width: 48%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1em;
  }
  .ps-item {
    row-gap: 0.5em;
  }
  .psi-title {
    font-size: 1.15em;
  }
  .psi-subtitle {
    font-size: 0.95em;
  }
}

@media (max-width: 768px) {
  .ps-items-div {
    flex-direction: column;
    gap: 1.25em;
  }
  .ps-featured-item,
  .ps-items {
    width: 100%;
  }
  .ps-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ps-featured-img {
    border-radius: 32px;
  }
}

@media (max-width: 576px) {
  .portfolio-section {
    padding: 1.5em 0.9em;
  }
  .ps-title {
    font-size: 1.25em;
  }
  .ps-subtitle {
    font-size: 1.05em;
  }
  .ps-items {
    grid-template-columns: 1fr;
    gap: 0.9em;
  }
  .ps-featured-img {
    border-radius: 28px;
  }
  .psi-title {
    font-size: 1.1em;
  }
}

@media (max-width: 420px) {
  .ps-title {
    font-size: 1.18em;
  }
  .ps-subtitle {
    font-size: 1em;
  }
  .ps-featured-img {
    border-radius: 24px;
  }
}

/* Portfolio Section -> End */

/* Footer Section -> Start */

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: rgba(4, 23, 45, 1);
  padding-top: 4em;
}

.fs-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 1em;
  max-width: 1300px;
}

.fs-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.fst-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 40%;
}

.fstl-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 1em;
}

.fst-row {
  display: flex;
  align-items: flex-start;
  column-gap: 1em;
}

.fst-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.fst-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1em;
}

.fst-text,
.fst-link {
  color: white;
  font-size: 1em;
  line-height: 1.3;
}

.fst-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.fst-right {
  display: flex;
  align-items: flex-start;
  width: 55%;
  justify-content: flex-end;
  column-gap: 1em;
}

.fst-title-div {
  display: flex;
  align-items: flex-start;
  row-gap: 0.7em;
  flex-direction: column;
}

.fs-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  margin-top: 1em;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

.fsb-links {
  display: flex;
  align-items: center;
  column-gap: 2em;
}

.fst-title {
  color: white;
  font-size: 1.2em;
  font-weight: bold;
}

.fst-right .fst-text:hover,
.fsb-links .fst-text:hover,
.fst-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fs-content {
  width: 100%;
  margin: 0 auto;
}
.fst-text,
.fst-link {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.fst-icon {
  flex: 0 0 auto;
}

@media (max-width: 1400px) {
  .fs-content {
    max-width: 1200px;
    padding: 0 1rem;
  }
  .fst-right {
    column-gap: 1.25em;
  }
}

@media (max-width: 1200px) {
  .fs-content {
    max-width: 1100px;
  }
  .fst-left {
    width: 42%;
  }
  .fst-right {
    width: 56%;
  }
  .fst-title {
    font-size: 1.15em;
  }
  .fst-text,
  .fst-link {
    font-size: 0.98em;
  }
}

@media (max-width: 992px) {
  .footer-section {
    padding-top: 3em;
  }
  .fs-content {
    padding: 0 1rem;
  }
  .fs-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25em;
    align-items: start;
  }
  .fst-left,
  .fst-right {
    width: auto;
  }
  .fst-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25em;
  }
  .fst-row {
    column-gap: 0.8em;
  }
  .fst-icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 768px) {
  .fs-top {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  .fst-left {
    align-items: center;
    text-align: center;
  }
  .fst-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1em;
  }
  .fst-title-div {
    align-items: center;
  }
  .fst-socials {
    justify-content: center;
  }
  .fs-bottom {
    flex-direction: column;
    gap: 0.75em;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding-top: 2.5em;
  }
  .fst-right {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .fst-title {
    font-size: 1.08em;
  }
  .fst-text,
  .fst-link {
    font-size: 0.96em;
    line-height: 1.5;
  }
  .fst-icon {
    width: 20px;
    height: 20px;
  }
  .fst-row {
    align-items: center;
  }
  .fsb-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9em 1.25em;
  }
}

@media (max-width: 420px) {
  .fst-title {
    font-size: 1.02em;
  }
  .fst-text,
  .fst-link {
    font-size: 0.94em;
  }
}

/* Footer Section -> End */

/* Landing Page -> End */

/* Subscribe Section -> Start */

.subscribe-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 1em;
  padding: 1.5em 2em;
  background-color: #04172d;
  border-radius: 20px;
}

.sub-s-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 70%;
  row-gap: 0.5em;
}

.sub-s-right {
  width: 40%;
}

.sub-input-field-div {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  border-radius: 5px;
  height: 45px;
  width: 100%;
  padding: 10px;
  background-color: white;
}

.sub-input-field {
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
}

.sub-input-field::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.sub-input-field:hover {
  border: none;
  outline: none;
  box-shadow: none;
}

.sub-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: white;
  background-color: #00d3a8;
  border-radius: 5px;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 0.9em;
}

.sub-input-field {
  min-width: 0;
}

@media (max-width: 1400px) {
  .subscribe-section {
    max-width: 1000px;
    padding: 1.5em 1.25em;
  }
}

@media (max-width: 1200px) {
  .subscribe-section {
    max-width: 920px;
  }
  .sub-s-left {
    width: 60%;
  }
  .sub-s-right {
    width: 40%;
  }
}

@media (max-width: 992px) {
  .subscribe-section {
    max-width: 860px;
    gap: 1em;
  }
  .sub-s-left {
    width: 58%;
  }
  .sub-s-right {
    width: 42%;
  }
  .sub-input-field-div {
    height: 44px;
  }
}

@media (max-width: 768px) {
  .subscribe-section {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1em;
    padding: 1.25em 1rem;
  }
  .sub-s-left,
  .sub-s-right {
    width: 100%;
  }
  .sub-input-field-div {
    max-width: 560px;
    margin: 0 auto;
  }
  .sub-input-field {
    padding: 1em;
  }
}

@media (max-width: 576px) {
  .subscribe-section {
    padding: 1.1em 0.9rem;
    border-radius: 0px;
  }
  .sub-input-field-div {
    height: auto;
    padding: 8px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .sub-button {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .subscribe-section {
    padding: 1em 0.8rem;
    border-radius: 14px;
  }
  .sub-input-field::placeholder {
    font-size: 0.95em;
  }
}

/* Subscribe Section -> End */

/* FAQs Section -> Start */

.faqs-section {
  background-color: #04172d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  position: relative;
  padding: 4em 0;
  margin: 2em 0;
}

.faqs-img {
  position: absolute;
  top: 0px;
  right: 0px;
  object-fit: contain;
  width: 200px;
}

.faq-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2em;
  max-width: 1000px;
  width: 100%;
}

.faqs {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  row-gap: 1em;
}

.faq {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  padding: 1em;
  border-radius: 5px;
  background-color: #112238;
  cursor: pointer;
}

.faq-question-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 0.5em;
  color: white;
  text-align: left;
}

.faq-question-icon-div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #00d3a8;
  border-radius: 100px;
}

.faq-question-icon {
  color: black;
}

.faq-answer {
  color: white;
  text-align: left;
  padding: 0.5em 0;
  display: none;
}

.faq-answer.active {
  display: block;
}

@media (max-width: 1400px) {
  .faq-content {
    max-width: 1000px;
    padding: 0 1rem;
  }
  .faqs-img {
    width: 180px;
    right: 8px;
    top: 8px;
  }
}

@media (max-width: 1200px) {
  .faqs-section {
    padding: 3.5em 0;
  }
  .faqs-img {
    width: 160px;
    opacity: 0.25;
  }
  .faq {
    padding: 1em 0.9em;
  }
  .faq-question {
    font-size: 1.05em;
  }
}

@media (max-width: 992px) {
  .faqs-section {
    padding: 3em 0;
  }
  .faq-content {
    padding: 0 1rem;
  }
  .faqs-img {
    width: 140px;
    opacity: 0.2;
  }
  .faq {
    border-radius: 6px;
  }
  .faq-question-icon-div {
    width: 26px;
    height: 26px;
  }
  .faq-answer {
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .faqs-section {
    padding: 2.5em 0;
    margin: 1.5em 0;
  }
  .faqs-img {
    display: none;
  }
  .faq {
    padding: 0.9em 0.85em;
  }
  .faq-question {
    font-size: 1.02em;
  }
  .faq-question-icon-div {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 576px) {
  .faqs-section {
    padding: 2em 0;
  }
  .faq-content {
    row-gap: 1.5em;
  }
  .faqs {
    row-gap: 0.9em;
  }
  .faq {
    padding: 0.85em 0.8em;
    border-radius: 5px;
  }
  .faq-question {
    font-size: 1em;
  }
  .faq-answer {
    font-size: 0.98em;
  }
}

@media (max-width: 420px) {
  .faq {
    padding: 0.8em 0.75em;
  }
  .faq-question {
    font-size: 0.98em;
  }
  .faq-question-icon-div {
    width: 22px;
    height: 22px;
  }
  .faq-answer {
    font-size: 0.95em;
  }
  .fstl-col {
    width: 100%;
  }
}

/* FAQs Section -> End */

/* Contact Section -> Start */

.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  margin: 1em 0;
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 1.5em;
  max-width: 1200px;
  width: 100%;
  padding: 3em 0;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1em;
  width: 40%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  row-gap: 1em;
}

.contact-input {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid black;
  padding: 1em;
  width: 100%;
  background-color: white;
}

.contact-label {
  font-weight: bold;
  color: black;
  text-align: left;
  font-size: 0.9em;
}

.contact-btn {
  background-color: #00d3a8;
  color: white;
  padding: 1em 2em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 0.9em;
  font-weight: bold;
}

.contact-btn:hover {
  background-color: #00b594;
}

.contact-img {
  width: 40%;
  object-fit: contain;
}

/* Safe defaults */
.contact-content > * {
  min-width: 0;
}
.contact-img {
  max-width: 100%;
  height: auto;
  display: block;
}
.contact-input,
.contact-btn {
  box-sizing: border-box;
}

@media (max-width: 1400px) {
  .contact-content {
    max-width: 1200px;
    padding: 3em 1rem;
  }
  .contact-left {
    width: 42%;
  }
  .contact-img {
    width: 46%;
  }
}

@media (max-width: 1200px) {
  .contact-content {
    max-width: 1100px;
    padding: 2.5em 1rem;
  }
  .contact-left {
    width: 48%;
  }
  .contact-img {
    width: 48%;
  }
}

@media (max-width: 992px) {
  .contact-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.25em;
    padding: 2.25em 1rem;
  }
  .contact-left {
    width: 100%;
    max-width: 720px;
    align-items: center;
    text-align: center;
  }
  .contact-form {
    align-items: stretch;
  }
  .contact-img {
    width: min(70%, 520px);
  }
  .contact-btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .contact-content {
    padding: 2em 1rem;
  }
  .contact-img {
    width: min(80%, 460px);
  }
  .contact-btn {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    margin: 0.75em 0;
  }
  .contact-left {
    row-gap: 0.9em;
  }
  .contact-input {
    padding: 0.9em 0.6em;
  }
  .contact-btn {
    padding: 0.9em 1.2em;
    font-size: 1em;
    border-radius: 999px;
  }
}

@media (max-width: 420px) {
  .contact-img {
    width: 92%;
  }
  .contact-input {
    font-size: 0.95em;
  }
}

/* Contact Section -> End */

/* Tools Section -> Start */

.tools-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  background-color: #04172d;
  padding: 4em 0;
}

.tools-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: auto;
  object-fit: contain;
}

.tools-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  row-gap: 0.5em;
  padding: 2em 2em;
}

.tools-div {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 60px; /* Add padding for arrows */
}

.tools-div .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
}

.tools-div .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1em;
  row-gap: 0.5em;
  min-width: 120px;
  max-width: 160px;
}

.tool-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 0.5em;
}

.tool p {
  font-size: 1.1em;
  color: white;
  font-family: 'Poppins Medium', sans-serif;
  margin: 0;
  line-height: 1.2;
}

/* Swiper navigation buttons */
.tools-div .swiper-button-next,
.tools-div .swiper-button-prev {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  transition: all 0.3s ease;
  z-index: 10;
  position: absolute;
  top: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.tools-div .swiper-button-next {
  right: 0;
}

.tools-div .swiper-button-prev {
  left: 0;
}

.tools-div .swiper-button-next:hover,
.tools-div .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.tools-div .swiper-button-next::after,
.tools-div .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

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

  .tools-div .swiper-button-next,
  .tools-div .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .tools-div .swiper-button-next {
    right: 0;
  }

  .tools-div .swiper-button-prev {
    left: 0;
  }

  .tools-div .swiper-button-next::after,
  .tools-div .swiper-button-prev::after {
    font-size: 14px;
  }
}

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

  .tools-div .swiper-button-next,
  .tools-div .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .tools-div .swiper-button-next {
    right: 0;
  }

  .tools-div .swiper-button-prev {
    left: 0;
  }

  .tools-div .swiper-button-next::after,
  .tools-div .swiper-button-prev::after {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .tool {
    min-width: 110px;
    max-width: 140px;
  }
  .tool-img {
    width: 55px;
    height: 55px;
  }
  .tool p {
    font-size: 0.75em;
  }
}

@media (max-width: 992px) {
  .tool {
    min-width: 100px;
    max-width: 130px;
  }
  .tool-img {
    width: 50px;
    height: 50px;
  }
  .tool p {
    font-size: 0.7em;
  }
}

@media (max-width: 768px) {
  .tool {
    min-width: 90px;
    max-width: 120px;
    padding: 0.8em 0.5em;
  }
  .tool-img {
    width: 45px;
    height: 45px;
  }
  .tool p {
    font-size: 0.65em;
  }
}

@media (max-width: 576px) {
  .tool {
    min-width: 80px;
    max-width: 100px;
    padding: 0.6em 0.3em;
  }
  .tool-img {
    width: 40px;
    height: 40px;
  }
  .tool p {
    font-size: 0.6em;
  }
}

@media (max-width: 768px) {
  .tools-content {
    padding: 2em 1em;
  }
}

@media (max-width: 480px) {
  .tools-content {
    padding: 1.5em 0.5em;
  }
}

.tools-content .is-text {
  text-align: center;
  font-size: 1.2em;
}

.tools-line {
  width: 200px;
  height: 7px;
  background: var(--secondary);
  border-radius: 100px;
  margin: 0.5em 0;
}

/* Tools Section -> End */

/* About Us Page -> Start */

/* About Us Who Section -> Start */

.au-who-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2em 0;
}

.col-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1em;
  width: 100%;
  max-width: 1000px;
}

.au-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.au-who-img {
  width: 35%;
  height: auto;
  object-fit: contain;
}

.au-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1em;
  width: 55%;
}

.au-title {
  font-size: 1.5em;
  font-weight: bold;
  font-family: 'Poppins Medium', sans-serif;
}

.primary-text {
  color: var(--primary);
}

.sec-text {
  color: var(--secondary);
}

.au-text {
  color: var(--text);
}

@media (max-width: 1024px) {
  .au-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .au-who-img {
    width: 70%;
    margin-bottom: 1em;
  }
  .au-col {
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .au-title {
    font-size: 1.3em;
  }
  .au-who-img {
    width: 80%;
  }
  .au-text {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .au-title {
    font-size: 1.1em;
  }
  .au-who-img {
    width: 100%;
  }
  .au-text {
    font-size: 0.9em;
  }
  .col-content {
    padding: 0 1em;
  }
}

/* About Us Who Section -> End */

/* About Us Msg Section -> Start */

.industries-section .col-content {
  padding: 2em 0;
}

.quote-div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  column-gap: 2em;
}

.quote-img {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.author-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.5em;
}

.quote-img-end {
  display: flex;
  align-self: flex-end;
  width: 50px;
  height: auto;
  object-fit: contain;
}

.quote-div .is-text {
  width: 100%;
  text-align: center;
}

.author-div .is-text {
  width: 100%;
  text-align: center;
}

/* About Us Msg Section -> End */

/* About Us Values Section -> Start */

.values-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2em 0;
}

.au-subtitle {
  color: rgba(4, 23, 45, 0.7);
}

.au-subtitle strong {
  font-family: 'Poppins Medium', sans-serif;
  font-weight: bold;
}

.au-values {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2em;
}

.au-value {
  display: flex;
  align-items: center;
  column-gap: 1em;
  flex: 1 1 40%;
}

.auv-text {
  color: rgba(4, 23, 45, 0.7);
}

.auv-text strong {
  font-family: 'Poppins Medium', sans-serif;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .au-values {
    gap: 1.5em;
  }
  .au-value {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .au-title {
    font-size: 1.4em;
    text-align: center;
  }
  .au-subtitle {
    text-align: center;
    font-size: 1em;
  }
  .au-value {
    flex: 1 1 100%;
    justify-content: flex-start;
  }
  .au-value img {
    width: 40px;
    height: auto;
  }
  .auv-text {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .col-content {
    padding: 0 1em;
  }
  .au-title {
    font-size: 1.2em;
  }
  .au-subtitle {
    font-size: 0.9em;
  }
  .au-value {
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 0.5em;
  }
  .auv-text {
    font-size: 0.85em;
  }
}

/* About Us Values Section -> End */

.au-dark {
  background-color: #04172d;
}

.au-dark .au-text {
  color: white;
}

/* About Us Page -> End */

.au-how-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 2em 0;
}

.au-who-boxes {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  row-gap: 2em;
  column-gap: 4em;
  width: 100%;
  padding: 2em 0;
  margin-top: 2em;
}

.au-who-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1em;
  border-radius: 30px;
  padding: 2em;
  padding-top: 5em;
  position: relative;
  background-color: var(--secondary);
  flex: 1 1 15%;
  max-width: 300px;
}

.aub-img {
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: auto;
  object-fit: contain;
}

.aub-title {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  font-family: 'Poppins Medium', sans-serif;
  color: white;
}

.aub-text {
  font-size: 1em;
  line-height: 1.5;
  color: white;
  text-align: center;
}

@media (max-width: 1024px) {
  .au-who-boxes {
    column-gap: 2em;
    row-gap: 2em;
  }
  .au-who-box {
    flex: 1 1 40%;
    max-width: 100%;
  }
  .aub-title {
    font-size: 1.1em;
  }
  .aub-text {
    font-size: 0.95em;
  }
}

@media (max-width: 768px) {
  .au-title {
    font-size: 1.4em;
    text-align: center;
  }
  .au-subtitle {
    text-align: center;
    font-size: 1em;
  }
  .au-who-boxes {
    flex-direction: column;
    align-items: center;
  }
  .au-who-box {
    width: 90%;
    max-width: 400px;
  }
  .aub-img {
    width: 70px;
  }
}

@media (max-width: 480px) {
  .col-content {
    padding: 0 1em;
  }
  .au-title {
    font-size: 1.2em;
  }
  .au-subtitle {
    font-size: 0.9em;
  }
  .au-who-box {
    padding: 1.5em;
    padding-top: 4em;
  }
  .aub-img {
    width: 60px;
  }
  .aub-title {
    font-size: 1em;
  }
  .aub-text {
    font-size: 0.85em;
  }
  .mobile-cta {
    width: 100%;
    font-size: 0.9em;
    padding: 0.8em;
  }
}

.sp-boxes {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 2em;
}

.sp-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1em;
  padding: 2em;
  padding-top: 3em;
  border-radius: 20px;
  background-color: #09162d;
  flex: 1 1 30%;
  max-width: 300px;
  margin: 1em;
  position: relative;
}

.spb-img {
  width: 90px;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.spb-text {
  text-align: center;
  padding: 1em 0;
  color: white;
  font-size: 1.1em;
}

.spb-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1em;
  border-radius: 5px;
  background-color: white;
  padding: 0.5em 1em;
  width: 100%;
  font-weight: bold;
  font-family: 'Poppins Medium', sans-serif;
}

.spb-icon-div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00d3a8;
  border-radius: 100px;
  height: 30px;
  width: 30px;
}

.spb-icon {
  color: white;
  margin-top: -2px;
}

.sp-title {
  font-size: 3em;
}

.sp-text {
  font-size: 1em;
}

@media (max-width: 1024px) {
  .sp-box {
    flex: 1 1 45%;
    max-width: 100%;
  }
  .spb-text {
    font-size: 1em;
  }
  .sp-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .au-title {
    font-size: 1.6em;
    text-align: center;
  }
  .au-subtitle {
    text-align: center;
    font-size: 1em;
  }
  .sp-boxes {
    flex-direction: column;
    align-items: center;
  }
  .sp-box {
    width: 85%;
    max-width: 400px;
    margin: 1em 0;
  }
  .spb-img {
    width: 70px;
  }
  .spb-text {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .col-content {
    padding: 0 1em;
  }
  .au-title {
    font-size: 1.3em;
  }
  .au-subtitle {
    font-size: 0.9em;
  }
  .sp-box {
    padding: 1.5em;
    padding-top: 3em;
  }
  .spb-img {
    width: 60px;
    top: -40px;
  }
  .spb-text {
    font-size: 0.85em;
  }
  .spb-btn {
    font-size: 0.9em;
    padding: 0.6em 0.8em;
  }
}

.spb-title {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  color: white;
  font-family: 'Poppins Medium', sans-serif;
}

.hh-dark-div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #04172d;
  width: 100%;
  max-width: 100%;
}

.c-section .au-values {
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}

.c-col {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1em;
  max-width: 250px;
}

.c-section .auv-text {
  text-align: center;
}

.auc-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.c-c-content {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: stretch;
  min-height: 100dvh;
}

.c-section {
  display: flex;
}

.c-section .contact-left {
  width: 50%;
  background-color: #09162d !important;
  padding: 4em;
  padding-left: 5%;
  height: 100%;
  min-height: 80dvh;
}

.contact-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  background-color: rgba(0, 211, 168, 0.05);
  height: 100%;
  min-height: 80dvh;
}

.c-section input,
.c-section textarea,
.c-section select {
  color: white !important;
  background-color: transparent;
  border-bottom: 1px solid white !important;
}

.c-section label {
  color: white;
}

.c-section input::placeholder,
.c-section textarea::placeholder,
.c-section select::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.c-section .tsc-subtitle {
  color: white;
}

.c-section img {
  height: 100%;
  object-fit: cover;
}

.c-section .contact-form {
  width: 70%;
}

@media (max-width: 1200px) {
  .c-section .contact-left {
    width: 55%;
    padding: 3em;
    padding-left: 4%;
  }
  .contact-right {
    width: 45%;
  }
  .c-section .contact-form {
    width: 80%;
  }
}

@media (max-width: 992px) {
  .c-section {
    flex-direction: column;
  }
  .c-section .contact-left,
  .contact-right {
    width: 100%;
    min-height: auto;
    height: auto;
  }
  .c-section .contact-left {
    padding: 2em 1.5em;
    text-align: center;
  }
  .c-section .contact-form {
    width: 100%;
  }
  .c-section img {
    height: 100px;
    width: 100px;
    object-fit: contain;
  }
}

@media (max-width: 576px) {
  .c-section .au-values {
    flex-direction: column;
    align-items: center;
  }
}

.c-social-icon {
  font-size: 3em;
  color: rgba(22, 186, 155, 1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-social-icon:hover {
  color: var(--secondary);
  transform: scale(1.1);
}

.c-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1em;
}

.why-c-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 2em 0;
}

.wcs-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  row-gap: 2em;
  padding: 2em 2em;
}

.wc-boxes {
  display: flex;
  align-items: stretch;
  width: 100%;
  justify-content: center;
  gap: 2em;
}

.wc-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: white;
  border-radius: 10px;
  padding: 1.5em;
  row-gap: 1em;
  width: 300px;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

.wc-box-dark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-image: linear-gradient(37deg, #00d3a8 1%, #007ccf 100%);
  border-radius: 10px;
  padding: 1.5em;
  row-gap: 1em;
  width: 300px;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

.wc-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.wc-title {
  font-size: 1.2em;
  font-weight: bold;
  font-family: 'Poppins Medium', sans-serif;
  color: #04172d;
}

.wc-text {
  color: #04172d;
  line-height: 1.5;
}
.wc-title {
  font-size: 1.2em;
  font-weight: bold;
  font-family: 'Poppins Medium', sans-serif;
  color: #04172d;
}

.wc-text {
  color: #04172d;
  line-height: 1.5;
}

.wcb-title {
  font-size: 1.2em;
  font-weight: bold;
  font-family: 'Poppins Medium', sans-serif;
  color: white;
}

.wcb-text {
  color: white;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .wc-boxes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
  }
  .wc-box,
  .wc-box-dark {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .wcs-content {
    padding: 2em 1em;
  }
  .wc-box,
  .wc-box-dark {
    width: 100%;
  }
  .wc-title,
  .wcb-title {
    font-size: 1.1em;
  }
  .wc-text,
  .wcb-text {
    font-size: 0.95em;
  }
  .wc-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .wcs-content {
    padding: 1.5em 0.5em;
  }
  .wc-title,
  .wcb-title {
    font-size: 1em;
  }
  .wc-text,
  .wcb-text {
    font-size: 0.9em;
  }
  .wc-icon {
    width: 40px;
    height: 40px;
  }

  iframe {
    width: 100% !important;
  }
}
