* {
  margin: 0;
  padding: 0; 
  box-sizing: border-box;
}
.header-content{
  height: fit-content;
  width: 100%;
  max-width: 1200px;
  display: flex;
  padding: 30px 0;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin: auto;
}
.header-content h1 {
  font-size: 40px; 
  font-family: "Varela Round", sans-serif;
  text-align: center;
}
.header-content p {
  text-align: center;
  font-size: medium;
  color: gray;
}
.header-content a {
  text-align: center;
  color: #00cfff;
  text-decoration: none;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.industry-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 150px; 
  border: 2px solid transparent;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.industry-card.active {
  background-color: #e6f2ff;
  border-color: #000000; 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.industry-card img {
  width: 100%;
  height: 90px;
  object-fit: cover; 
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}

.industry-card span {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.description-box {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  border: 1px solid #e0e0e0;
  margin-top: 20px;
}

.description-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.description-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.description-box .learn-more {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

.description-box .learn-more svg {
  margin-left: 5px;
  transition: transform 0.2s ease-in-out;
}

.description-box .learn-more:hover svg {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-container {
    padding: 20px;
    width: 100%;
  }
  .header-content h1 {
    font-size: 2rem;
  }
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }
  .industry-card {
    min-height: 130px;
    padding: 10px;
  }
  .industry-card img {
    height: 70px;
  }
  .industry-card span {
    font-size: 0.85rem;
  }
  .description-box h2 {
    font-size: 1.5rem;
  }
  .description-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 15px;
    width: 90%;
  }
  .header-content h1 {
    font-size: 1.7rem;
  }
  .industries-grid {
    grid-template-columns: repeat(
      2,
      1fr
    );
    gap: 10px;
  }
  .industry-card {
    min-height: 110px;
    padding: 8px;
  }
  .industry-card img {
    height: 60px;
  }
  .industry-card span {
    font-size: 0.8rem;
  }
  .description-box h2 {
    font-size: 1.3rem;
  }
  .description-box p {
    font-size: 0.85rem;
  }
}

.steps-to-complete-container {
  max-width: 1200px;
  background: black;
  margin: 20px auto;
  border-radius: 20px;
  width: 95%;
  padding: 20px;
}
.steps-to-complete-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.steps-to-complete-tab {
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.steps-to-complete-tab img {
  width: 170px;
  height: auto;
  object-fit: cover;
  border: 2px solid;
  border-radius: 0;
  border-image: linear-gradient(45deg, gold, #00cfff) 1;
}

.steps-to-complete-tab.active img {
  border-image: linear-gradient(45deg, gold, #ff00ff) 1;
}

.steps-to-complete-title {
  margin-top: 8px;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.steps-to-complete-tab.active::after {
  content: "";
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid gold;
}

.steps-to-complete-content-box {
  background-color: #333;
  padding: 20px;
  margin-top: 20px;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  flex-wrap: wrap;
  border: 2px solid;
  border-image: linear-gradient(45deg, gold, #00cfff) 1;
  text-align: left;
}

.steps-to-complete-content-box h2 {
  color: white;
  font-size: 40px;
  width: 30%;
}
.steps-to-complete-content-box p {
  color: white;
  width: 50%;
  font-size: large;
}

@media (max-width: 991px) {
  .steps-to-complete-content-box h2 {
    font-size: 30px;
    width: 50%;
  }
  .steps-to-complete-content-box p {
    font-size: medium;
  }
}
@media (max-width: 768px) {
  .steps-to-complete-tab img {
    width: 120px;
    height: 90px;
  }
  .steps-to-complete-title {
    font-size: 12px;
  }
}

/* MOBILE DROPDOWN SECTION */
.mobile-container {
  display: none;
  background-color: #111;
  padding: 20px;
  width: 95%;
  margin: 20px auto;
  color: white;
  border-radius: 20px;
}
.mobile-label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.mobile-dropdown {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  border: 2px solid;
  border-image: linear-gradient(45deg, gold, #00cfff) 1;
  background-color: #222;
  color: white;
}
.mobile-content-box {
  background-color: #222;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  border: 2px solid;
  border-image: linear-gradient(45deg, gold, #00cfff) 1;
}
.mobile-content-box h2 {
  margin-top: 0;
}
@media (max-width: 768px) {
  .steps-to-complete-container {
    display: none;
  }
  .mobile-container {
    display: block;
  }
}

.container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  padding: 0 15px; 
}
.main-heading {
  font-size: 3rem; 
  font-weight: 800; 
  color: #333;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 100px;
}

.main-heading .highlight-yellow {
  color: #acacac;
}

.main-heading .highlight-blue {
  color: #acacac;
}
.sub-heading {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-link {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  margin-bottom: 80px;
  transition: color 0.2s ease;
}

.cta-link svg {
  margin-left: 5px;
  transition: transform 0.2s ease-in-out;
}

.cta-link:hover {
  color: #acacac;
}

.cta-link:hover svg {
  transform: translateX(3px);
}
.trusted-by-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 40px;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(120px, 1fr)
  ); 
  gap: 40px;
  justify-items: center; 
  align-items: center;
  padding: 20px 0;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 150px; 
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  display: block; 
}
@media (max-width: 768px) {
  .main-heading {
    font-size: 2.5rem;
  }
  .trusted-by-heading {
    font-size: 1.8rem;
  }
  .logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.8rem;
  }
  .sub-heading {
    font-size: 1rem;
  }
  .trusted-by-heading {
    font-size: 1.5rem;
  }
  .logos-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
  }
}

.trusted-main-heading {
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trusted-main-heading h2 {
  text-align: center;
  font-size: 45px;
  padding-bottom: 20px;
  color: #000000;
}
#trusted-image-section {
  padding: 20px;
}
.trusted-image-container {
  max-width: 1200px;
  margin: 0 auto;
}
.trusted-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}
.trusted-image-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.trusted-image-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .trusted-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
