/* Apply Poppins to everything */
* {
  font-family: "Poppins", sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about-section {
  overflow: hidden;
  min-height: 92vh;
  position: relative;
}

.about-section img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.trusted-tag {
  margin-top: 10rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(0, 141, 211, 1);
  border-radius: 2rem;
  padding: 6px 20px;

  backdrop-filter: blur(4px);
  font-size: 24px;
  font-style: normal;
  font-weight: 100;
  line-height: 94%;
  /* 18.8px */
  letter-spacing: -0.2px;
}

/* Section container */
.empowering-section {
  background-color: #f9f9f9;
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.gradient-text {
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -2px;
  background: linear-gradient(180deg,
      #2a2a2a 0%,
      #1a1a1a 30%,
      #4a4a4a 70%,
      #6a6a6a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0;
}

/* Background Image */
.bg-image {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.8;
  left: -10%;
  top: -10%;
  z-index: 0;
}

/* Content sits on top */
.text-content {
  z-index: 2;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
  .empowering-section h2 {
    font-size: 1.75rem;
  }

  .empowering-section p {
    font-size: 1rem;
  }

  .gradient-text {
    font-size: 30px;
    /* padding-bottom: 0px; */
    margin-top: -30px;
  }

  /* .newsletter-form{
        flex-direction: column;
    } */

  .newsletter-subscribe-btn {
    width: fit-content !important;
    margin: 0 auto;
  }

  .strategic-growth-section {}
}

@media (max-width: 468px) {
  .empowering-section h2 {
    font-size: 30px;
  }

  .empowering-section p {
    font-size: 16px !important;
  }

  .strategic-growth-section h2 {
    font-size: 30px !important;
  }

  .strategic-growth-section p {
    font-size: 16px !important;
  }

  .newsletter-form-title {
    width: 100%;
    padding: 24px;
    text-align: center !important;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .trusted-tag{
    font-size: 18px;
    
  }
  .scalable-subtitle{
    font-size: 16px;
  }

}

.stat-number {
  color: #1e2238;
  font-size: 65px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 71.5px */
  letter-spacing: -2px;
}

.stat-label {
  color: #656c7b;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 24px */
}

.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 21px;
}

.social-icons a {
  color: #1e2238;
  font-size: 20px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bff;
}

/* Values Section CSS Start */
.values-section {
  background: #ffffff;
  padding: 80px 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 40%;
  background: radial-gradient(ellipse at top right,
      rgba(0, 123, 255, 0.4) 0%,
      rgba(0, 123, 255, 0.25) 25%,
      rgba(0, 123, 255, 0.15) 45%,
      transparent 65%);
  pointer-events: none;
}

.values-section::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at center,
      rgba(135, 206, 235, 0.3) 0%,
      rgba(176, 224, 230, 0.2) 40%,
      transparent 70%);
  pointer-events: none;
}

.values-container {
  position: relative;
  z-index: 1;
}

.section-title {
  color: #000;
  text-align: center;
  /* font-family: Inter; */
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  /* 37.5% */
}

.section-subtitle {
  color: #000;
  text-align: center;
  /* font-family: Inter; */
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.value-card {
  background: #f0eff4;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.value-title {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  /* 87.5% */
}

.value-description {
  color: #000;
  text-align: center;
  /* font-family: Inter; */
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  /* 140% */
  margin-top: 1rem;
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.top-row {
  margin-bottom: 1rem;
}

.bottom-row {
  margin-top: 1rem;
}

@media (max-width: 1200px) {
  .values-grid {
    padding: 0 15px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 3rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .bottom-row .col-lg-6 {
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .values-section {
    padding: 60px 0;
  }

  .bottom-row .col-md-6 {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 2.5rem;
    padding: 0 15px;
  }

  .value-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }

  .value-title {
    font-size: 18px;
  }

  .value-description {
    font-size: 16px;
  }

  .values-section {
    padding: 40px 0;
  }
}

@media (max-width: 400px) {
  .value-card {
    padding: 1.25rem 0.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .value-title {
    font-size: 1.125rem;
  }

  .value-description {
    font-size: 0.85rem;
  }
}

/*  <!-- Our Values Section CSS End--> */

/* Vibe ERP Start */
.vision-mission-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  overflow: hidden;
}

.main-title {
  color: var(--Black, #1d1e25);
  text-align: center;
  /* H1 */
  /* font-family: "DM Sans"; */
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 86px;
  /* 107.5% */
  letter-spacing: -3.2px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease-out;
}

.main-subtitle {
  color: #000;
  text-align: center;
  /* font-family: "DM Sans"; */
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  /* 113.333% */
  letter-spacing: -0.6px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.vision-content,
.mission-content {
  animation: fadeInLeft 1s ease-out 1s both;
}

.mission-content {
  animation: fadeInRight 1s ease-out 1.2s both;
}

.section-heading {
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
  /* 106.667% */
  letter-spacing: -1.8px;

  color: #0c0c0d;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #4a90e2;
  border-radius: 2px;
}

.section-text {
  color: #000;
  /* font-family: Inter; */
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  /* 130% */
  letter-spacing: 0.8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-visual {
    padding: 50px 30px;
  }

  .main-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .main-title {
    font-size: 2.5rem;
  }

  .section-heading {
    font-size: 2rem;
    text-align: center;
  }

  .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-visual {
    padding: 40px 20px;
    margin-bottom: 3rem;
  }

  .central-hub {
    font-size: 1.2rem;
    padding: 12px 20px;
  }

  .connection-point {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .vision-mission-section {
    padding-top: 50px;
    padding-bottom: 0px;
  }

  .main-title {
    font-size: 2rem;
  }

  .main-subtitle {
    font-size: 16px;
    margin-bottom: 3rem;
  }

  .section-heading {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .section-text {
    font-size: 16px;
    text-align: center;
  }

  .hero-visual {
    padding: 30px 15px;
    margin-bottom: 2.5rem;
  }

  .connection-network {
    height: 150px;
  }

  .central-hub {
    font-size: 1rem;
    padding: 10px 15px;
  }

  .connection-point {
    width: 40px;
    height: 40px;
  }

  .feature-icon {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .shape {
    display: none;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 1.75rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .hero-visual {
    padding: 25px 10px;
  }

  .central-hub {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .connection-point {
    width: 35px;
    height: 35px;
  }

  .connection-network {
    height: 120px;
  }
}

@media (max-width: 400px) {


  .section-heading {
    font-size: 1.25rem;
  }

  .central-hub {
    font-size: 0.8rem;
  }
}

.svg-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  /* optional spacing */
}

.svg-container img {
  max-width: 100%;
  height: auto;
}

/* Vibe ERP End */

/* Journey CSS */
/* Journey CSS */
.journey-title {
  color: var(--Black, #1d1e25);
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 86px;
  letter-spacing: -3.2px;
  padding: 20px;
  margin-top: 30px;
}

.journey-title p {
  margin: 0;
  word-break: break-word;
}

/* Make image responsive */
.journey-title img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Responsive styles for tablets and smaller devices */
@media (max-width: 1024px) {
  .journey-title {
    font-size: 60px;
    line-height: 70px;
    letter-spacing: -2px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .journey-title {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1.2px;
  }
}

@media (max-width: 480px) {
  .journey-title {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -1px;
  }
}

/* Journey CSS End */

/* Benefits Sections CSS Start */
.benefits-section {
  background-image: url("../assets/about_assets/AboutHomePhoto.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  color: white;
  /* Optional: Adjust text color for contrast */
}

.benefits-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin: 0 auto;
}

.benefits-container .left-section {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1;
  max-width: 500px;
  min-width: 0;
}

.benefits-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.benefits-main-title {
  font-feature-settings: "liga" off, "clig" off;
  /* font-family: "Inter", sans-serif; */
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2px;
  margin: 0;
  /* Gradient text styles */
  background: linear-gradient(180deg,
      #faf8f8 0%,
      #faf8f8 30%,
      #f7f4f4 70%,
      #595959 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.benefits-title-highlight {
  color: #9ca3af;
}

.benefits-description {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

.benefits-learn-more-btn {
  display: flex;
  padding: 8px 8px 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: white;
  border-radius: 50px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  /* font-family: inherit; */
}

.benefits-learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefits-btn-icon {
  width: 40px;
  height: 40px;
  background: #0987c9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.benefits-container .right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
  align-items: normal;
}

.benefits-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.benefits-item:hover {
  transform: translateX(10px);
}

.benefits-item:last-child {
  border-bottom: none;
}

.benefits-icon {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  color: white;
}

.benefits-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefits-item-title {
  color: white;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.benefits-item-title:hover {
  color: #0987c9;
}

.benefits-item-description {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

.benefits-arrow {
  color: #60a5fa;
  font-size: 20px;
  margin-left: auto;
  margin-top: 8px;
  transition: transform 0.3s ease;
}

.benefits-item:hover .benefits-arrow {
  transform: translateX(5px);
}

/* Mobile First - Base styles for mobile */
@media (max-width: 480px) {
  .benefits-section {
    padding: 40px 16px;
  }

  .benefits-container {
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
  }

  .benefits-image {
    max-width: 300px;
    margin-bottom: 16px;
  }

  .benefits-main-title {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .benefits-description {
    font-size: 16px;
  }

  .benefits-learn-more-btn {
    padding: 6px 6px 6px 20px;
    gap: 16px;
    font-size: 16px;
  }

  .benefits-btn-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .benefits-item {
    gap: 16px;
    padding: 16px 0;
  }

  .benefits-icon {
    width: 40px;
    height: 40px;
  }

  .benefits-icon svg {
    width: 20px;
    height: 20px;
  }

  .benefits-item-title {
    font-size: 18px;
  }

  .benefits-item-description {
    font-size: 16px;
  }
}

/* Tablet styles */
@media (min-width: 481px) and (max-width: 768px) {
  .benefits-section {
    padding: 60px 20px;
  }

  .benefits-container {
    flex-direction: column;
    gap: 50px;
  }

  .benefits-image {
    max-width: 350px;
    margin-bottom: 18px;
  }

  .benefits-main-title {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .benefits-container .left-section {
    max-width: 100%;
  }

  .benefits-item {
    gap: 18px;
    padding: 18px 0;
  }

  .benefits-item-title {
    font-size: 22px;
  }
}

/* Large tablet/small desktop */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-container {
    gap: 60px;
  }

  .benefits-main-title {
    font-size: 48px;
  }
}

/* Desktop and larger */
@media (min-width: 1025px) {
  .benefits-container {
    gap: 80px;
  }
}

/* Extra large screens */
@media (min-width: 1400px) {
  .benefits-container {
    max-width: 1400px;
  }

  .benefits-main-title {
    font-size: 56px;
  }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .benefits-section {
    padding: 40px 20px;
  }

  .benefits-container {
    flex-direction: row;
    gap: 40px;
  }

  .benefits-main-title {
    font-size: 36px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .benefits-item:hover {
    transform: none;
  }

  .benefits-item:hover .benefits-arrow {
    transform: none;
  }

  .benefits-learn-more-btn:hover {
    transform: none;
    box-shadow: none;
  }

  .benefits-item {
    cursor: default;
  }

  .benefits-learn-more-btn {
    cursor: default;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .benefits-icon svg {
    stroke-width: 1.5;
  }
}

/* Benefits Section CSS End */

/* Innovative Project Idea CSS Start*/
.newsletter-section {
  background-image: url("../assets/about_assets/benefitsCater.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* justify-content: space-between; */
  padding: 20px 60px;
  position: relative;
  overflow: hidden;
}

.newsletter-content-left {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.newsletter-content-right {
  flex: 0 0 400px;
  z-index: 2;
  position: relative;
}

.newsletter-main-heading {
  font-size: 56px;
  /* Adjust as needed */
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(180deg,
      #faf8f8 0%,
      #faf8f8 30%,
      #f7f4f4 70%,
      #303030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.newsletter-highlight {
  background: linear-gradient(45deg, #7777c6, #a8a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-description {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 500px;
  margin-left: auto;
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.newsletter-form-title {
  width: 100%;
  padding: 1rem;
  text-align: center !important;
  font-size: 32px;
  font-weight: bold;
  color: white;
}

.newsletter-form-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 30px;
  line-height: 1.5;
}

.newsletter-input-group {
  display: flex;
  gap: 15px;
  align-items: stretch;
}

.newsletter-email-input {
  flex: 1;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
}

.newsletter-email-input::placeholder {
  color: #64748b;
  font-size: 1rem;
}

.newsletter-email-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-subscribe-btn {
  padding: 18px 32px;
  background-color: #0987c9;
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
}

.newsletter-subscribe-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.newsletter-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.newsletter-subscribe-btn:hover .newsletter-arrow {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .newsletter-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
    gap: 50px;
  }

  .newsletter-content-right {
    flex: none;
    width: 100%;
    max-width: 450px;
  }

  .newsletter-main-heading {
    font-size: 3.5rem;
  }
}

@media (max-width: 1025px) {
  .newsletter-section {
    padding: 40px 24px;
  }

  .newsletter-main-heading {
    font-size: 30px;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-form {
    padding: 16px 25px;
  }
  .about-section {
    overflow: hidden;
    min-height: 65vh;
    position: relative;
}
  .values-section{
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .newsletter-section {
    padding: 30px 16px;
    overflow-x: hidden;
  }

  .newsletter-form {
    padding: 14px 16px;
    width: 100%;
  }

  .newsletter-input-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .newsletter-email-input,
  .newsletter-subscribe-btn {
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 14px 16px;
  }

  .newsletter-subscribe-btn {
    text-align: center;
  }

}

/* Innovative Project Idea CSS end */

/* Team Section Styles */
.team-section {
  display: flex;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  flex: 1;
  min-width: 500px;
  max-width: 700px;
  position: relative;
}

.member-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.member-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #4a3728, #5d4a39);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  object-position: 90% 4%; /* or try 50% 10% */
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 30px;
}

.member-card:hover .member-overlay {
  opacity: 1;
}

.experience-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  font-weight: 400;
}

.member-info {
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.member-name {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.member-card:hover .member-name {
  color: #0987c9;
}

.member-title {
  font-size: 16px;
  color: #7f8c8d;
  margin: 0 0 20px 0;
  font-weight: 400;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #ecf0f1;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #7f8c8d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-link:hover {
  background: #0987c9;
  color: #ffffff;
  transform: translateY(-2px);
}

.member-details {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.member-card:hover .member-details {
  transform: translateY(0);
}

.details-content {
  flex: 1;
}

.details-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  margin: 0;
  text-align: justify;
}

.details-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ecf0f1;
}

.details-footer h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0987c9;
  margin: 0 0 5px 0;
}

.details-footer p {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0 0 15px 0;
}

.details-footer .social-links {
  justify-content: flex-start;
}

.journey-img-wrapper{
  /* background-color: red; */
  width: 90%;
  margin: 0 auto;
}

.journey-img-wrapper img{
width: 100%;
height: 100%;
}

@media (max-width: 480px) {
  .team-section {
    flex-direction: column;
    gap: 16px;
    padding: 16px 10px;
  }

.team-member {
  flex: 1;
  min-width: 100px;
  max-width: 400px;
  position: relative;
}

  .member-image {
    width: 100%;
    height: auto;
    /* allow natural height */
    max-height: 260px;
    object-fit: contain;
    /* switch from cover to contain or scale down */
    object-position: top;
    /* align image from top */
    border-radius: 8px;
  }

  .member-details {
    padding: 16px;
    text-align: center;
  }

  .experience-text {
    font-size: 11px;
  }
  /* .about-section {
    min-height: 70vh;
  } */
  .trusted-tag{
    margin-top: 10rem;
  }
  .section-title{
    font-size: 30px;
    font-weight: 700;
  }
  .section-subtitle{
    font-size: 18px;
    font-weight: 700;
  }
  .value-description{
    font-size: 16px;
    font-weight: 500;
  }
  .main-title {
    font-size: 30px;
    margin-top: -30px;
    font-weight: 700;
    margin-bottom: -15px
  }
  .svg-container img{
    margin-top: -30px;
  }

  .journey-img-wrapper {
     width: 100%;
  }
  
  .journey-img-wrapper img{
    margin-bottom: 60px;
  }
  .section-heading {
        font-size: 18px;
  }
  .member-name {
  font-size: 18px;
  font-weight: 700;
  }
  .newsletter-section{
    min-height: 250px;
  }
  .empowering-section{
    min-height: 200px;
  }
}

/* Team Section Styles End*/

.scalable-title {
  color: #fff;
  text-align: center;
  /* font-family: Inter; */
  font-size: clamp(48px, 8vw, 130px);
  font-style: normal;
  font-weight: 700;
  line-height: 99%;
}

.scalable-subtitle {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 99%;
}

.north-subtitle {
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -2px;
  background: linear-gradient(181deg,
      #13151f 0.67%,
      rgba(30, 34, 56, 0) 152.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.growth-title {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -2px;
  background: linear-gradient(180deg,
      #2a2a2a 0%,
      #1a1a1a 30%,
      #4a4a4a 70%,
      #6a6a6a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0;
}

.growth-subtitle {
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -2px;
  background: linear-gradient(181deg,
      #13151f 0.67%,
      rgba(30, 34, 56, 0) 152.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.growth-paragraph {
  color: #1E2238;
  /* font-family: Inter; */
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.growth-para {
  color: #656C7B;
  /* font-family: Inter; */
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}