@font-face {
  font-family: "SF-Pro-Display-Bold";
  src: url("images/SF-Pro-Display-Bold.otf");
}

/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SF-Pro-Display", sans-serif;
  overflow-x: hidden;
}

/* ******************************************************************************************************************************************************************** */

/* HEADER STYLES */
/* NAVBAR STYLING */
.header {
  display: flex;
  width: 100%;
  height: 60px;
  flex-direction: column;
  align-items: center;
  border: 0px solid #000;
  background-color: #f9f9f9;
  position: fixed;

  z-index: 1000;
  overflow: visible;
}

.nav-container {
  display: flex;
  width: 100%;
  max-width: 1152px;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  overflow: visible !important;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 8.5px 0;
}

.logo {
  width: 137px;
  height: 42px;
  position: relative;
}
/* NAVIGATION MENU STYLING */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.3s;
  overflow: visible !important;
}

.nav-menu :hover {
  text-decoration: underline;
  text-decoration-color: #0474c4;
  text-decoration-thickness: 2.5px;
  text-underline-offset: 10px; /* Add space between text and underline */
  overflow: visible !important;
}
/* react out to us */
@font-face {
  font-family: "SF Pro Display", sans-serif;
  padding-right: 17px;
  src: local("SF Pro Display");
  font-weight: 400;
  font-style: normal;
}

.contact-text a {
  text-decoration: none;
  color: #fff; 
  font-weight: none;
}
.contact-text a:hover {
  text-decoration: none !important;
}

.contact-prompt {
  display: block;
}

.contact-text {
  padding: 16px 20px;
  color: #ffffff;
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  border-radius: 8px;
  background: #0575c5;
  box-shadow: 3px -3px 3.4px 0px rgba(0, 0, 0, 0.25) inset;
  overflow: hidden !important;
  gap: 12px;
}
.contact-text:hover {
  background: #0056b3;
  cursor: pointer;
}

/* NAV LINK STYLING */

.nav-link {
  display: block;
  padding: 14px 20px;
  color: #002046;
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #003674;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  font-size: 24px;
  color: #002046;
  overflow: hidden;
}

.mobile-menu-button:focus {
  outline: 2px solid #002046;
  outline-offset: 2px;
}

/* Dropdown Styling */
/* Dropdown Parent */
.dropdown {
  position: relative;
  overflow: hidden;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 50% !important;
  left: 0;
  right: 50%;
  background-color: #f9f9f9;
  border: 1px solid #f9f9f9;
  list-style: none;
  padding: 10px;

  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 350px;
  z-index: 9999;
  border-radius: 0px 0px 10px 10px;
}

/* Dropdown Items */
.dropdown-menu li {
  padding: 15px 10px;
}

.dropdown-menu li a {
  text-decoration: none !important;
  color: #002046;
  display: block;
  font-weight: 500;
  font-family: "SF Pro Display", sans-serif;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown when class 'show' is added */
.dropdown-menu.show {
  display: block;
}

/* Style for Submenus */
/* Main Dropdown */
.dropdown .dropdown-menu {
  top: 100% !important;
  left: 0;
  width: 320px;
  position: absolute;
  background-color: white;
  border: 1px solid #ddd;
  list-style: none;
  padding: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Submenu  */
.dropdown-submenu {
  display: none;
  top: -15% !important;
  right: -88% !important;
  width: 280px;
  position: absolute;
  background-color: white;

  list-style: none;
  padding: 20px;
}

/* Ensure submenus open beside their parent */
.dropdown:hover {
  display: block;
}
.dropdown-menu {
  display: none;
}
.dropdown-submenu {
  display: block;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-submenu.show {
  display: block;
}

/* ________________________________________________________________________ */

@media screen and (max-width: 768px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 15px;
    position: fixed;
    width: 100%;
    background-color: #f9f9f9;
    z-index: 1000;
    border: 0px solid #000;
  }

  .logo-wrapper {
    display: flex;
    align-items: center;
  }

  .nav-container {
    overflow: visible;
  }

  .mobile-menu-button {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #002046;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 15px; /* Space from right edge */
    top: 50%;
    transform: translateY(-50%); /* Ensures it is vertically centered */
  }

  .nav-menu {
    opacity: 0;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 50%;
    width: 50%;
    height: 70%;
    background-color: #ffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000 !important;
    transition: visibility 0.3s, opacity 0.3s ease-in-out;
    overflow: visible;
    border-radius: 0px 0 0px 10px;
  }

  .nav-menu.active {
    display: flex !important;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    height: auto;
    overflow: hidden;
  }
  .contact-prompt {
    display: block;
    margin-top: 10px;
  }
}

/* 1024 */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .header {
    height: 55px; /* Slightly smaller header */
    padding: 0 20px;
  }

  .mobile-menu-button {
    display: block; /* Show the hamburger menu */
    font-size: 26px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-menu {
    opacity: 0;
    flex-direction: column;
    position: absolute;
    top: 55px; /* Adjusted for new header height */
    left: 50%;
    width: 50%;
    height: auto;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000 !important;
    transition: visibility 0.3s, opacity 0.3s ease-in-out;
    overflow: visible;
    border-radius: 0px 0 10px 10px;
  }

  .nav-menu.active {
    display: flex !important;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    height: auto;
    overflow: hidden;
  }

  .contact-prompt {
    display: block;
    margin-top: 10px;
  }
}

/* **************************************************************************************************************************************************************** */

/* HERO SECTION */
.hero {
  background-image: url("../images/hero-background.jpg");
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  flex-direction: row;
  overflow: hidden;
}
.hero-content {
  padding: 0;
  margin: 0%;
  justify-content: flex-start;
  padding-right: 30px;
  text-align: left;
  position: relative;
  left: 80px;
  bottom: 50px;
}

.hero-content h1 {
  color: #fff;
  font-family: "SF Pro Display", sans-serif;
  text-align: left;
  font-size: 200px;

  font-weight: 1000;
  line-height: normal;
  letter-spacing: 5.12px;
  margin-right: 700px;
  margin-bottom: 18px;
  padding-right: 20px;
}

.hero-content h2 {
  color: #fff;
  font-family: "SF Pro Display", sans-serif;
  font-size: 23px;
  text-align: left;
  font-weight: 800;
  letter-spacing: 2.88px;
  margin-bottom: 18px;
  margin-right: 600px;
  padding-right: 20px;
}

.hero-content p {
  color: #fff;
  font-family: "SF Pro Display", sans-serif;

  text-align: left;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.72px;
  margin-bottom: 18px;
  margin-right: 620px;
  padding-right: 20px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #0575c5;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin-right: 700px;
  border-radius: 8px;
  padding-right: 20px;
}

.btn-primary:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .hero {
    background-image: url("../images/hero-background.jpg"); /* Keep background */
    height: auto;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 50px 20px;
  }

  .hero-content {
    left: 0;
    bottom: 0;
    padding: 0 20px;
    text-align: center;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 50px; /* Reduce font size for mobile */
    margin-right: 0;
    padding-right: 0;
    line-height: 1.2;
    letter-spacing: 2px;
  }

  .hero-content h2 {
    font-size: 18px;
    margin-right: 0;
    padding-right: 0;
    text-align: center;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 16px;
    margin-right: 0;
    padding-right: 0;
    text-align: center;
  }

  .btn-primary {
    font-size: 16px;
    padding: 10px 16px;
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .hero {
    background-image: url("../images/hero-background.jpg"); /* Keep background */
    height: auto;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 70px 40px; /* Adjust padding */
  }

  .hero-content {
    left: 0;
    bottom: 0;
    padding: 0 30px;
    text-align: center;
    justify-content: center;
    max-width: 80%;
  }
  .hero-content h1,
  .hero-content h2 {
    text-align: center;
    display: block;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 60px; /* Slightly reduce font size */
    line-height: 1.2;
    letter-spacing: 2px;
  }

  .hero-content h2 {
    font-size: 22px;
    text-align: center;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 18px;
    text-align: center;
    max-width: 80%;
    margin: 0 auto; /* Center the paragraph */
  }

  /* ✅ Fix: Center button properly */
  .btn-primary {
    font-size: 18px;
    padding: 12px 20px;
    display: flex; /* Center button */
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 20px auto 0 auto; /* Auto centers horizontally */
  }
}

/* ************************************************************************************************************************************************* */

/* ABOUT SECTION */
.about {
  padding: 80px 0;
  background: #f8f9fa;
}

.about .container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.about-media video {
  width: 500px;
  height: 100%;

  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  width: 650px;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
  width: 650px;
}

.about-content .btn-primary {
  border-radius: 8px;
  background: #0575c5;
  box-shadow: 3px -3px 3.4px 0px rgba(0, 0, 0, 0.25) inset;
  display: flex;
  width: 117px;
  height: 47px;
  padding: 16px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "SF Pro Display", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  overflow: hidden;
}

.about-content .btn-primary:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .about {
    padding: 50px 20px;
    text-align: center; /* Center content */
  }

  .about .container {
    flex-direction: column; /* Stack items vertically */
    gap: 30px;
    text-align: center;
  }

  .about-media video {
    width: 100%; /* Make video responsive */
    height: auto;
  }

  .about-content h2 {
    font-size: 1.5rem; /* Reduce font size */
    width: 100%;
  }

  .about-content p {
    font-size: 1rem; /* Adjust paragraph size */
    width: 100%;
    line-height: 1.5;
  }

  .about-content .btn-primary {
    width: 30%; /* Make button full width */
    padding: 12px 20px;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 40%;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .about {
    padding: 60px 40px; /* Adjust padding for medium screens */
    text-align: center;
  }

  .about .container {
    flex-direction: column; /* Stack content vertically */
    gap: 40px; /* Add spacing */
    text-align: center;
    align-items: center;
  }

  .about-media video {
    width: 90%; /* Make video responsive but not too large */
    height: auto;
    max-width: 700px; /* Restrict maximum width */
  }

  .about-content h2 {
    font-size: 26px; /* Adjust heading size */
    line-height: 1.4;
    width: 100%;
  }

  .about-content p {
    font-size: 17px; /* Adjust paragraph size */
    line-height: 1.6;
    max-width: 85%;
    margin: 0 auto; /* Center text */
  }

  .about-content .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 14px 28px;
    font-size: 18px;
    margin: 20px auto 0 auto;
  }
}

/* *************************************************************************************************************************************************************** */

/* SERVICES SECTION */
h2 {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;

  color: #fff;
}

.services {
  padding: 60px 0;
  background: #f8f9fa;
  background-image: url("../images/bg-2.jpg") !important;
  background-size: cover;
  background-repeat: no-repeat;
}
.service-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  justify-content: center;
  padding-top: 20px;
}

.service-card {
  background: white;
  color: black;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  width: 330px;
  height: 360px;
  flex-shrink: 0;

  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #002046;
  text-align: center;
  font-family: "SF Pro Display", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;
}

.service-card p {
  color: #002046;
  text-align: justify;

  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 106%; /* 16.96px */
  letter-spacing: normal;
  padding: 20px;
}

/* SVG Circle for Icons */
.icon-circle {
  width: 86.531px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 50%;
}

.icon-circle img {
  width: 49px;
  height: 49px;
}

/* SVG Circle Colors */
.green {
  background: #008115;
}
.purple {
  background: #300b8d;
}
.blue {
  background: #0a4f56;
}
.yellow {
  background: #175be3;
}
.pink {
  background: #7d00a6;
}
.dark-blue {
  background: #002046;
}

@media (max-width: 768px) {
  .services {
    padding: 40px 20px; /* Adjust padding for smaller screens */
    text-align: center;
  }

  .service-container {
    grid-template-columns: repeat(
      1,
      1fr
    ); /* Stack services in a single column */
    gap: 15px;
    max-width: 100%;
  }

  .service-card {
    width: 100%; /* Make service cards take full width */
    max-width: 330px;
    margin: auto; /* Center service cards */
    height: auto;
    padding: 20px;
  }

  .service-card h3 {
    font-size: 20px; /* Reduce font size */
    letter-spacing: 1.5px;
  }

  .service-card p {
    font-size: 14px; /* Adjust text size for better readability */
    text-align: center;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
  }

  .icon-circle img {
    width: 40px;
    height: 40px;
  }
}
/* 1024 > 768*/

@media (max-width: 1024px) and (min-width: 769px) {
  .services {
    padding: 50px 30px;
    text-align: center;
  }

  .service-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 90%;
    margin: auto;
  }

  .service-card {
    width: 100%;
    max-width: 350px;
    margin: auto;
    height: auto;
    padding: 25px;
  }

  .service-card h3 {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .service-card p {
    font-size: 15px;
    text-align: center;
  }

  .icon-circle {
    width: 80px;
    height: 80px;
  }

  .icon-circle img {
    width: 45px;
    height: 45px;
  }
}

/* ************************************************************************************************************************************************** */

/* MILESTONE SECTION */
.milestone {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.milestone h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.milestone p {
  font-size: 1.1rem;
  color: #002046;
  margin-bottom: 40px;
  font-weight: 500;
  font-family: "SF Pro Display", sans-serif;
}

.milestone-boxes {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 20px;
}

.milestone-box {
  background: white;
  padding: 20px;

  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 200px;
}

.milestone-box img {
  width: 50px;
  margin-bottom: 15px;
}

.milestone-box h3 {
  font-size: 1.2rem;
  color: #222;
}

@media (max-width: 768px) {
  .milestone {
    padding: 50px 20px;
  }

  .milestone h2 {
    font-size: 1.5rem;
  }

  .milestone p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .milestone-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .milestone-box {
    width: 90%;
    max-width: 250px;
    margin: auto; /* Center the boxes */
    padding: 15px;
  }

  .milestone-box img {
    width: 40px; /* Reduce image size */
  }

  .milestone-box h3 {
    font-size: 1rem; /* Adjust text size */
  }
}

/* 1024 and 768  */

@media (max-width: 1024px) and (min-width: 769px) {
  .milestone {
    padding: 60px 30px; /* Adjust padding for medium screens */
  }

  .milestone h2 {
    font-size: 1.8rem; /* Slightly larger heading */
  }

  .milestone p {
    font-size: 1.1rem; /* Adjust text size */
    margin-bottom: 35px;
  }

  .milestone-boxes {
    flex-direction: row; /* Keep boxes in a row */
    flex-wrap: wrap; /* Allow wrapping */
    gap: 25px;
    justify-content: center;
  }

  .milestone-box {
    width: 45%; /* Adjust width for better layout */
    max-width: 280px;
    padding: 18px;
  }

  .milestone-box img {
    width: 50px; /* Slightly bigger image size */
  }

  .milestone-box h3 {
    font-size: 1.1rem; /* Adjust text size */
  }
}

/***************************************************************************************************************************************************  */
/* Maps Section */
.map-section {
  background: url("../images/maps9.png") ;
  background-size: cover;
  background-position: center; 
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  aspect-ratio: 1440/607.27;
  /* position: relative;
  right: 50px; */
  
}
@media screen and (max-width: 768px) {
  .map-section {
    width: 100%; 
    height: auto; 
    min-height: 300px; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    right: 0; 
    aspect-ratio: unset; 
  }
}




/* ************************************************************************************************************************************ */
/* Trusted Partner Certifications Section */
.trusted-partners {
  text-align: center;
  padding: 50px 0;
  background-image: url("../images/bg-3.jpg");
  background-size: cover;
  background-repeat: no-repeat;

  color: white;
}

.trusted-partners h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.partner-description {
  font-size: 18px;
  max-width: 70%;
  margin: 0 auto 30px;
}

/* Grid for Partner Logos */
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 20px;
}

.partners-grid img {
  width: 180px;
  height: 75px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease-in-out;
}
.partners-grid .AWS {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.partners-grid .MAR {
  /*width: 259px;*/
  height: 75px;
  flex-shrink: 0;
  aspect-ratio: 259/75;
}
.partners-grid .MP {
  width: 153px;
  height: 75px;
  flex-shrink: 0;
  aspect-ratio: 153/77;
}
.partners-grid .salesforce {
  width: 200px;
  height: 75px;
  flex-shrink: 0;
  aspect-ratio: 255/74;
}
.partners-grid .workday {
  width: 90px;
  height: 75px;
  flex-shrink: 0;
  aspect-ratio: 180/75;
}

.partners-grid img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .trusted-partners {
    padding: 40px 20px; /* Reduce padding */
    text-align: center;
  }

  .trusted-partners h2 {
    font-size: 28px; /* Decrease heading size */
    margin-bottom: 10px;
  }

  .partner-description {
    font-size: 16px; /* Reduce text size */
    max-width: 90%;
  }

  .partners-grid {
    gap: 20px; /* Reduce gap between logos */
    padding: 10px;
  }

  .partners-grid img {
    width: 120px; /* Reduce logo size */
    height: auto;
    padding: 10px;
  }

  .partners-grid .AWS,
  .partners-grid .MAR,
  .partners-grid .MP,
  .partners-grid .salesforce,
  .partners-grid .workday {
    width: 100px;
    object-fit: contain;
  }
}

/* 1024 and 768  */

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .trusted-partners {
    padding: 50px 30px; /* Adjust padding for medium screens */
    text-align: center;
  }

  .trusted-partners h2 {
    font-size: 32px; /* Slightly reduce heading size */
    margin-bottom: 15px;
  }

  .partner-description {
    font-size: 18px; /* Adjust text size */
    max-width: 80%;
  }

  .partners-grid {
    gap: 25px; /* Adjust gap between logos */
    padding: 15px;
  }

  .partners-grid img {
    width: 140px; /* Slightly smaller logo size */
    height: auto;
    padding: 12px;
  }

  .partners-grid .AWS,
  .partners-grid .MAR,
  .partners-grid .MP,
  .partners-grid .salesforce,
  .partners-grid .workday {
    width: 120px;
    object-fit: contain;
  }
}

/* INDUSTRIES SECTION */
/* ******************************************************************************************************************************************************** */

/* INDUSTRIES SECTION */

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

.industries-section {
  position: relative;
  width: 100%;
  padding: 77px 77px;
  overflow: hidden;

  background-image: url("/../images/bgind.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.background-pattern {
  position: absolute;
  width: 1758px;
  height: 1759px;
  top: -881px;
  left: -478px;
  transform: rotate(-50.01deg);
  z-index: 0;
}

.industries-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 22px;
  overflow: hidden;
}

.industries-header {
  max-width: 550px;
  display: flex;

  flex-direction: column;
  gap: 63px;
}

.industries-title {
  color: #fff;
  font-family: "SF Pro", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.92px;
  margin: 0;
}

.industries-description {
  color: #fff;
  font-family: "SF Pro Rounded", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.48px;
  text-align: justify;
  margin: 0;
  width: 437px;
  height: 243px;
  flex-shrink: 0;
  padding-right: 20px;
  overflow: hidden;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 60%;
  overflow: hidden;
  padding-left: 50px;
}

.industry-card {
  display: flex;
  align-items: center;
  padding: 16px 29px;
  background: linear-gradient(90deg, #fff 0%, #0fc59a 100%);
  border-radius: 8px;
  border: 3px solid #23caa3;
  height: 63px;
  position: relative;

  overflow: visible;
}

.industry-card.special-gradient {
  background: linear-gradient(90deg, #fff 0%, #8be3ce 48.17%, #0fc59a 100%);
  width: 210px;
}

.industry-icon {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 16px;
}

.industry-name {
  color: #000000;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-left: 30px;
  font-weight: 780;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .industries-section {
    padding: 50px 20px; /* Reduce padding */
    text-align: center;
  }

  .industries-content {
    flex-direction: column; /* Stack content vertically */
    align-items: center;
    gap: 30px;
  }

  .industries-header {
    max-width: 100%;
    gap: 30px;
  }

  .industries-title {
    font-size: 20px; /* Reduce title size */
    letter-spacing: 1px;
  }

  .industries-description {
    font-size: 14px; /* Reduce text size */
    width: 100%;
    height: auto;
    text-align: center;
    padding-right: 0;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr); /* Change grid to 2 columns */
    max-width: 100%;
    padding-left: 0;
    gap: 10px;
  }

  .industry-card {
    height: auto;
    padding: 12px 20px;
    justify-content: center;
  }

  .industry-card.special-gradient {
    width: 100%; /* Make it responsive */
  }

  .industry-icon {
    width: 25px; /* Adjust icon size */
    height: 25px;
    left: 10px;
  }

  .industry-name {
    font-size: 14px; /* Reduce font size */
    margin-left: 35px;
  }
}

/* 1024 and 768 */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .industries-section {
    padding: 60px 30px; /* Adjust padding for medium screens */
    text-align: center;
  }

  .industries-content {
    flex-direction: column; /* Stack content vertically */
    align-items: center;
    gap: 40px; /* Adjust gap */
  }

  .industries-header {
    max-width: 90%; /* Adjust width */
    gap: 25px;
  }

  .industries-title {
    font-size: 24px; /* Adjust title size */
    letter-spacing: 1.2px;
  }

  .industries-description {
    font-size: 16px; /* Adjust text size */
    width: 90%;
    text-align: center;
    padding-right: 0;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr); /* Change grid to 3 columns */
    max-width: 90%;
    gap: 15px;
  }

  .industry-card {
    height: auto;
    padding: 14px 25px;
    justify-content: center;
  }

  .industry-card.special-gradient {
    width: 100%;
  }

  .industry-icon {
    width: 30px; /* Adjust icon size */
    height: 30px;
    left: 12px;
  }

  .industry-name {
    font-size: 16px; /* Adjust font size */
    margin-left: 40px;
  }
}

/* ********************************************************************************************************************************************************************* */

/* TESTIMONIALS SECTION */

.testimonials-section {
  width: 100%;
  padding: 40px 20px;

  min-height: 550px;
  display: flex;

  flex-direction: column;
  align-items: center;
  background-color: #efefef;
  position: relative;
}
.testimonialheading {
  color: #010101;

  font-family: "SF Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1;
  padding-bottom: 10px;
  position: relative;
  bottom: 15px;
}

.testimonials-container {
  max-width: 1300px;

  margin: 0 auto;
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  width: 350%;
  gap: 20px;
}

.testimonials-group {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  padding-bottom: 30px;
}

.testimonial-card {
  width: 350px;
  height: 450px;
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 23px;

  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.profile-image {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 34px;
}

.testimonial-content {
  width: 279px;
  font-family: "SF Pro", sans-serif;
  font-size: 13px;
  color: #000;
  text-align: justify;
  margin: 0 0 36px 0;
  line-height: 1.4;
  overflow-x: visible;
}

.author-details {
  text-align: center;
  position: absolute;
  bottom: 25px;
}

.author-name {
  font-family: "SF Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 7px;
}

.author-role {
  font-family: "SF Pro", sans-serif;
  font-size: 12px;
  color: #000;
  margin-bottom: 7px;
}

.author-company {
  font-family: "SF Pro", sans-serif;
  font-size: 12px;
  color: #000;
}

.navigation-controls {
  width: 100%;
  max-width: 1322px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
  padding: 0 20px;
}

.nav-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
  position: relative;
}

.nav-button:hover {
  opacity: 0.8;
}

.nav-button:focus {
  outline: 2px solid #928787;
  border-radius: 50%;
}

.nav-button:focus:not(:focus-visible) {
  outline: none;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 30px 15px; /* Reduce padding */
    min-height: auto;
  }

  .testimonialheading {
    font-size: 18px; /* Reduce heading size */
    letter-spacing: 0.5px;
  }

  .testimonials-wrapper {
    width: 100%; /* Ensure proper scaling */
    gap: 30px; /* Reduce gap */
    flex-direction: column;
    align-items: center;
  }

  .testimonials-group {
    flex-direction: column; /* Stack testimonials */
    gap: 20px;
    align-items: center;
  }

  .testimonial-card {
    width: 90%; /* Adjust width for small screens */
    max-width: 300px;
    height: auto;
    padding: 20px;
  }

  .profile-image {
    width: 70px; /* Reduce image size */
    height: 70px;
    margin-bottom: 20px;
  }

  .testimonial-content {
    width: 100%;
    font-size: 13px; /* Reduce text size */
    text-align: center;
  }

  .author-details {
    position: static; /* Adjust position */
    margin-top: 10px;
  }

  .navigation-controls {
    position: relative;
    top: auto;
    transform: none;
    margin-top: 20px;
  }

  .nav-button {
    font-size: 20px;
    padding: 10px;
    display: none;
  }
}

/* 1024 */

@media (max-width: 1024px) and (min-width: 769px) {
  .testimonials-section {
    padding: 50px 20px; /* Adjust padding */
    min-height: auto;
    text-align: center;
  }

  .testimonialheading {
    font-size: 22px; /* Adjust heading size */
    letter-spacing: 0.8px;
    text-align: center;
  }

  .testimonials-wrapper {
    width: 100%;
    gap: 40px; /* Adjust gap */
    flex-direction: column;
    align-items: center;
  }

  .testimonials-group {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .testimonial-card {
    width: 90%; /* Adjust width */
    max-width: 350px;
    height: auto;
    padding: 25px;
    text-align: center;
  }

  .profile-image {
    width: 80px; /* Adjust image size */
    height: 80px;
    margin-bottom: 15px;
  }

  .testimonial-content {
    width: 100%;
    font-size: 15px; /* Adjust text size */
    text-align: center;
  }

  .author-details {
    position: static;
    margin-top: 15px;
  }

  .navigation-controls {
    position: relative;
    top: auto;
    transform: none;
    margin-top: 25px;
  }

  .nav-button {
    font-size: 22px;
    padding: 12px;
    display: none;
  }
}

/* ************************************************************************************************************************************************** */

/* FOOTER SECTION */
.footer {
  font-family: SF Pro, -apple-system, Roboto, Helvetica, sans-serif;
  line-height: 1;
  overflow: hidden;
}
.footer-about {
  width: 500px;
  font-family: "SF Pro", sans-serif;
  font-size: 16px;
  color: #ffffffa6;
  text-align: justify;
  margin: 0 0 0 0;
  line-height: 1.4;
  overflow-x: visible;
}

.footer-container {
  background-color: rgba(0, 32, 70, 1);
  display: flex;
  width: 100%;
  padding: 64px 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-content {
  display: flex;
  width: 100%;
  max-width: 1191px;
  flex-direction: column;
  align-items: stretch;
}
.social-media {
  display: flex;
  align-items: center;

  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  top: 120px;
  left: 7px;
}
.social-media .social-icon {
  width: 36px;
  height: 34px;
  gap: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.social-media .social-icon .F {
  width: 36px;
  height: 34px;
  flex-shrink: 0;
  aspect-ratio: 36/34;
}
.social-media .social-icon .I {
  width: 36px;
  height: 34px;
  flex-shrink: 0;
  aspect-ratio: 36/34;
}
.social-media .social-icon .L {
  width: 36px;
  height: 34px;
  flex-shrink: 0;
  aspect-ratio: 36/34;
}
.social-media .social-icon .T {
  width: 36px;
  height: 34px;
  flex-shrink: 0;
  aspect-ratio: 36/34;
}
.social-media .social-icon .Y {
  width: 36px;
  height: 34px;
  flex-shrink: 0;
  aspect-ratio: 36/34;
}

.footer-top {
  position: relative;
  top: 0px;
  left: 0px;
  height: 59px;
  align-self: stretch;
  aspect-ratio: 193/59;
  z-index: 10;
  width: 100%;
}

.footer-columns {
  align-self: center;
  display: flex;
  width: 98%;
  max-width: 100%;
  align-items: flex-start;
  gap: 50px;
  color: rgba(255, 255, 255, 1);
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer-section {
  flex-grow: 0;
  flex-shrink: 0;
}

.services-section {
  /*width: 205px;*/
  clear:both;
}

.section-title {
  font-size: 16px;
  font-weight: 590;
  letter-spacing: 0.48px;
  color: #ffffff;
  margin: 0;
  text-align: left;
  overflow: hidden;
  padding-bottom: 3px;
}

.section-links {
  margin-top: 24px;
  width: 100%;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  font-size: 14px;
  font-weight: 274;
  letter-spacing: 1px;
  color: #ffffffa6;
  text-decoration: none;
  display: block;
  margin-top: 10px;
  overflow: hidden;
}
.footer-contact{
     color: #ffffffa6;
    width: 290px;
    overflow: hidden;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  margin-top: 156px;
  width: 100%;
  align-items: center;
  gap: 40px 60px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 590;
  letter-spacing: 0.48px;
  justify-content: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
}

.legal-links {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  overflow: hidden;
}

.legal-links-wrapper {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  width: 361px;
  align-items: center;
  gap: 40px 60px;
  justify-content: center;
  overflow: hidden;
}

.legal-link {
  color: #ffffffa6;
  text-decoration: none;
  align-self: stretch;

  margin: auto 0;
  overflow: hidden;
  padding-bottom: 20px;
}

.legal-link:hover {
  text-decoration: underline;
}

.copyright {
  align-self: stretch;
  margin: auto 0;
  width: 612px;

  font-size: 16px;
  font-weight: 590;
  letter-spacing: 0.48px;
  color: #ffffffa6;
  overflow: hidden;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 20px; /* Reduce padding */
    text-align: center;
  }

  .footer-content {
    width: 100%;
    align-items: center;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .services-section {
    width: 100%;
  }

  .section-title {
    font-size: 14px;
    text-align: center;
    padding-bottom: 1px;
  }

  .link-list {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-top: 50px;
  }

  .legal-links-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .copyright {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  .legal-link {
    width: 100%;
    font-size: 14px;
    text-align: center;

    position: relative;
    left: 140px;
    padding-right: 80px;
  }

  .social-media {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    top: auto;
    left: auto;
    position: relative;
    margin-top: 20px;
  }

  .social-media .social-icon {
    width: 30px;
    height: 30px;

    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 40px;
  }
}

/* ********************************************************************************************************************************************* */

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}
/* LOGO STYLING */
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* ENSURE PROPER ALIGNMENT */
.navbar .logo {
  display: flex;
  align-items: center;
}

/* RESPONSIVE LOGO SIZE */
@media screen and (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}
/* HERO SECTION BACKGROUND IMAGE */
.hero {
  background: url("../images/hero-background.jpg") no-repeat center center/cover;
  height: 100vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

/* DARK OVERLAY FOR BETTER TEXT VISIBILITY */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* HERO CONTENT STYLING */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.btn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.btn:hover {
  background-color: #0056b3;
}

/* ***************************************************************************************************************************************************** */

/* BRAND SECTION FIRST ROW */

.trustedH1 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
  overflow: hidden;
}
.logo-banner {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  padding-left: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  align-items: center;
  gap: 10px;
  overflow: visible;
  justify-content: start;
}

.logo-container {
  align-self: stretch;
  display: flex;
  margin-block: auto;
  height: 60px;
  width: 1440px;
  align-items: center;
  gap: 28px;
  overflow: visible;
  justify-content: start;
}

@media (max-width: 991px) {
  .logo-container {
    max-width: 100%;
  }
}

.logo {
  object-fit: contain;
  object-position: center;
  align-self: stretch;
  margin-block: auto;
  flex-shrink: 0;
}

.logo-standard {
  width: 147px;
  height: 43px;
  flex-shrink: 0;
  aspect-ratio: 147/43;
}

.logo-wide-1 {
  aspect-ratio: 3.41;
  width: 147px;
}

.logo-medium-1 {
  aspect-ratio: 3.94;
  width: 118px;
}

.logo-wide-2 {
  aspect-ratio: 4.08;
  width: 147px;
}

.logo-square {
  aspect-ratio: 2.1;
  width: 126px;
}

.logo-wide-3 {
  aspect-ratio: 3;
  width: 147px;
}

.logo-wide-4 {
  aspect-ratio: 3.5;
  width: 147px;
}

.logo-compact {
  aspect-ratio: 2.48;
  width: 114px;
}

.logo-wide-5 {
  aspect-ratio: 4.59;
  width: 147px;
}

/*  SECOND ROW */
.partners-showcase {
  display: flex;
  width: 100%;
  height: 87px;
  padding: 10px;
  align-items: center;
  background-color: #fff;
  overflow: visible;
}

.partners-container {
  display: flex;
  width: 100%;
  padding-left: 6px;
  padding-right: 6px;
  align-items: center;
  gap: 66px;
  overflow: visible;
}

.partner-logo {
  flex-shrink: 0;
}

/* Specific logo dimensions */
.tangible-it {
  width: 134px;
  height: 31px;
}

.mangalam {
  width: 133px;
  height: 36.085px;
}

.gep {
  width: 134px;
  height: 37px;
}

.kams-global {
  width: 108px;
  height: 54px;
}

.armitage {
  width: 134px;
  height: 53.782px;
}

.hexagon {
  width: 59px;
  height: 59px;
}

.altigen {
  width: 59px;
  height: 59px;
}

.goldwind {
  width: 59px;
  height: 38.123px;
}

.alpha-data {
  width: 59px;
  height: 55px;
}
/* Responsive styles */
@media (max-width: 640px) {
  .partners-container {
    gap: 30px;
  }
}
/* Animation*/
@keyframes moveLeftToRight {
  from {
    transform: translateX(-2%);
  }
  to {
    transform: translateX(2%);
  }
}

@keyframes moveRightToLeft {
  from {
    transform: translateX(2%);
  }
  to {
    transform: translateX(-2%);
  }
}

/* First row moves from left to right */
.logo-container {
  display: flex;
  gap: 20px;
  animation: moveLeftToRight 5s linear infinite alternate;

  white-space: nowrap;
  overflow: hidden;
}

/* Second row moves from right to left */
.partners-container {
  display: flex;
  gap: 20px;
  animation: moveRightToLeft 5s linear infinite alternate-reverse;

  overflow: hidden;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .trustedH1 {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .trustedH1 {
    font-size: 11px;
    margin-bottom: 10px;
    font-weight: 500;
  }
}

/* ***************************************************************************************************************************************************** */

/* chat icon */
#whatsappIcon {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1000;
  overflow: hidden;
}
/* ******************************************************************************************************************************************* */
