/* ✅ Global Fix: Prevent horizontal overflow */
html, body {
  overflow-x: hidden;
}




.devenir-partenaire-hero-bg {
  background-color: #000;
}

.partenaire-underline-text .subline-decoration {
    bottom: -5px !important;
}






.business-model {
  padding: 0 6%;
}

.business-container {
  display: flex;
  align-items: center;
  gap: 18%;
  flex-wrap: wrap;
}

/* Left part */
.business-left {
  position: relative;
  width: 32%;
}

.business-left img {
  width: 100%;
  height: 270px;
  border-radius: 20px;
  display: block;
}

.info-cards {
  position: absolute;
  top: 8%;
  left: 60%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card {
    height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 4px 5px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  width: 300px;
}

.card p {
    margin-top: 10px;
    font-size: 14px;
    color: #000;
    line-height:18px;
}

.icon {
  width: 120px;
  height: 60px;
  padding: 12px;
  border-radius: 8px;
  background: var(--primary-color); /* yellow */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* Right part */
.business-right {
  flex: 1;
  min-width: 350px;
}

.business-right h2 {
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--brown-color);
}

.business-right h2 em {
  font-style: italic;
  color: var(--subtitle-color);
  font-weight: 600;
}

.business-right p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {

/* Default (Desktop) → Image left, content right */
.business-left {
  order: 2;
  flex: 1;
}
.business-right {
  order: 1;
  flex: 1;
}

.business-left img {
  width: 70%;
  height: 300px;
}

.info-cards {
  top: 10%;
  left: 10%;
}

.business-right h2 {
  font-size: 35px;
}

.business-right p {
  padding-right: 20px;
}

}





















.adapt-section {
  margin-top: 30px;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.adapt-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--brown-color);
  margin-bottom: 10px;
}

.adapt-section h2 em {
  color: #000;
  font-style: italic;
  font-weight: 600;
}

.adapt-section p {
  font-size: 18px;
  color: #000;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.adapt-profiles {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0 7% 0 7%;
}

.adapt-card {
  display: flex;
  gap: 20px;
  width: 100%;
  text-align: left;
}

.adapt-card img {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  margin-bottom: 15px;
  transform: rotate(-2deg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);

  object-fit: cover;       /* ✅ blur hatayega, crop karega */
  object-position: center; /* ✅ center se crop */
  image-rendering: -webkit-optimize-contrast; /* ✅ sharpness improve */
  image-rendering: crisp-edges;
}


.adapt-card-2 img {
  transform: rotate(2deg);
}

.adapt-profile-icon-container {
  display: flex;
  align-items: center;
}

.adapt-profile-icon {
  display: inline-flex;
  align-items: center;
  background: #0265D8;
  color: var(--white);
  border-radius: 20px;
  padding: 9px 9px;
  font-size: 14px;
  margin-bottom: 12px;
}

.adapt-profile-label {
  display: inline-flex;
  align-items: center;
  background: #0265D8;
  color: var(--white);
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  margin-bottom: 12px;
}

.adapt-card p {
  font-size: 15px;
  line-height: 1.2;
  color: #2c2c2c;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .adapt-section h2 {
    font-size: 38px;
  }

  .adapt-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .adapt-profiles {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .adapt-card {
    max-width: 100%;
    text-align: center;
  }

  .adapt-card img {
    width: 100px;
  }

  .adapt-profile-label {
    margin: 0 auto 12px auto;
  }
}











    































/* --- Top Section --- */
.why-business-section {
  padding: 70px;
}

.why-business-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 4%;
  background-color: #FFF8DB;
  flex-wrap: wrap;
  border-radius: 20px;
  gap: 10px;
}

.why-left {
  flex: 1;
  min-width: 320px;
}

.why-left h2 {
  font-size: 45px;
  font-weight: 700;
  color: var(--brown-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-left h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--subtitle-color);
}

.why-left p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  max-width: 500px;
}

/* --- Right Cards --- */
.why-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 50%;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  height: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.why-card-main {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: start;
  gap: 15px;
  margin-bottom: 10px;
}

.why-icon {
  border-radius: 50%;
  background: #0265D8;
  display: flex;
  color: var(--white);
  margin-top: -5px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 40px;
  height: 40px;
}

.why-icon img{
  /* filter: brightness(0); */
  width: 20px;
  height: 20px;
}
.why-icon svg{
  width: 20px;
  height: 20px;
}

.why-card h4 {
  font-size: 17px;
  font-weight: 400;
  color: #000;
  width: 80%;
  line-height: 1.3;
  word-break: break-word;
}

.why-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* --- Bottom Section --- */
.revenu-section {
  background: #0265D8;
  border-radius: 20px;
  padding: 50px 40px;
}

.revenu-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.revenu-left {
  flex: 1;
  min-width: 250px;
}

.revenu-left h2 {
  color: #000;
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 20px;
}

.revenu-left h2 em {
  color: #000;
  font-style: italic;
  font-weight: 500;
}

.revenu-center {
  color: #000;
  flex: 1;
  width: 100%;
}

.revenu-right-main {
  padding-top: 40px;
  flex: 1;
  min-width: 250px;
}

.revenu-right {
  min-width: 280px;
  text-align: center;
}

.revenu-right p {
  color: #000;
  margin-bottom: 15px;
  font-weight: 500;
}

.revenu-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.revenu-btn:hover {
  background: #333;
}



.revenu-prices {
  display: flex;
  flex-wrap: nowrap; /* ✅ ek hi line main items rahenge */
  gap: 40px;
  margin-top: 30px;
  width: 100%;
  justify-content: flex-start; /* ya space-between chaho to laga sakte ho */
}

.revenu-box {
  width: 160px;
}

.revenu-box h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.revenu-box p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.revenu-box span {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  font-weight: normal;
}

/* ✅ Responsive Fixes */
@media (max-width: 1024px) {
  .why-left h2 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {

  .why-business-section {
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .why-business-top {
    flex-direction: column;
    text-align: center;
    width: 93%;
    padding: 40px 20px;
  }

  .why-left h2 {
    font-size: 35px;
  }

  .why-left p {
    font-size: 16px;
    margin: 0 auto 20px auto;
  }

  .why-right {
    grid-template-columns: 1fr; /* cards ek ek row mein */
    width: 100%;
  }

  .why-card h4 {
    width: 100%;
    text-align: left;
  }

  .revenu-section {
    width: 93%;
  padding: 50px 20px;
}

  .revenu-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .revenu-left h2 {
    font-size: 28px;
  }

  .revenu-right {
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .why-left h2 {
    font-size: 28px;
  }

  .why-left p,
  .why-card p,
  .revenu-left p,
  .revenu-right p {
    font-size: 14px;
    line-height: 1.4;
  }
}
















.partner-step {
  width: 350px;
}












.yt-section {
  font-family: Arial, sans-serif;
  padding: 0;
  background: #F8F8F8;
  overflow: hidden;
  position: relative; /* so bg-image stays inside this section */
}

.yt-inner-main {
  padding: 5%;
  position: relative; /* keep content above bg */
  z-index: 2;
}

.yt-bg-image {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

.yt-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.yt-header h2 {
  font-size: 65px;
  color: var(--brown-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.yt-header h2 em {
  color: var(--subtitle-color);
  font-weight: 600;
  font-style: italic;
}

.yt-header p {
  font-size: 18px;
  color: #000000;
  width: 45%;
  margin-bottom: 40px;
}

.yt-videos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.yt-card {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yt-card iframe {
  width: 100%;
  height: 235px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.yt-card p {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .yt-header h2 {
    font-size: 30px;
  }
  .yt-header p {
    font-size: 16px;
    width: 100%; /* full width on mobile */
  }

  .yt-videos {
    margin-bottom: 30px;
  }

  .yt-card iframe {
    height: 200px;
  }
}


































.call-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: 20px;
  padding: 60px;
  margin: 80px;
  margin-top: 10%;
  height: 503px;
  flex-wrap: wrap;
  position: relative; /* 🔑 so that child stays inside */
  overflow: visible; /* allow image to go out a little */
}

.call-sec-bg-img {
  opacity: 0.2;
    position: absolute;
    height: 60%;
    bottom: 0;
    left: 0;
}

.call-image {
  flex: 1;
  margin-left: 100px;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.call-image-2 {
  transform: translateY(-18%);
}

.call-image img {
  width: 100%;
  max-width: 350px; /* control size */
  height: auto;
  display: block;
}

.call-content {
  z-index: 20;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: linear-gradient(135deg, #5faaffaf, #0066da8f);
  border-radius: 20px;
  padding: 30px;
  margin-top: -12%;
  text-align: left;
}

.call-content h2 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.call-content h2 em {
  font-style: italic;
  font-weight: 600;
  color: #000;
}

.call-content p {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #000;
}

.call-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.call-content ul li {
  font-size: 16px;
  margin: 10px 0;
  color: #000;
  position: relative;
  padding-left: 25px;
}

.call-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}

.call-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn:hover {
  background: #333;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .call-section {
    width: 93%;
    flex-direction: column;   /* ✅ stack kar do */
    align-items: center;      /* ✅ center align sab ko */
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    margin-top: 100px;
    height: auto;             /* ✅ height fix, auto ho jaye */
  }

  .call-sec-bg-img {
    display: none;
}

  .call-image {
    z-index: 0;
    order: 1;
    margin: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .call-image img {
    margin-left: 50px;
    max-width: 80%;
    z-index: 1;
    height: auto;
  }

  .call-content {
    order: 2;                 /* ✅ image ke neeche aayega */
    width: 100%;              /* ✅ full width le */
    max-width: 600px;         /* responsive box size */
    margin: 0;           /* center box */
    margin-top: -10vh;
    z-index: 1;
    text-align: center;
  }

  .call-content h2 {
    font-size: 32px;
  }

  .call-content ul li {
    text-align: left;
    display: block;
  }
}




























































