/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 11 2025 | 04:56:32 */
/* ---------- Hero Section ---------- */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 80px !important;
  position: relative;
  background: linear-gradient(90deg, #223AD5 41.65%, #34BFDA 99.95%) !important;
  color: #fff;
  overflow: hidden;
  height: 300px; /* 👈 fixed height */
}

/* Left Half - Text Content */
.hero-content {
  width: 50%;
  padding: 40px 50px;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; /* same height as banner */
}

.hero-text {
  position: relative;
}

.breadcrumb {
  display: inline-block;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #D3D3D3;
  margin-bottom: 10px;
}
.breadcrumb a {
  color: #D3D3D3 !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
  font-weight: 500;
}
.breadcrumb a:hover {
  color: #fff !important;
}

/* Headings and Paragraphs */
.hero-text h2 {
  font-size: 2.4rem !important;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
  font-family: 'Grotleyregular', sans-serif;
}

.hero-text p {
  font-size: 1.2rem !important;
  font-family: 'Grotleyregular', sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  max-width: 90%;
}

/* CTA Button */
.connect-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif !important;
}
.connect-btn:hover {
  background-color: #d7eef0;
  color: #0c9ce1;
  transform: scale(1.05);
}

/* Right Half - Banner Image */
.hero-image {
  width: 50%;
  height: 300px; /* 👈 fixed height same as hero-section */
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 991px) {
  .hero-section {
    flex-direction: column;
    height: auto; /* allow auto height on small screens */
  }
  .hero-content,
  .hero-image {
    width: 100%;
    height: auto;
  }
  .hero-content {
    padding: 35px 25px;
  }
  .hero-text h2 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}

/* ---------- Remove Overview/Intro Section ---------- */
.overview-section,
.page-overview,
.service-overview,
.intro-section {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
