
@font-face {
    font-family: 'GothamSSm-Book';
    src: url('font/GothamSSm-Book_Web.woff2') format('woff2');
    font-display: swap; /* Prevents invisible text during font load */
    font-weight: normal;
    font-style: normal;
}


html, body {
  font-family: 'GothamSSm-Book', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  background-color: #ffffff;

  width: 100%;
  margin: 0;
}
* {
  box-sizing: border-box;
}
/* Animated Navbar Styles */
.animated-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #030205 0%, #030202 100%);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  max-width: 100%;
  max-height: 100vh;
  margin: 0 auto;
}
.animated-navbar.navbar-white {
  background: #fff !important;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu--left {
  flex: 1;
  justify-content: flex-start;
}
.navbar-menu--right {
  flex: 1;
  justify-content: flex-end;
}
.navbar-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-logo img {
  height: 8.2vh;
  width: auto;
  padding: 0.25rem;
  transition: transform 0.3s;
}
.navbar-logo img:hover {
  transform: scale(1.08);
}
.navbar-menu li {
  position: relative;
}
.navbar-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1vw;
  padding: 0.5rem 1vw;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  display: block;
}
.animated-navbar.navbar-white .navbar-menu li a {
  color: #222;
}
.navbar-menu .dropdown {
  position: relative
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 50%  ;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 0 0 8px 8px;
  z-index: 100;
  padding: 0;
}
.dropdown.open > .dropdown-menu {
  display: block;
}
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  color: #6c3db5;
  background: none;
  font-size: 1rem;
  border-radius: 0;
  padding: 1.1rem 1.5rem;
  display: block;
  white-space: nowrap;
}
.navbar-menu li.dropdown {
    position: relative;
  }
  .navbar-menu li .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: -4px; /* Overlap to remove gap */
    min-width: 50%;
    background: #fff;

    z-index: 100;
    padding: 0;
  }
  .navbar-menu li.dropdown:hover > .dropdown-menu,
  .navbar-menu li.dropdown:focus-within > .dropdown-menu {
    display: block;
  }
  /* Side Navigation Styles */
.side-nav {
  font-family: "Gotham Book", Gotham-Book, Helvetica, Arial, sans-serif !important;
  position: fixed;
  top: 0;
  left: -600px; /* Hidden by default */
  width: 550px;
  height: 100%;
  background-color: #000000;
  overflow-y: auto;
  transition: left 0.3s ease,
  background-color 0.3s ease;
  z-index: 9999;
  padding: 1.5rem 1rem;
}
.side-nav.scrolled{
  background-color: #ffffff;
  color: #000000;
}
.side-nav.open {
  left: 0;
}
.side-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-nav-list li {
  margin-bottom: 2.4rem;
}
.side-nav-list li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-left: 0.5rem;
text-transform: uppercase;
}
.animated-navbar.navbar-white .side-nav-list li a {
  color: #000000;
}
.side-nav-list li a:hover {
  color: #ffffff;
  text-decoration:underline;
  text-decoration-color: #23e5f3;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.5rem;
}
/* Close Button */
.close-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 2rem;
  margin-top: 1.4rem;
  margin-left: 2rem;
  display: block;
  padding: 0;
  color: #ffffff;
}
.animated-navbar.navbar-white .close-btn{
  color: #000000;
}
/* Overlay styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Button to open menu */
#openMenuBtn {
  font-family: "Gotham Book", Gotham-Book, Helvetica, Arial, sans-serif !important;
  background: none;
  font-size: 1vw;
  cursor: pointer;
  color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
}
#openMenuBtn.scrolled {
  color: #000000;
  background-color: #fff;
  border-color: #fff;
}
 @media (max-width: 778px) {
  .animated-navbar {
    flex-direction: row;
    align-items: stretch;
    padding: 0.5rem 0;
    border-bottom: none !important;
    box-shadow: none !important;
    border-top: none !important;
  }
  .navbar-menu {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 0.2rem;
  }
  .navbar-logo
  {
    margin-bottom: 0.5rem;
    justify-content: center;
  }
  .navbar-logo img {
    height: 40px;
  }
  .navbar-menu li  a{
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    text-align: center;
  } 
  /* Add or update this CSS for white navbar on scroll */
.animated-navbar.navbar-white {
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: background 0.3s, box-shadow 0.3s;
}
.animated-navbar.navbar-white .navbar-menu li a {
  color: #222 !important;
}
.animated-navbar.navbar-white .navbar-logo img {
  filter: none;
}
}
/* Hide mobile navbar on desktop, show on mobile */
.mobile-navbar, .mobile-super-dropdown {
  display: none;
}
 @media (max-width: 778px) {
  .animated-navbar, .navbar-menu, .navbar-logo {
    display: none !important;
  }
  .mobile-navbar {
    display: flex ;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: black;
    transition: background 0.3s;
    padding: 1.2rem 1.5rem;
    position: relative;
    z-index: 100;
    position: sticky;
    top: 0;
    left: 0 ;
    width: 100%;
    z-index: 1000;
    height: 100px;
  }
  .mobile-navbar.scrolled{
    background: #f3f2f2;
  }
  .mobile-navbar-toggle {
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s;
    margin-right: 0rem;
    padding-left: 0rem;
    cursor: pointer;
    order: 1;
    align-self: flex-start;
  }
  .mobile-navbar.scrolled  .mobile-navbar-toggle {
    color: #000;
  }
  .mobile-navbar-logo {
    order: 2;
    margin: 0 auto;
    flex: 1;
    display: flex;
    justify-content: center;
  }
   .mobile-navbar-logo img {
    height: 40px ;
    width: auto ;
    margin-right: 2.5rem ;
     display: block;
  }
   .mobile-super-dropdown {
    position: absolute;
    top: 100px; /* adjust if your navbar is taller */
    right: 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 0.900rem;
    opacity: 0;
    pointer-events: none;
     width: 75%;
    max-width:  100%;
    height: auto ;
    left: 0 ;
    font-size: 1.3rem ;
    font-weight: 600 ;
    margin-top: 0% ;
  background: #000000;
  padding: 1.5rem 0;
  animation: dropdown-fade 0.35s cubic-bezier(.4,0,.2,1);
  transition: box-shadow 0.2s;
  }
  .mobile-super-dropdown.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    animation: dropdownFadeIn 0.35s cubic-bezier(.4,0,.2,1);
  }
  @keyframes dropdownFadeIn {
    from { transform: translateY(-20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }
  .mobile-super-dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-super-dropdown li a {
    font-family: "Gotham Book", Gotham-Book, Helvetica, Arial, sans-serif !important;
    color: #ffffff;
   font-size: 1.1rem ;
    padding: 1.6rem 0.5rem ;
    text-align: center;
    text-decoration: none;
    display: block;
  border-radius: 8px;
  margin: 0.2rem 0.5rem;
  transition: background 0.2s, color 0.2s;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  } 
  .mobile-super-dropdown li a .highlight {
    color: #ffffff;
    font-weight: 600;
  }
  .mobile-super-dropdown li a:hover {
    background: #333;
  }
.mobile-super-dropdown li a:focus {
  background: #23e5f3;
  color: #fff;
  box-shadow: 0 2px 12px rgba(35,229,243,0.08);
}
@keyframes dropdown-fade {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
}
.responsive-image-16by9 {
  width:100%;
  max-width: 100%;
  height: 55.25%; /* 16:9 aspect ratio */
  max-height: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.responsive-image-16by9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}
 @media (max-width: 778px) {
  .responsive-image-16by9 {
    width: 100%;
    height: auto;
    padding-bottom: 125%; 
    position: relative;
    overflow: hidden;
  }
  .responsive-image-16by9 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* Make the section_cta25 background black */
.section_cta25 {
  max-width: 100%;
  padding-bottom: 0;
  background: #000000; /* or use #000 for pure black */
  color: #ffffff;
  position: relative;
  margin-top: 0rem;
  padding-top: 1.5rem;
  padding-bottom: 0rem;
}
.section_cta25 h2{
  color: #23e5f3;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
   text-transform: uppercase;
}
.section_cta25 h4{
  color: #ffffff;
  font-size: 1.7rem;
  margin-bottom: -2rem ;
  text-align: center;
}
.section_cta25 h5{
  margin-bottom:0rem ;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
 padding-left: 5vw;
  padding-right: 5vw;
  max-width: 1200px;
  margin-left:  auto;
  margin-right: auto;
color: #ffffff;
}
 @media (max-width: 778px) {
  .section_cta25 h2{
    font-size: 1.3rem;
    font-weight: 600 ;
    margin-bottom: 1rem;
    color: #23e5f3;
  } 
  .section_cta25 h5{
  margin-bottom:0rem ;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #ffffff;
}}
/* Style the icons container */
.section-icon{
background-color: #000000;
max-width: 1200px;
}
.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  background-color: #000;
}
.icon h6{
  font-size: 1.3rem;
  color: #727272;
  text-align: center;
  font-weight: 600;
  margin-top: 0rem;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
   text-transform: uppercase;
   background-color: #000;
}
/* Style each icon image */
.icons img {
  max-width: 100%;
  max-height: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 8px;
  padding: 1rem 1rem;
}
 @media (max-width: 778px) {
  .icons {
    flex-direction: row;
    gap: .5rem;
  }
  .icon h6{  
    font-size: 1rem ;
  }
  .icons img {
    max-width: 100px;
    max-height: 60px;
    width: 100%;
    object-fit: contain;
    padding: 0.5rem;
  }}
/* Scrolling icons section heading */
.scrolling-icons{
  background: #ffffff;
  size: 100%;
  padding-top: 0rem;
  padding-bottom: 1rem;
max-width: 1550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.scrolling-icons h6{
  font-size: 1.3rem;/*1.3rem */
  color: #3f3f41;
  text-align: center;
  margin-bottom: 0rem;
  padding-bottom: 1.5rem;
  font-weight: 600;
   text-transform: uppercase;
}
.scrolling-icons__container {
  max-width: 100%;
  width: 100%;
  padding-bottom: 0.5rem;
}
/* Container for scrolling icons */
.scrolling-icons__container--inner {
  display: flex;
  flex-wrap: wrap;
  overflow-x: hidden !important;
  animation: none !important;
  white-space: normal!important;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.scrolling-icons__item img {
  max-width: 100%;
  max-height: auto;
  object-fit: contain;
 
  background: transparent;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.04);*/
}

.scrolling-icons__container--inner {
  display: flex;
  gap: 1rem;
  animation: scroll-left 10s linear infinite;
  will-change: transform;
}
 @media (max-width: 778px) {
  .scrolling-icons__container{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 2fr));
  align-items: center;
  overflow-x: hidden;
  margin-left:0rem;  
   width: 180px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .scrolling-icons__container--inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(115px, 2fr));
    align-items: center;
    overflow-x: hidden;
    margin-left: 2.5rem;
    gap: .5rem;
    flex-wrap: nowrap;
    animation: none !important;
  }
  .scrolling-icons h6{
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
   .scrolling-icons__item img {
    max-width: 120px;
    max-height: 70px;
    object-fit: contain;
    padding: 0.5rem 0.5rem;
  }
}
/* Animation for scrolling effect */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Make sure the container hides overflow */
.scrolling-icons__container {
  overflow: hidden;
  width: 100%;
}
.our-services {
  background-color: #1a1a1a;
  padding: 2rem 8rem;
}
.our-services h2 {
  color: #23e5f3;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
  text-transform: uppercase;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}
.service-card {
  background-color: #222;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 250px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-content {
  padding: 1.5rem;
  z-index: 1;
}
.service-content h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  width: 60%;
}
.service-content .highlight {
  color: #23e5f3;
}
.service-content p {
  color: #ccc;
  font-size: 1rem;
  width: 60%;
  margin-bottom: 1.5rem;
}
.service-link {
  color: #23e5f3;
  font-size: 1.5rem;
  text-decoration: none;
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  width: 30px;
  height: 30px;
  border: 2px solid #23e5f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}
.service-link:hover {
  background-color: #23e5f3;
  color: #222;
}
.service-card-link:hover .service-card {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(7, 121, 243, 0.1);
}
.service-card-link:hover .service-link {
  background-color: #23e5f3;
  color: #222;
}
.service-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card-link:hover {
  text-decoration: none;
}
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-link:hover .service-card {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(7, 121, 243, 0.1);
}
@media (max-width: 768px) {
  .our-services {
    padding: 1rem;
    background-color: #232733;
  }
  .our-services h2 {
    font-size: 1.3rem;
    padding-top: 1rem;
    margin-bottom: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }
  .service-card {
    height: 100%;
  }
  .service-content {
    padding-bottom: 3.5rem;
  }
  .service-image {
    width: auto;
    height: 100%;
    opacity: 0.9;
  }
  .service-content h3 {
  color: #fff;
  font-size: 1rem;
  padding-top: 0%;
  margin-bottom: 0.7rem;
  width: 70%;
}
.service-content .highlight {
  color: #23e5f3;
}
.service-content p {
  color: #ccc;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  width: 60%;
}
}
  .team-section {
    padding-top: 1rem;
    padding-bottom: 2rem;
    text-align: center;
    background-color: #151414;
  }
  .team-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #23e5f3;
    letter-spacing: -1px;
    margin-top: 2rem;
    text-transform: uppercase;
  }
  .team-grid {
     max-width: 1550px;
    margin: 0 auto 15px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between cards */
    justify-content: center; /* Center the cards */
  }
  .team-card {
    display: flex;
    background: rgba(16, 15, 24, 0.85);
    border-radius: 28px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
    padding: 20px 20px 20px 0;
    align-items: center;
    min-height: 200px;
    max-width: 600px;
    width: 100%;
    height: 95%;
    margin: 0 auto;
    border: 1px solid rgba(120,120,180,0.13);
    transition: box-shadow 0.2s;
  }
  .team-card:hover {
    box-shadow: 0 8px 48px 0 rgba(60,60,120,0.25);
  }
  .team-img-bg {
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    background: #3a36d1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    margin-left: 1rem;
  }
  .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  .team-info {
    text-align: left;
    flex: 1;
  }
  .team-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: -0.5px;
  }
  .team-role {
    font-size: 1.1rem;
    color: #89898b;
    margin-bottom: 14px;
    font-weight: 600;
  }
  .team-desc {
    color: #bdbdd7;
    font-size: 0.95rem;
    line-height: 1.3;
    margin-top: 18px;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    /* Optional: add a subtle text-shadow for readability */
    text-shadow: 0 1px 8px rgba(30,30,60,0.10);
  }
  @media (max-width: 1100px) {
    .team-grid {
      grid-template-columns: 1fr;
    }
    .team-card {
      max-width: 95vw;
      flex-direction: column;
      align-items: flex-start;
      padding: 32px 20px;
    }
    .team-img-bg {
      margin: 0 0 20px 0;
      width: 140px;
      height: 140px;
    }
    .team-info {
      text-align: left;
      width: 100%;
    }
  }
  @media (max-width: 778px) {
    .team-section {
      padding-top: 0.5rem;
      padding-bottom: 1rem;
    
    }
    .team-title {
      color: #23e5f3;
      font-size: 1.4rem ;
      font-weight: 600 ;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    .team-grid {
      grid-template-columns: 1fr;
      gap: 8px 10px;
    }
    .team-card {
      max-width: 100%;
      width: 95%;
      padding-bottom: 0rem;
      border-radius: 18px;
      margin-bottom: 1rem;
    }
    .team-img-bg {
      width: 220px;
      height: 284px;
      border-radius: 18px;
    margin-left: 3.3rem;

    }
    .team-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 18px;
    }
    .team-name {
      font-size: 1.2rem;
      font-weight: 600;
    }
    .team-role {
      font-size: 1rem;
      margin-bottom: 10px;
    }
    .team-desc{
      font-size: 0.85rem;
      line-height: 1.280;
      margin-bottom: 0.5rem;
    }
  }
/* Amazon Success Strategy Section - Black Background */
.section_layout360 {
  background: #ffffff;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
  padding-left: 8vw;
  padding-right: 8vw;
}
.layout360_component {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}
.layout360_grid-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.layout360_row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.layout360_card {
  background: #121216;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 32px 24px;
  flex: 1 1 320px;
  max-width: 390px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.layout360_card:hover {
  box-shadow: 0 8px 32px rgba(35,229,243,0.18);
}
.layout360_card-content {
  width: 100%;
}
.layout360_card-content-top {
  margin-bottom: 16px;
}
.margin-bottom.margin-xsmall {
  margin-bottom: 8px;
}
.section_layout360 h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  padding-bottom: 1.5rem;
  text-align: center;
    text-transform: uppercase;
}
.layout360_card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #23e5f3;
  text-align: center;
}
.text-color-secondary {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.6;
}
.layout360_image-wrapper {
  width: 100%;
  max-width: 80%;
  margin: 0 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
 @media (max-width: 778px) {
  .layout360_grid-list,
  .layout360_row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .layout360_card {
    max-width: 100%;
    min-width: 0;
  }
  .section_layout360 h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: #000000;
  }
}
@media screen and (max-width: 767px) {
  .hide-on-mobile {
    display: none;
  }
}
#talkBtn {
  margin-top: 40px;
  padding: 10px 25px;
  background: #23e5f3;
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
#talkBtn:hover {
  background: #23e5f3;
}
.testimonial-section {
 padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-section h2 {
  color: #000000;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -.07rem;
  line-height: 1.14;
   text-transform: uppercase;
   margin-top: 2.5rem;
}
.section-subtitle {
  max-width: 100%;
  margin: 10px auto 50px;
  font-size: 1.1rem;
  color: #4c4848;
  text-align: center;
width: 70%;
}
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 0 10px;
}
.testimonial-card {
  min-width: 310px;
  max-width: 310px;
  background: #0e1a3b;
  border-radius: 12px;
  padding: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.avatar {
  background: #23e5f3;
  color: #00123a;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.name {
  font-weight: bold;
  text-align: left;
  color: #fff;
  margin-bottom: 0%;
}
.meta {
  font-size: 0.85rem;
  color: #bbb;
  text-align: left;
  margin-top: 3%;
}
.stars {
  color: #2ecc71;
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-align: center;
}
.title {
  font-weight: bold;
  font-size: 0.95rem;
  margin: 10px 0 5px;
  text-align: center;
  color: #fff;
  width: 100%;
}
.content {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #ccc;
  text-align: center;
}
.date {
  font-size: 0.8rem;
  color: #999;
}
.slider-buttons {
  display: flex;
  justify-content: center;
  align-items: center; /* optional, for vertical centering */
  margin-top: 20px;
}
.slider-buttons button {
  background: #23e5f3;
  color: #00123a;
  border: none;
  padding: 10px 20px;
  font-size: 1.5rem;
  margin: 0 5px;
  margin-bottom: 2rem;
  border-radius: 6px;
  cursor: pointer;
}
 @media (max-width: 778px) {
  .testimonial-section {
    order: -1;
  }
  .testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }
  .testimonial-card {
    width: 50%;
    max-width: 100%;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
.testimonial-section h2{
  color: #000000;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
   text-transform: uppercase;
   padding-left: 5px;
  padding-right: 5px;
}
.section-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #3a3737;
  text-align: center;
 max-width: 100%;
 width: 100%;
}
.name {
font-size: 1rem;
  margin-bottom: 0%;
}
.meta {
  font-size: 0.80rem;
  color: #bbb;
  text-align: left;
  margin-top: 3%;
}
.stars {
  font-size: 1.1rem;
}
.title {
  font-size: 0.95rem;
  width: 100%;
}
.content{
  font-size: .90rem;
  margin-bottom: 0rem;
  width: 100%;
}
.slider-buttons button {
  font-size: 1.2rem;
  padding: 8px 16px;
  margin: 0 3px;
  margin-bottom: 1rem;
}
}
.faq__title h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  color: #000000;
  font-family: "Gotham Book", Gotham-Book, Helvetica, Arial, sans-serif;;
   text-transform: uppercase;
}
/* Hide on desktop, show on mobile */
.faq-mobile-heading {
  display: none;
}
.accordion {
  border: none;
  background: none;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.accordion__item {
  border-bottom: 1px solid #e0e3ee;
}
.accordion-header {
  margin: 0;
}
.accordion-button {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  padding: 1.2rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.accordion-button:after {
  content: '+';
  float: right;
  font-size: 1.3rem;
  transition: transform 0.2s;
}
.accordion-button[aria-expanded="true"]:after {
  content: '-';
}
.accordion-collapse {
  display: none;
  animation: fadeIn 0.3s;
}
.accordion-collapse.show {
  display: block;
}
.accordion-body {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  color: #000000;
  border-radius: 0 0 8px 8px;
  font-size: 0.95rem;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
 @media (max-width: 778px) {
  .faq-desktop {
    display: none;
  }
  .faq__title h2 {
     font-size: 1.5rem;
     font-weight: 600;
    padding: 0 auto;
    text-transform: none;
    margin: 1.5rem auto;
  }
   .faq-mobile-heading {
    display: block;
  }
  .accordion-button {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  padding: 1.2rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
  .accordion-body {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  color: #000000;
  border-radius: 0 0 8px 8px;
  font-size: 0.85rem;
}
.accordion {
  border: none;
  background: none;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 0rem;
}
}
.form-section {
    position: relative;
    padding: 2.5rem 0 2.5rem 0;
    background-color: #000;
    max-width: 1550px;
    margin: 0 auto;
    overflow: hidden;
}

.form-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.form-heading {
  color: #ffffff;
  font-size: 1.8rem;
 font-weight: 550;
  text-align: left;
 line-height: 1.5;
  letter-spacing: 0.2px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.form__text .description {
  color: #f5f5f9;
  font-size: 1.08rem;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.7;
}
.form-flex {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 3vw;
  padding-right: 13.5vw;
  padding-left: 0.5vw;
  max-width: 1550px;
  margin: 0 auto;
}
.form-image{
  padding-bottom: 9rem;
  width: 860px;
  height: auto;
}
.form__text {
  flex: 1 1 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form__form {
  flex: 1 1 0;
  max-width: 370px;
  height: auto;
  margin: 0;
  z-index: 2;
}
.form__form form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #1abdc9c4;
  padding: 0rem 3rem 3rem 3rem;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.011);
}
.form__form label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.form__form input,
.form__form textarea,
.form__form select {
   font-family: "Gotham Book", Gotham-Book, Helvetica, Arial, sans-serif !important;
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 14px;
  border: 0px solid #333;
  background: #68687195;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0rem;
  transition: border 0.2s;
}
.form__form input::placeholder,
.form__form textarea::placeholder {
   font-family: "Gotham Book", Gotham-Book, Helvetica, Arial, sans-serif !important;
  color: #fff; /* Or any color you want */
  opacity: 1;  /* Ensures full opacity */
}
.form__form input:focus,
.form__form textarea:focus,
.form__form select:focus {
  border: 1.5px solid #23e5f3;
  outline: none;
}
.form__form button,
.form__form input[type="submit"] {
   font-family: "Gotham Book", Gotham-Book, Helvetica, Arial, sans-serif !important;
  background: #535454dd;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 1rem;
}
.form__form button:hover,
.form__form input[type="submit"]:hover {
  background: #23e5f3;
}
#form-status {
  margin-top: 0rem;
  color: #1aed87;
  font-weight: 600;
  text-align: center;
}
 @media (max-width: 778px) {

.form-bg-image {
   display: none;
}

  .form-heading {
    font-size: 1.3rem  ;
    font-weight: 600  ;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    margin-bottom: 1rem;
  }
  .form-section{
    padding: 0rem 0;
    margin: 0;
    background-image: none; /* Remove background image on smaller screens */
    background-color: #000000; /* Set a solid background color */
  }
  .form-flex {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 ;
    margin: 0;
  }
  .form__text, .form__form {
    max-width: 100%;
  }
  .form-image{
    display: none;
  }
  .form__form {
    max-width: 100%;
    padding: 0 0px;
    width: 100%;
    height: auto;
    margin:0;
  }
  .form__form form {
    padding: 2rem 0.5rem;
    border-radius: 0px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    gap: 1.6rem;
  }
  .form__form label {
    font-size: 1rem;
    margin-bottom: 0.15rem;
  }
  .form__form input,
  .form__form textarea,
  .form__form select {
    width: 80%;
    margin: 0 auto;
    font-size: 0.98rem;
    padding: 1rem 0.9rem;
    border-radius: 16px;
  }
.form__form button,
  .form__form inout[type="submit"]{
  width: 50%;
  margin: 1rem auto;
}
}
/* 1. Make all images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
* {
  box-sizing: border-box;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
.container, .row, .features .row, .solutions__container {
  max-width: 100%  ;
  width: 100%  ;
  overflow-x: hidden  ;
  box-sizing: border-box;
  margin: 0 auto;
  padding-left: 0  ;
  padding-right: 0  ;
}
/* Footer Styles */
.footer4_component {
  background: #ffffff;
  color: #000000;
  padding: 0;
    max-width: 100%;
  margin: 0 auto;
  font-family: "Montserrat", Arial, sans-serif;
}
.footer4_top-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 12vh;
  padding-top: 12vh;
}
.footer4_logo-link {
  display: flex;
  align-items: center;
  margin-left: 8vw;
}
.footer4_logo {
  height: auto;
  width: 13vw;
  max-width: 100%;
}
.footer4_link-list {
  display: flex;
  gap: 2vw;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.footer4_link {
  color: #424040;
  text-decoration: none;
  letter-spacing: 0.01rem;
  font-size: 1.2vw;
  font-weight: 700;
  transition: color 0.2s;
}
.footer4_link:hover {
  color: #000000;
}
/* Centered divider line in footer */
.line-divider {
  border-top: 1px solid #232733;
  margin: 0 auto 5vh auto;
  width: 85%;           /* Adjust width as needed (e.g., 70%-90%) */
  max-width: 100%;    /* Optional: limit max width */
}
/* Footer bottom row: space-between, max width, centered */
.footer4_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;    /* Match with .line-divider for alignment */
  margin: 0 auto;
  width: 85%;           /* Same as .line-divider */
  padding-bottom: 7vh; /* Optional: add bottom space */
}
.footer4_legal-link {
  color: #000000;
  text-decoration: none;
  font-size: 1vw;
  font-weight: 600;
  transition: color 0.2s;
}
.footer4_legal-link:hover {
  color: #000000;
}
.footer4_social-list {
  display: flex;
  gap: 0.8rem;
}
.footer4_social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0, 0, 0);
  border-radius: 50%;
  width: 3.5vw;
  height: 7vh;
  transition: background 0.2s;
  border: 1px solid #232733;
}
.footer4_social-link:hover {
  background: #232733;
}
.footer4_social-link svg {
  background-color: #00000000;
  width: 3.5vw;
  height: 4vh;
  fill: #000000;
}
@media (max-width: 776px) {
  .footer4_top-wrapper, .footer4_bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5vh;
  }
  .line-divider{
    margin: 0 auto 2vh auto;
  }
  .footer4_logo {
  height: auto;
  width: 38vw;
  max-width: 100%;
}
   .footer4_link-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0.5rem;
    justify-items: center;
    width: 100%;
    padding: 0 1rem;
  }
  .footer4_link {
    font-size: 1rem;
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
  }
  .footer4_logo-link {
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .footer4_legal-link {
  color: #000000;
  text-decoration: none;
  font-size: 4vw;
  font-weight: 600;
  transition: color 0.2s;
}
.footer4_social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0, 0, 0);
  border-radius: 50%;
  width: 9.5vw;
  height: 5vh;
  transition: background 0.2s;
  border: 1px solid #232733;
}
.footer4_social-link svg {
  background-color: #00000000;
  width: 4.5vw;
  height: 4vh;
  fill: #000000;
}
  .footer4_social-list {
    margin-top: 1rem;
  }
}
  .view-more{
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .view-button {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 100;
    color: #ffffff;
    background-color:#0e1a3b;
    border: 2px solid  #1aeddf;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
@media screen and (max-width: 776px) {
  .view-button {
    display: inline-block;
    font-size: 0.7rem;
    padding: 8px 16px;
}
}
/* Case Study Section Styles */
.section-case-study {
  padding: 20px 0;
  background-color: #000000;
  max-width: 100%;
}
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 20px 0;
}
.case-study-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.case-study-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  align-self: center;
  width: 80%;
}
/* Left side with slider */
.case-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  overflow: hidden;
}
.case-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
.case-slider-container {
  position: relative;
  height: 500px;
  width: 100%;
}
.case-slider {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  position: relative;
  width: 250px;
  height: 500px;
  border-radius: 30px;
  border: 10px solid #333;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.phone-earpiece {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 17px;
  background-color: #333;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-button-prev,
.swiper-button-next {
  color: #1AED87;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 24px;
  font-weight: bold;
}
/* Metrics section */
.case-metrics {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}
.metric {
  flex: 1;
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
}
.metric-value {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #333;
  text-align: center;
}
.metric-value span {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #333;
  text-align: center;
}
.metric-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  justify-content: center;
}
.metric-label svg {
  width: 16px;
  height: 16px;
}
/* Right side with content */
.case-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.case-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.case-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
  margin: 0;
}
.case-company {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #333;
}
.case-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.author-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #333;
}
.section-text {
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: #666;
}
.case-section p{
  margin-bottom: 10px;
}
.section-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0px 0 8px 0;
  color: #333;
}
.section-case-study h5 {  
  font-size: 14px;
  color: #666;
  font-weight: 100;
  margin-bottom: 0%;
}
.section-title span {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
}
.section-case-study h7 {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  margin:0px 0 8px 0;
}
/* Testimonial */
.case-testimonial {
  margin-top: auto;
  background-color: #0e1a3b;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  width: 100%;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info {
  display: flex;
  flex-direction: column;
}
.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.author-title {
  font-size: 14px;
  color: #959393;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #e2e0e0;
  font-style: italic;
}
.section-case-study h1{
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color:#23e5f3 ;
  text-transform: uppercase;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
 .case-study-item .case-content{
    display: none;
  }
  .case-study-item.expanded .case-content {
    display: block;
  }
/* Responsive styles */
@media (max-width: 782px) {
  .case-study-item {
    grid-template-columns: 1fr;
    padding: 30px;
    width: 100%;
  }
  .case-slider-container {
    height: auto;
  }
  .case-title {
    font-size: 1.2rem;
    color: #000;
    text-align: center;
  }
  .phone-frame {
    width: 200px;
    height: 400px;
  }
  .section-case-study {
    padding: 10px 0;
  }
  .phone-frame {
    width: 170px;
    height: 350px;
    border-width: 8px;
  }
  .phone-earpiece {
  width: 55px;
  height: 15px;
}
  .case-metrics {
    flex-direction: row;
    gap: 3px;
  }
  .metric-value {
    margin-left: 0rem;
    font-size: 17px;
  }
  .case-company {
    font-size: 18px;
  }
  .author-name {
    font-size: 14px;
  }
  .section-title {
    font-size: 15px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .section-text, .testimonial-text {
    font-size: 13px;
  }
  .section-padding {
    padding: 10px 0;
  }
  .section-case-study h1{
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color:#23e5f3 ;
  text-transform: uppercase;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.section-case-study h5 {  
  font-size: 13px;
}
.section-title span {
  font-size: 13px;
}
.section-case-study h7 {
  font-size: 13px;
  padding-bottom: 0%;
}
 .case-study-item .case-content{
    display: none;
  }
  .case-study-item.expanded .case-content {
    display: block;
  }
}
.case-study-item ul{
  margin: 0rem;
margin-left: -1.5rem;
}
.view-more-container {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.view-more-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  background-color: #1aeddf;
  border: 2px solid #1a7ced;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.view-more-button:hover {
  background-color: #ffffff;
  color: #1adbed;
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.view-more-button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 600px) {
  .view-more-button {
    padding: 12px 24px;
    font-size: 0.85rem;
  }}