@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

/* partha Add in <head> */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

.who-we-are-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 140px 0 60px 0;
  font-family: "Inter", sans-serif;
  min-height: 600px;
  position: relative;
}

.who-left {
  flex: 1.2;
  max-width: 600px;
  margin-left: 7vw;
  margin-right: 2vw;
}

.who-subtitle {
  font-family: "Raleway", sans-serif;
  color: #b71c1c;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.who-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #232733;
  margin: 0 0 28px 0;
  line-height: 1.13;
}

.who-desc {
  font-size: 1.1rem;
  color: #6c7280;
  margin-bottom: 38px;
  line-height: 1.6;
  letter-spacing: -0.5px;
}

.who-highlight {
  color: #b71c1c;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.who-btn {
  background: #b71c1c;
  color: #fff;
  border: none;
  padding: 16px 38px;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 1px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(183, 28, 28, 0.08);
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.who-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  margin-right: 7vw;
}

.who-experience {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  transform: translate(30%, -40%);
}

.who-exp-number {
  color: #b71c1c;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.who-exp-text {
  color: #232733;
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 6px;
}

.who-image-container {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  width: 480px; /* Match new image width */
  height: 580px; /* Match new image height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-image {
  width: 580px; /* Increased from 410px */
  height: 580px; /* Increased from 500px */
  object-fit: cover;
  border-radius: 0 0 240px 240px/0 0 300px 300px; /* Adjusted for new size */
  background: #fff;
  position: relative;
  z-index: 1;
  box-shadow: none; /* Removed shadow */
}

.who-badge {
  position: absolute;
  left: 18px;
  bottom: 120px;
  background: #fff;
  color: #232733;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 18px 22px 14px 22px;
  font-size: 1rem;
  min-width: 220px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.who-badge-title {
  font-weight: 700;
  color: #232733;
  font-size: 1.08rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.who-badge-title::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #5b5bf7;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  background-image: url("https://img.icons8.com/ios-filled/24/ffffff/new-post.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.who-badge-desc {
  font-size: 0.98rem;
  color: #6c7280;
  line-height: 1.2;
}

.who-subscribers {
  position: absolute;
  right: 18px;
  bottom: 38px;
  background: #fff;
  color: #b71c1c;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 8px 16px;
  font-size: 1rem;
  text-align: center;
  z-index: 2;
}

.who-subscribers-number {
  font-weight: 700;
  font-size: 1.1rem;
  color: #b71c1c;
  display: block;
}

.who-subscribers-label {
  font-size: 0.93rem;
  color: #444;
  display: block;
  margin-top: 2px;
}

.features-bar {
  width: 86vw;
  max-width: 1250px;
  margin: -60px auto 0 auto; /* partha add to Negative top margin for overlap */
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 0;
}

.feature {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 32px 28px 28px 28px;
  background: #fff;
  transition: background 0.2s;
}

.feature-border {
  border-right: 1.5px solid #eee;
}

.feature:last-child {
  border-right: none;
}

.feature-icon {
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #b71c1c;
  border-radius: 50%;
}

.feature-icon svg {
  color: #b71c1c;
  width: 66px;
  height: 66px;
  padding: 12px;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.2;
}

.feature-desc {
  font-size: 0.97rem;
  color: #444;
  opacity: 0.85;
  font-weight: 400;
}

.feature-highlight {
  background: #b71c1c;
  color: #fff;
  display: flex;
  align-items: center;
}

.feature-highlight .feature-title,
.feature-highlight .feature-desc {
  color: #fff;
}

.feature-highlight .feature-icon {
  border: 2px solid #fff;
  border-radius: 50%;
}

.feature-highlight .feature-icon svg {
  filter: brightness(0) invert(1);
  width: 66px;
  height: 66px;
  padding: 12px;
}

/* --- Add or update these styles for the client-trust-section carousel --- */

.client-trust-section {
  text-align: center;
  margin: 60px 0 40px 0;
  background: #fff;
  padding: 60px 0 40px 0;
  position: relative;
  min-height: 480px;
  font-family: "Inter", sans-serif;
  /* Use a more visible world map SVG background */
  background-image: url("https://www.transparenttextures.com/patterns/world-map.png");
  background-repeat: no-repeat;
  background-position: center 60px;
  background-size: 80% auto;
}

.client-trust-header {
  margin-bottom: 30px;
}

.client-trust-number span {
  font-family: "Raleway", sans-serif;
  color: #b71c1c;
  font-size: 3.5rem;
  font-weight: 700;
  /* border-bottom: 4px solid #b71c1c; */
  display: inline-block;
  letter-spacing: -1px;
  position: relative;
}

.client-trust-number > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.client-trust-number svg {
  display: block; /* Remove inline SVG gap */
  width: 180px;
  height: 28px; /* Adjust as needed */
  margin-top: -28px; /* Optional: tweak to overlap or tighten */
}

/* Animated SVG underline for client-trust-number */
.client-trust-number svg path {
  stroke: #b71c1c;
  stroke-width: 18;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: underline-draw 1.8s cubic-bezier(0.77, 0, 0.18, 1) infinite
    forwards;
}

@keyframes underline-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.client-trust-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #232b39;
  margin-bottom: 28px;
  margin-top: 20px;
  line-height: 1.2;
}

.client-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  min-height: 120px;
}

.client-carousel {
  display: flex;
  overflow: hidden;
  width: 1000px;
  height: 100px;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: transparent;
  transition: all 0.3s;
}

.client-carousel img {
  max-height: 80px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: transform 0.3s, filter 0.3s;
  background: transparent;
  margin: 0 10px;
}

.client-carousel img:hover {
  filter: grayscale(0) drop-shadow(0 2px 8px #b71c1c22);
  transform: scale(1.07);
}

.carousel-btn {
  background: #fff;
  border: none;
  font-size: 2.2rem;
  color: #b71c1c;
  cursor: pointer;
  padding: 0 15px;
  transition: background 0.2s, color 0.2s;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(183, 28, 28, 0.08);
  margin: 0 10px;
}

.carousel-btn:hover {
  background: #f5f5f5;
  color: #d32f2f;
}

.client-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 36px;
  font-family: "Raleway", sans-serif;
}

.stat-number {
  color: #b71c1c;
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.stat-label {
  color: #232b39;
  font-size: 1.16rem;
  margin-top: 5px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .features-bar {
    flex-direction: column;
    width: 96vw;
    margin: 24px auto 0 auto;
  }
  .feature,
  .feature-highlight {
    border-right: none !important;
    border-bottom: 1.5px solid #eee;
    padding: 22px 18px;
  }
  .feature:last-child,
  .feature-highlight:last-child {
    border-bottom: none;
  }
  .solution-section {
    padding-bottom: 40px;
  }
  .client-carousel {
    width: 95vw;
    gap: 20px;
  }
  .client-stats {
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .client-trust-section {
    padding: 30px 0 20px 0;
    background-size: 120% auto;
  }
  .client-carousel {
    width: 98vw;
    gap: 10px;
  }
  .client-trust-title {
    font-size: 1.1rem;
  }
  .client-stats {
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }
}

/* --- 3rd Party Integrations Section --- */
.third-party-section {
  text-align: center;
  margin: 60px 0 40px 0;
  background: #fff;
  padding: 60px 0 40px 0;
  position: relative;
  font-family: "Inter", sans-serif;
}

.third-party-header {
  margin-bottom: 30px;
}

.third-party-subtitle {
  font-family: "Raleway", sans-serif;
  color: #b71c1c;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.third-party-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #232b39;
  margin: 0 0 18px 0;
  line-height: 1.13;
}

.third-party-desc {
  font-size: 1.15rem;
  color: #232b39;
  margin-bottom: 38px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.third-party-carousel-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 120px;
  margin-top: 30px;
}

.third-party-carousel {
  display: flex;
  overflow: hidden;
  width: 800px;
  height: 180px;
  align-items: center;
  justify-content: center;
  gap: 60px;
  background: transparent;
  transition: all 0.3s;
}

.third-party-carousel img {
  height: auto;
  width: 600px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: transform 0.3s, filter 0.3s;
  background: transparent;
  margin: 0 10px;
}

.third-party-carousel img:hover {
  filter: grayscale(0) drop-shadow(0 2px 8px #b71c1c22);
  transform: scale(1.07);
}

@media (max-width: 1000px) {
  .third-party-carousel {
    width: 95vw;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .third-party-title {
    font-size: 1.3rem;
  }
  .third-party-carousel {
    width: 98vw;
    gap: 10px;
  }
}

/* --- Solutions Grid Section --- */
.solutions-grid-section {
  background: #d4f8fa;
  padding: 20px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solutions-grid-header {
  text-align: center;
  margin-bottom: 38px;
}

.solutions-grid-logo {
  width: 14%;
  margin-bottom: 10px;
}

.solutions-grid-subtitle {
  font-family: "Raleway", sans-serif;
  color: #2a2e8f;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.solutions-grid-title {
  font-size: 2rem;
  font-weight: 700;
  color: #232b39;
  margin: 20px 0 18px 0;
  line-height: 1.13;
  letter-spacing: -1px;
}

.solutions-grid-desc {
  font-size: 1rem;
  color: #232b39;
  margin-bottom: 38px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 48px;
  width: 100%;
  max-width: 1200px;
}

.solution-tab {
  background: transparent; /* Changed from #fff */

  border-radius: 50px;
  padding: 28px 24px 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;

  cursor: pointer;
  transition: transform 0.18s;
  min-height: 110px;
}

.solution-tab:hover {
  transform: scale(1.1);
  z-index: 2;
}

.solution-tab > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.solution-tab-icon svg {
  width: 60px;
  height: 60px;
  border: 2px solid #1f2937;
  border-radius: 50%;
  padding: 12px;
  font-size: 2.2rem;
  color: #1f2937;
}

.solution-tab-title {
  font-family: "Raleway", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-decoration: none;
  color: #232b39;
}

.solution-tab-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: #232b39;
}

/* Main layout */
.tech-spec-section {
  display: flex;
  align-items: flex-start;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
}

/* Fixed/sticky left */
.tech-spec-left {
  position: sticky;
  top: 0;
  width: 25vw;
  min-width: 320px;
  max-width: 480px;
  height: 100vh;
  background: #fff;
  padding: 60px 125px 60px 125px;
  overflow: hidden;
}

/* Scrollable right - REMOVE overflow and height, allow normal stacking */
.tech-spec-right {
  width: 75vw;
  padding: 60px 0;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Animate tech-spec-card in as they enter viewport */
.tech-spec-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px 0 rgba(21, 101, 192, 0.1),
    0 1.5px 8px 0 rgba(44, 62, 80, 0.08); /* Strong shadow */
  width: 100%;
  margin: 0 0 18px 0; /* Remove side margins */
  padding: 38px 32px; /* Reduce side padding */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #f2f2f2;
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* When visible, animate in */
.tech-spec-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tech-spec-subtitle {
  font-family: "Raleway", sans-serif;
  color: #b71c1c;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  width: 48rem;
}

.tech-spec-title {
  width: 42rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #232b39;
  margin: 0 0 18px 0;
  line-height: 1.13;
}

.tech-spec-desc {
  font-size: 1rem;
  color: #6c7280;
  margin-bottom: 38px;
  line-height: 1.6;
  width: 36rem;
}
.tech-spec-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.3;
}

.tech-spec-card-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.tech-spec-card-desc ul {
  margin: 8px 0 0 0;
  padding-left: 0;
  list-style: none;
}

.tech-spec-card-desc li {
  position: relative;
  padding: 8px 0 8px 24px;
  /* margin-bottom: 4px; */
  border-bottom: 1px solid #e5e7eb;
  /* list-style: outside; */
  /* margin-left: 8px; */
}

.tech-spec-card-desc li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tech-spec-card-desc strong {
  color: #374151;
  font-weight: 700;
}

.tech-spec-card-desc ul {
  list-style: disc inside; /* or 'outside' for default browser style */
  padding-left: 24px; /* controls indentation */
  /* margin: 12px 0 0 0; */
}

.tech-spec-card-desc li {
  padding-left: 0; /* remove custom padding */
  margin-left: 0; /* remove custom margin */
  border-bottom: 1px solid #e5e7eb;
  /* margin-bottom: 4px; */
  position: relative;
}

.tech-spec-card-desc li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

@media (max-width: 1600px) {
  .tech-spec-left {
    max-width: 800px;
    flex-basis: 800px;
  }
  .tech-spec-image img {
    width: 280px;
  }
  .tech-spec-title {
    font-size: 2.8rem;
  }
  .tech-spec_desc {
    font-size: 1.5rem;
  }
  .tech-spec-subtitle {
    font-size: 1rem;
  }
  .tech-spec-right {
    min-width: 240px;
    width: 600px;
  }
}

@media (min-width: 1290px) {
   .tech-spec-image img {
     display: none;
   }
}

@media (max-width: 1100px) {
  .tech-spec-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 0 30px 0;
  }
  .tech-spec-left,
  .tech-spec-right {
    margin: 0;
    max-width: 100%;
    position: static !important;
    top: auto !important;
    height: auto !important;
    padding: 0 10px;
  }
  .tech-spec-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .tech-spec-subtitle {
    font-size: 1.2rem;
    width: 100%;
  }

  .tech-spec-title {
    font-size: 1.8rem;
    width: 100%;
  }
  .tech-spec-desc {
    font-size: 1rem;
    width: 100%;
  }
}

/* Optional: Style the scrollbar for Webkit browsers */
.tech-spec-right::-webkit-scrollbar {
  width: 8px;
}
.tech-spec-right::-webkit-scrollbar-thumb {
  background: #b0bec5;
  border-radius: 6px;
}
.tech-spec-right::-webkit-scrollbar-track {
  background: #f5f5f5;
}

/* --- Experience Case Studies Section --- */
.experience-section {
  width: 100%;
  background: #fff;
  padding: 60px 0 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.experience-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #232b39;
  margin: 38px 0;
  padding: 0 20px;
  line-height: 1.15;
  letter-spacing: -1px;
  text-align: center;
  width: 600px; /* Set a max width for the title */
  max-width: 100%;
}

.experience-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: center;
  width: 100%;
  max-width: 1700px;
}

/* Each card takes up about 1/3 of the row minus the gap */
.experience-card {
  flex: 1 1 420px;
  max-width: 420px;
  min-width: 320px;
}

.experience-card {
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
  box-shadow: 0 8px 48px 0 rgba(21, 101, 192, 0.1),
    0 1.5px 8px 0 rgba(44, 62, 80, 0.08);
  overflow: hidden;
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.18s, transform 0.18s;
  border: none;
  position: relative;
}

.experience-card:hover {
  box-shadow: 0 16px 64px 0 rgba(21, 101, 192, 0.18),
    0 2px 12px 0 rgba(44, 62, 80, 0.12);
  transform: translateY(-6px) scale(1.02);
  border-bottom: 4px solid #b71c1c;
}

/* Experience Card Text */
.experience-card-title {
  font-size: 1.1rem; /* Decrease title size */
  font-weight: 700;
}

.experience-card-desc {
  font-size: 0.95rem; /* Decrease description size */
  color: #555;
}

/* Experience Card Button */
.experience-card-btn {
  font-size: 0.8rem !important; /* Increased from 0.54rem */
  padding: 10px 0 10px 10px; /* Slightly more padding */
  margin: auto 28px 24px 28px; /* keep left margin as before */
  width: calc(100% - 56px); /* Increased width for full text */
  border-radius: 3px 3px 8px 8px;
  display: block;
  background: #b71c1c;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  border: none;
  transition: background 0.18s;
}

.experience-card-btn:hover {
  background: #d32f2f;
  color: #fff;
}

.experience-card-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 28px 0 28px;
}

.experience-card-icon img {
  width: 38px;
  height: 38px;
  margin-top: 2px;
}

.experience-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #232b39;
  margin-bottom: 4px;
}

.experience-card-desc {
  font-size: 1.08rem;
  color: #5a6473;
  margin-bottom: 0;
}

.experience-card-img video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin: 0;
  border: none;
}

/* Add gap below the image in the experience card */
.experience-card-img {
  margin-top: 22px;
  margin-bottom: 22px;
}

/* Make sure the button doesn't have extra margin at the top */
.experience-card-btn {
  margin-top: 0;
}

.experience-card-btn {
  display: block;
  background: #b71c1c;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 16px 16px 16px 16px;
  font-size: 1.08rem;
  letter-spacing: 1px;
  border: none;
  border-radius: 0 0 0 0;
  margin: 0 28px 24px 28px;
  transition: background 0.18s;
}

.experience-card-btn:hover {
  background: #d32f2f;
  color: #fff;
}

@media (max-width: 1200px) {
  .experience-cards {
    flex-direction: column;
    align-items: center;
    gap: 38px;
  }
  .experience-card {
    width: 90vw;
    max-width: 480px;
  }
}

/* Benefit of Internet Management Solution Section */
.benefit-section {
  background: #fff;
  padding: 80px 0 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 650px; /* Ensures enough height for the image and accordion */
}

.benefit-container {
  display: flex;
  align-items: stretch; /* Make columns equal height */
  justify-content: center;
  max-width: 1400px;
  width: 100%;
  gap: 60px;
}

.benefit-image-col {
  flex: 1.5 1 60%; /* Increased flex grow and basis for larger column */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 550px;
}

.benefit-image {
  max-width: 750px; /* Optionally increase image size for better effect */
  width: 100%;
  height: auto;
  display: block;
  min-height: 500px; /* Ensures image area stays tall */
}

.benefit-content-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 340px;
}

.benefit-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #232b39;
  margin-bottom: 18px;
  line-height: 1.13;
}

.benefit-desc {
  font-size: 1.18rem;
  color: #6c7280;
  margin-bottom: 38px;
  line-height: 1.6;
}

.benefit-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-accordion-item {
  background: #eaf2fe;
  border-radius: 8px;
  margin-bottom: 0;
  box-shadow: none;
  overflow: hidden;
  border: none;
}

.benefit-accordion-btn {
  width: 100%;
  background: #eaf2fe;
  color: #232b39;
  font-size: 1.18rem;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 18px 24px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.benefit-accordion-btn .arrow {
  font-size: 1.2rem;
  margin-left: 12px;
  transition: transform 0.2s;
}

.benefit-accordion-btn.active .arrow {
  transform: rotate(180deg);
}

.benefit-accordion-panel {
  background: #f5f8fe;
  color: #232b39;
  padding: 0 24px 18px 24px;
  display: none;
  font-size: 1.05rem;
  border-radius: 0 0 8px 8px;
  animation: fadeIn 0.3s;
}

.benefit-accordion-panel p {
  padding: 12px 24px;
  margin: 12px 0 0 0;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .benefit-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 16px;
  }
  .benefit-image-col,
  .benefit-content-col {
    width: 100%;
    min-width: 0;
  }
  .benefit-image {
    max-width: 340px;
  }
}

@media (max-width: 600px) {
  .benefit-title {
    font-size: 1.5rem;
  }
  .benefit-image {
    max-width: 220px;
  }
}

.timeline-wrapper {
  position: relative;
  width: 100%;
  max-width: 1190px;
  min-height: 1000px;
  margin: 0 auto;
  padding: 42px 0 42px 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4.2px;
  height: 100%;
  background: #b71c1c;
  transform: translateX(-50%);
  border-radius: 2.1px;
  z-index: 1;
}
.timeline-year {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  border-radius: 7px;
  border: 2.1px solid #e0e0e0;
  font-size: 1.4rem;
  padding: 4px 22px;
  box-shadow: 0 1.4px 5.6px 0 rgba(30, 41, 59, 0.08);
  z-index: 3;
  top: 0;
}
.timeline-year.year-small {
  position: absolute;
  left: 38%;
  top: 300px;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: right;
  color: #b71c1c;
  font-weight: 700;
  font-size: 0.84rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}

.timeline-year.year-small .year-range {
  display: block;
  color: #b71c1c;
  font-size: 0.84rem;
  font-weight: 700;
}

.timeline-year.year-small .year-desc {
  display: block;
  color: #232b39;
  font-size: 0.7rem;
  font-weight: 400;
  margin-top: 2px;
  text-align: right;
}

.timeline-event {
  position: absolute;
  left: 54%;
  top: 60px;
  text-align: left;
  z-index: 3;
}
.timeline-event .event-title {
  display: block;
  color: #b71c1c;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 1.4px;
}
.timeline-event .event-desc {
  display: block;
  color: #232b39;
  font-size: 0.7rem;
  font-weight: 400;
  margin-top: 1.4px;
}
.timeline-flag {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  border-radius: 50%;
  border: 2.1px solid #e0e0e0;
  width: 33.6px;
  height: 33.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 1.4px 5.6px 0 rgba(30, 41, 59, 0.08);
}
.timeline-flag .flag-icon {
  font-size: 1.4rem;
  color: #b71c1c;
}
.flag-left {
  left: 50%;
  top: 110px;
  transform: translate(-50%, 0);
}
.flag-right {
  left: 50%;
  top: 336px; /* Vertically center the flag with the right box */
  transform: translate(-50%, 0);
}
.timeline-box {
  position: absolute;
  width: 364px;
  background: #fff;
  border-radius: 8.4px;
  box-shadow: 0 5.6px 22.4px 0 rgba(30, 41, 59, 0.1);
  padding: 22.4px 25.2px;
  font-size: 0.826rem;
  z-index: 2;
}
.left-box {
  left: calc(
    50% - 480px
  ); /* Increased from -410px for more space from center */
  top: 70px;
  text-align: left;
}
.right-box {
  left: calc(50% + 56px);
  top: 320px;
  text-align: left;
}
.timeline-box ul {
  padding-left: 14px;
}
.timeline-box li {
  margin-bottom: 8.4px;
  font-size: 0.756rem;
}
.timeline-box li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1400px) {
  .timeline-box {
    width: 280px;
    padding: 16.8px 12.6px;
    font-size: 0.7rem;
  }
  .left-box {
    left: calc(50% - 322px);
  }
  .right-box {
    left: calc(50% + 42px);
  }
}
@media (max-width: 900px) {
  .timeline-wrapper {
    min-height: 630px;
  }
  .timeline-box {
    width: 90vw;
    left: 5vw !important;
    position: static;
    margin: 16.8px auto;
  }
  .timeline-line,
  .timeline-flag,
  .timeline-year,
  .timeline-event,
  .timeline-year.year-small {
    left: 50% !important;
    transform: translate(-50%, 0) !important;
    position: static;
  }
}

/* Globetek Family Structure Section */
.family-structure-section {
  width: 100%;
  background: #fff;
  padding: 48px 0 32px 0;
  text-align: center;
}

.family-structure-title {
  color: #232b39;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.family-structure-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.family-structure-img {
  max-width: 1400px;
  width: 90vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .family-structure-title {
    font-size: 1.5rem;
  }
  .family-structure-img {
    max-width: 98vw;
  }
}

/* Flagship Product Section */
.flagship-product-section {
  width: 100%;
  background: #fff;
  padding: 42px 0 28px 90px; /* partha*/
}

.flagship-product-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  width: 95%;
  gap: 33.6px;
  transform: translateX(-60px); /* Move the entire div a bit to the left */
}

.flagship-product-img-col {
  flex: 1 1 33.6%; /* 48% * 0.7 */
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.flagship-product-img {
  max-width: 378px; /* 540px * 0.7 */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5.6px; /* 8px * 0.7 */
  box-shadow: 0 5.6px 22.4px 0 rgba(30, 41, 59, 0.1); /* 8px, 32px * 0.7 */
}

.flagship-product-content-col {
  flex: 1 1 60%; /* Increased from 36.4% to allow more width for text */
  max-width: 700px; /* Optional: increase max-width for even more space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 12.6px; /* 18px * 0.7 */
}

.flagship-product-title {
  font-size: 2.1rem; /* 3rem * 0.7 */
  font-weight: 700;
  color: #232b39;
  margin-bottom: 12.6px; /* 18px * 0.7 */
  line-height: 1.15;
}

.flagship-product-highlight {
  color: #2a2e8f;
  font-weight: 800;
  font-size: 2.17rem; /* 3.1rem * 0.7 */
  letter-spacing: 0.7px; /* 1px * 0.7 */
}

.flagship-product-desc {
  font-size: 0.875rem; /* 1.25rem * 0.7 */
  margin-bottom: 12.6px; /* 18px * 0.7 */
  line-height: 1.5;
}

.flagship-product-link {
  color: #2a2e8f;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .flagship-product-container {
    gap: 22.4px; /* 32px * 0.7 */
  }
  .flagship-product-title,
  .flagship-product-highlight {
    font-size: 1.4rem; /* 2rem * 0.7 */
    text-align: center;
  }
  .flagship-product-desc {
    font-size: 0.7rem; /* 1rem * 0.7 */
    text-align: center;
  }
}

/* At a Glance Section */
.at-a-glance-section {
  position: relative;
  width: 100%;
  background: #f8f9fa;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.at-a-glance-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("assets/HTML Photos/About/at-a-glance-bg.jpg"), #f8f9fa;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}

.at-a-glance-content {
  position: relative;
  z-index: 2;
  max-width: 1120px; /* 1600px * 0.7 */
  margin: 0 auto;
  padding: 42px 0 42px 0; /* 60px * 0.7 */
  text-align: center;
}

.at-a-glance-label {
  color: #b71c1c;
  font-size: 0.91rem; /* 1.3rem * 0.7 */
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12.6px; /* 18px * 0.7 */
}

.at-a-glance-title {
  color: #232b39;
  font-size: 2.45rem; /* 3.5rem * 0.7 */
  font-weight: 700;
  margin-bottom: 7px; /* 10px * 0.7 */
  line-height: 1.1;
}

.at-a-glance-subtitle {
  color: #6b6c7e;
  font-size: 1.05rem; /* 1.5rem * 0.7 */
  margin-bottom: 33.6px; /* 48px * 0.7 */
  font-weight: 400;
}

.at-a-glance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 33.6px 33.6px; /* 48px * 0.7 */
  max-width: 1050px; /* 1500px * 0.7 */
  margin: 0 auto;
  padding: 0 0 28px 0; /* 40px * 0.7 */
}

.at-a-glance-box {
  background: #fff;
  border-radius: 8.4px; /* 12px * 0.7 */
  box-shadow: 0 5.6px 22.4px 0 rgba(30, 41, 59, 0.1); /* 8px, 32px * 0.7 */
  padding: 39.2px 0 25.2px 0; /* 56px, 36px * 0.7 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.at-a-glance-number {
  color: #b71c1c;
  font-size: 3.15rem; /* 4.5rem * 0.7 */
  font-weight: 700;
  margin-bottom: 5.6px; /* 8px * 0.7 */
  line-height: 1;
  letter-spacing: 1.4px; /* 2px * 0.7 */
}

.at-a-glance-number span {
  font-size: 1em;
  margin-left: 1.4px; /* 2px * 0.7 */
}

.at-a-glance-desc {
  color: #232b39;
  font-size: 1.12rem; /* 1.6rem * 0.7 */
  font-weight: 600;
  margin-top: 5.6px; /* 8px * 0.7 */
  letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
  .at-a-glance-content {
    padding: 28px 0 28px 0; /* 40px * 0.7 */
  }
  .at-a-glance-title {
    font-size: 1.54rem; /* 2.2rem * 0.7 */
  }
  .at-a-glance-subtitle {
    font-size: 0.77rem; /* 1.1rem * 0.7 */
  }
  .at-a-glance-grid {
    gap: 16.8px 16.8px; /* 24px * 0.7 */
  }
  .at-a-glance-box {
    padding: 25.2px 0 16.8px 0; /* 36px, 24px * 0.7 */
  }
  .at-a-glance-number {
    font-size: 1.75rem; /* 2.5rem * 0.7 */
  }
  .at-a-glance-desc {
    font-size: 0.77rem; /* 1.1rem * 0.7 */
  }
}

@media (max-width: 700px) {
  .at-a-glance-grid {
    gap: 12.6px 0; /* 18px * 0.7 */
    padding: 0 0 14px 0; /* 20px * 0.7 */
  }
  .at-a-glance-content {
    padding: 16.8px 0 16.8px 0; /* 24px * 0.7 */
  }
}

.more-about-section {
  width: 100vw;
  min-height: 126px; /* 180px * 0.7 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin: 0;
  padding: 0;
}

.more-about-title {
  color: #333;
  font-size: 2.8rem; /* 4rem * 0.7 */
  font-weight: 600;
  letter-spacing: 0.7px; /* 1px * 0.7 */
  text-align: center;
  width: 100%;
}

@media (max-width: 900px) {
  .more-about-title {
    font-size: 1.54rem; /* 2.2rem * 0.7 */
  }
  .more-about-section {
    min-height: 70px; /* 100px * 0.7 */
  }
}

.about-cards-section {
  width: 100%;
  margin: 38px 0 60px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-cards-grid {
  display: flex;
  gap: 48px;
  width: 100%;
  max-width: 1600px;
  justify-content: center;
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32vw;
  max-width: 450px;
  min-width: 320px;
  background: transparent;
}

.about-card-img-wrap {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}

.about-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}

.about-card-box {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.1);
  margin-top: -30px;
  padding: 38px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  border-left: 4px solid #b71c1c;
}

.about-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #232b39;
  letter-spacing: 0.01em;
}

.about-card-desc {
  font-size: 1.08rem;
  color: #6b6c7e;
  margin-bottom: 32px;
  font-weight: 400;
}

.about-card-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  color: #b71c1c;
  border: 1.5px solid #b71c1c;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.about-card-btn:hover {
  background: #b71c1c;
  color: #fff;
  border-color: #b71c1c;
}

@media (max-width: 1200px) {
  .about-cards-grid {
    gap: 24px;
  }
  .about-card {
    width: 45vw;
    max-width: 370px;
    min-width: 220px;
  }
  .about-card-img-wrap {
    height: 220px;
  }
  .about-card-box {
    padding: 28px 16px 20px 16px;
    min-height: 170px;
  }
}

@media (max-width: 900px) {
  .about-cards-grid {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .about-card {
    width: 90vw;
    max-width: 420px;
  }
  .about-card-img-wrap {
    height: 180px;
  }
}

.sales-enquiry-section {
  display: flex;
  max-width: 1400px;
  margin: 120px auto 0 auto;
  background: #fff;
  border-radius: 12px;
  /* Remove box-shadow from the whole section */
  box-shadow: none;
  overflow: hidden;
  min-height: 600px;
}

.sales-enquiry-form-wrap {
  flex: 1 1 50%;
  padding: 48px 32px 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sales-enquiry-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #232b39;
  margin-bottom: 18px;
  margin-top: 0;
}

.sales-enquiry-desc {
  font-size: 1.18rem;
  color: #6b6c7e;
  margin-bottom: 32px;
  font-weight: 400;
}

.sales-enquiry-form {
  font-family: "Be VietNam Pro", sans-serif;
  width: 100%;
}

.sales-enquiry-row {
  display: flex;
  gap: 24px;
}

.sales-enquiry-field {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.sales-enquiry-field label {
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 8px;
  font-size: 1rem;
}

.sales-enquiry-field input,
.sales-enquiry-field textarea {
  background: #f6f5f7;
  border: none;
  border-radius: 2px;
  padding: 14px 12px;
  font-size: 0.95rem;
  color: #232b39;
  margin-bottom: 0;
  font-family: inherit;
  resize: none;
}

.sales-enquiry-field input:focus,
.sales-enquiry-field textarea:focus {
  outline: 2px solid #b71c1c;
  background: #fff;
}

.sales-enquiry-btn {
  background: #b71c1c;
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 2px;
  margin-top: 8px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.sales-enquiry-btn:hover {
  background: #a31515;
}

.sales-enquiry-map-wrap {
  margin-top: 40px;
  flex: 1 1 50%;
  min-width: 350px;
  min-height: 800px;
  height: 100%;
  background: #f6f5f7;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.sales-enquiry-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 800px;
  min-width: 100%;
  display: block;
  border-radius: 0;
}

@media (max-width: 1100px) {
  .sales-enquiry-section {
    flex-direction: column;
    min-height: unset;
  }
  .sales-enquiry-form-wrap,
  .sales-enquiry-map-wrap {
    padding: 32px 16px;
    min-width: 0;
    min-height: 350px;
  }
  .sales-enquiry-map-wrap {
    height: 350px;
  }
  .sales-enquiry-map-wrap iframe {
    min-height: 350px;
  }
}

/* --- Dropdown Menu Styles --- */
/* Hide dropdown by default */
.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 400px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.13);
  z-index: 100;
  padding-top: 10px;
  margin: 0;
  border-bottom: 4px solid #b71c1c;
  flex-direction: column; /* <--- ENSURE THIS IS PRESENT */
}

/* Show dropdown when .show class is added */
.dropdown-menu.show {
  display: block !important;
  flex-direction: column;
}

/* Make dropdown items stack vertically */
.dropdown-menu li {
  width: 100%;

  display: block;
}

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

.dropdown-menu a {
  display: block;
  padding: 18px 28px;
  color: #232b39;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: normal;
}

.dropdown-menu a:hover {
  background: #f7f7f7;
  color: #b71c1c;
}

/* Solutions Dropdown Styling */
.nav-section .dropdown {
  position: relative;
}

.nav-section .dropdown-menu {
  display: none;
  position: absolute;
  top: 150%;
  left: 0;
  min-width: 370px;
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 0;
  z-index: 1000;
}

.nav-section .dropdown:hover .dropdown-menu,
.nav-section .dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav-section .dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-section .dropdown-menu li a {
  display: block;
  /* padding: 18px 24px; */
  color: #222;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.nav-section .dropdown-menu li:first-child a {
  background: #b71c1c;
  color: #fff;
  border-radius: 0 0 0 0;
  border-bottom: 1px solid #eee;
}

.nav-section .dropdown-menu li a:hover,
.nav-section .dropdown-menu li a:focus {
  background: #f5f5f5;
  color: #b71c1c;
}

.nav-section .dropdown-menu li:first-child a:hover,
.nav-section .dropdown-menu li:first-child a:focus {
  background: #b71c1c;
  color: #fff;
}

/* Remove border from last item */
.nav-section .dropdown-menu li:last-child a {
  border-bottom: none;
}

/* --- Solutions Dropdown: Decrease size by 15% --- */
.nav-section .dropdown-menu {
  min-width: 314.5px; /* 370px * 0.85 */
}

.nav-section .dropdown-menu li a {
  padding: 10px 16px;
  font-size: 16px;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .who-we-are-section {
    padding: 60px 0 40px 0;
  }

  .who-left {
    margin-left: 5vw;
  }

  .who-right {
    margin-right: 5vw;
  }

  .who-image-container {
    width: 400px;
    height: 480px;
  }

  .who-image {
    width: 480px;
    height: 480px;
  }

  .who-experience {
    width: 140px;
    height: 140px;
  }

  .who-exp-number {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .who-we-are-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .who-left {
    margin: 0 auto 40px;
    max-width: 100%;
  }

  .who-right {
    margin: 0 auto;
    align-items: center;
  }

  .who-experience {
    position: relative;
    transform: none;
    margin-bottom: 20px;
  }

  .who-image-container {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .who-image {
    width: 100%;
    height: auto;
    border-radius: 0 0 120px 120px;
  }

  .who-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .features-bar {
    flex-direction: column;
    width: 90vw;
  }

  .feature {
    padding: 20px;
    border-right: none;
    border-bottom: 1.5px solid #eee;
  }

  .feature:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .who-title {
    font-size: 2.2rem;
  }

  .who-desc {
    font-size: 1rem;
  }

  .who-btn {
    padding: 14px 30px;
    font-size: 0.9rem;
  }

  .who-badge {
    min-width: 180px;
    padding: 14px 18px;
  }

  .who-subscribers {
    padding: 6px 12px;
  }

  .client-trust-section {
    padding: 40px 20px;
  }

  .client-trust-title {
    font-size: 1.8rem;
  }

  .client-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* --- HOMEPAGE FULL MOBILE RESPONSIVENESS ENHANCEMENTS --- */
@media (max-width: 768px) {
  .solution-section,
  .solutions-grid-section,
  .tech-spec-section,
  .experience-section,
  .benefit-section {
    padding: 20px 0 !important;
  }
  .solution-content,
  .solutions-grid-header,
  .tech-spec-left,
  .tech-spec-right,
  .benefit-container,
  .experience-cards {
    padding: 0 10px !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .features-bar {
    flex-direction: column;
    width: 98vw;
    margin: 16px auto 0 auto;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .feature,
  .feature-highlight {
    border-right: none !important;
    border-bottom: 1.5px solid #eee;
    padding: 18px 10px;
  }
  .feature:last-child,
  .feature-highlight:last-child {
    border-bottom: none;
  }
  .who-we-are-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 10px;
  }
  .who-left,
  .who-right {
    margin: 0 auto 20px;
    max-width: 100%;
    align-items: center;
  }
  .who-image-container {
    width: 100%;
    max-width: 220px;
    height: auto;
  }
  .who-image {
    width: 100%;
    height: auto;
    border-radius: 0 0 60px 60px;
  }
  .client-trust-section {
    padding: 20px 0 10px 0;
  }
  .client-stats {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .solutions-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .solution-tab {
    flex-direction: row;
    align-items: flex-start;
    padding: 10px 0;
  }
  .tech-spec-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .tech-spec-left,
  .tech-spec-right {
    margin: 0;
    max-width: 100%;
    padding: 0 10px;
  }
  .tech-spec-image img {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    display: block;
  }
  .tech-spec-card {
    min-width: 0;
    padding: 18px 10px;
  }
  .experience-cards {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .experience-card {
    width: 98vw;
    max-width: 320px;
  }
  .benefit-section {
    flex-direction: column;
    min-height: unset;
    padding: 20px 0 !important;
  }
  .benefit-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }
  .benefit-image-col,
  .benefit-content-col {
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: center;
  }
  .benefit-image {
    max-width: 180px;
    min-height: unset;
  }
}
@media (max-width: 576px) {
  .who-title {
    font-size: 1.2rem !important;
  }
  .who-desc {
    font-size: 0.95rem !important;
  }
  .feature-icon img {
    width: 32px;
    height: 32px;
  }
  .client-trust-title {
    font-size: 1.1rem !important;
  }

  .features-bar {
    width: 95vw;
    margin: -40px auto 0 auto;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  }

  .feature {
    flex: none;
    padding: 24px 20px;
    border-right: none !important;
    border-bottom: 1.5px solid #eee;
  }

  .feature:last-child {
    border-bottom: none;
  }

  .feature-icon {
    margin-right: 16px;
    flex-shrink: 0;
  }

  .feature-icon img {
    width: 40px;
    height: 40px;
  }

  .feature-text {
    flex: 1;
  }

  .feature-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .feature-desc {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .who-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
    width: 50%;
    border-radius: 5px;
  }

  .who-image-container {
    width: 100%;
    max-width: 380px;
    height: auto;
  }

  .third-party-section {
    padding: 0px 30px;
    margin: 40px 0 30px 0;
  }

  .third-party-title {
    font-size: 1.8rem;
  }

  .third-party-subtitle {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .third-party-desc {
    font-size: 1rem;
    padding: 0 10px;
  }

  .client-carousel-container {
    padding: 0px 30px;
  }

  .solutions-grid-section {
    padding: 30px 16px;
    background: #d4f8fa;
  }

  .solutions-grid-header {
    margin-bottom: 24px;
    text-align: center;
  }

  .solutions-grid-logo {
    width: 80px;
    margin-bottom: 8px;
  }

  .solutions-grid-subtitle {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .solutions-grid-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .solutions-grid-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    padding: 0 8px;
  }

  .solution-tab {
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    min-height: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
    margin-left: 15px; /* Added left margin */
    margin-right: 15px; /* Added right margin */
  }

  .solution-tab:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .solution-tab-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    margin-top: 0;
    color: #1976d2;
  }

  .solution-tab-content {
    flex: 1;
  }

  .solution-tab-title {
    font-size: 1rem;
    margin-bottom: 6px;
    text-decoration: none;
    color: #232b39;
  }

  .solution-tab-desc {
    font-size: 0.9rem;
    color: #555;
  }

  .tech-spec-section {
    display: flex;
    flex-direction: column;
    padding: 20px 12px;
    margin: 0 auto;
    gap: 8px;
  }

  /* Left Section Styles */
  .tech-spec-left {
    order: 1;
    margin-bottom: 0;
    text-align: center;
  }

  .tech-spec-subtitle {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .tech-spec-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
  }

  .tech-spec-desc {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 7rem;
    line-height: 1.5;
  }

  .tech-spec-image {
    width: 100%;
    margin: 0 auto 20px;
  }

  .tech-spec-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  /* Right Section Styles */
  .tech-spec-right {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .tech-spec-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 0 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .tech-spec-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .tech-spec-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .tech-spec-card-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
  }

  .tech-spec-card-desc ul {
    margin: 12px 0 0 0;
    padding-left: 0;
    list-style: none;
  }

  .tech-spec-card-desc li {
    position: relative;
    padding: 8px 0 8px 24px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
  }

  .tech-spec-card-desc li:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .tech-spec-card-desc li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #10b981;
    font-weight: bold;
    font-size: 14px;
  }

  .tech-spec-card-desc strong {
    color: #374151;
    font-weight: 600;
  }

  /* Visual enhancements for mobile */
  .tech-spec-card:nth-child(1) {
    border-left: 4px solid #3b82f6;
  }

  .tech-spec-card:nth-child(2) {
    border-left: 4px solid #10b981;
  }

  .tech-spec-card:nth-child(3) {
    border-left: 4px solid #f59e0b;
  }

  .tech-spec-card:nth-child(4) {
    border-left: 4px solid #ef4444;
  }

  .experience-section {
    padding: 30px 16px;
  }

  .experience-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 24px;
    padding: 0 10px;
    color: #333;
  }

  .experience-cards {
    gap: 24px;
    height: 100%;
  }

  .experience-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 16px;
    text-align: left;
    width: 100%;
    margin: auto;
  }

  .experience-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .experience-card-icon img {
    width: 36px;
    height: 36px;
  }

  .experience-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #b71c1c;
  }

  .experience-card-desc {
    font-size: 0.9rem;
    color: #555;
  }

  .experience-card-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
  }

  .experience-card-btn {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background-color: #b71c1c;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: auto 16px 16px 16px;
    width: calc(100% - 32px);
  }

  .benefit-container {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
  }

  .benefit-image-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .benefit-image {
    width: 100%;
    max-width: 400px;
  }

  .benefit-content-col {
    width: 100%;
  }

  .benefit-title {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
  }

  .benefit-desc {
    padding: 0 10px;
    font-size: 0.95rem;
    color: #555;
    text-align: center;
  }

  .benefit-accordion-item {
    margin: 0 16px 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background-color: #fff;
  }

  .benefit-accordion-btn {
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
    padding: 12px;
    border: none;
    margin-bottom: 8px;
    border-radius: 4px;
  }

  .benefit-accordion-panel {
    padding: 10px 12px;
    font-size: 0.9rem;
    border-radius: 4px;
    margin-bottom: 12px;
  }

  .arrow {
    float: right;
  }
}

.pdf-simple-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pdf-download-btn {
  padding: 10px 24px;
  background: #b71c1c;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s;
  margin-top: 10px;
}
.pdf-download-btn:hover {
  background: #8a1616;
}
.pdf-preview-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
  box-shadow: none;
  line-height: 0;
}

@media (max-width: 768px) {
  .pdf-download-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  .pdf-preview-img {
    max-width: 100%;
    margin: 0 auto;
  }
}
