.vendor-portal-diagram {
  position: relative;
  width: 100%;
  height: 900px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Center Circle */
.center-circle {
  position: absolute;
  top: 50%;   /* center vertically */
  left: 50%;  /* center horizontally */
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 5px solid #f3c04d;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.12);
  z-index: 2;
}

.center-circle h6 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #1B3160;
  margin: 0;
  line-height: 1.4;
}

/* Feature Boxes */
.feature {
  position: absolute;
  width: 280px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.12);
  line-height: 1.5;
  border: 1px solid #eee;
  z-index: 1;
}

.feature h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1B3160;
}

.feature p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* Icons */
.feature .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f3c04d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  font-size: 20px;
  color: #000;
}

/* ✅ Box Positioning */
.top-center    { top: 8%; left: 50%; transform: translateX(-50%); }   /* thoda gap add kiya */
.bottom-center { bottom: 10%; left: 50%; transform: translateX(-50%); }

.left-top      { top: 28%; left: 8%; }
.right-top     { top: 28%; right: 8%; }

.left-bottom   { top: 65%; left: 8%; }
.right-bottom  { top: 65%; right: 8%; }

/* ✅ Connecting Straight Lines */
.feature::after {
  content: "";
  position: absolute;
  background: #f3c04d;
  transition: all 0.8s ease-in-out;
  opacity: 0;
}

.vendor-portal-diagram.animate .feature::after {
  opacity: 1;
}

/* Top Center Line */
.top-center::after {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
}
.vendor-portal-diagram.animate .top-center::after { height: 60px; } /* line thodi lambi */

/* Bottom Center Line */
.bottom-center::after {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
}
.vendor-portal-diagram.animate .bottom-center::after { height: 60px; }

/* Left & Right Top Lines */
.left-top::after,
.right-top::after {
  top: 50%;
  height: 2px;
  width: 0;
}

.left-top::after { right: -70px; }
.right-top::after { left: -70px; }

.vendor-portal-diagram.animate .left-top::after,
.vendor-portal-diagram.animate .right-top::after {
  width: 70px;
}

/* Left & Right Bottom Lines */
.left-bottom::after,
.right-bottom::after {
  top: 50%;
  height: 2px;
  width: 0;
}

.left-bottom::after { right: -70px; }
.right-bottom::after { left: -70px; }

.vendor-portal-diagram.animate .left-bottom::after,
.vendor-portal-diagram.animate .right-bottom::after {
  width: 70px;
}

/* Responsive */
@media (max-width: 768px) {
  .vendor-portal-diagram {
    height: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .center-circle {
    position: relative;
    transform: none;
    margin: 20px 0;
  }

  .feature {
    position: relative;
    margin: 20px 0;
    width: 95%;
  }

  .feature::after {
    display: none;
  }
}
/* Seamless Integration → Efficiency & Time-Saving */
.left-top::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: #f3c04d;
  transition: height 0.8s ease-in-out;
}
.vendor-portal-diagram.animate .left-top::before {
  height: 130px; /* line length adjust for gap */
}

/* Scalable for Growth → Secure Vendor Management */
.right-top::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: #f3c04d;
  transition: height 0.8s ease-in-out;
}
.vendor-portal-diagram.animate .right-top::before {
  height: 120px; /* line length adjust for gap */
}

.benefits-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Circle */
.main-circle {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #f3c04d; /* outer border */
  box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #1B3160;
  z-index: 1;
}

/* Inner Border */
.main-circle::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid #f3c04d;
  border-radius: 50%;
  z-index: 0;
}

/* Orbit Container */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;   /* orbit ka size */
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 50%;
  pointer-events: none; /* invisible path */
}

/* Small Circles */
.small-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #2F2103; /* Dark Brown */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.25);
  transform-origin: -180px center;  /* orbit distance */
  z-index: 2;
}

/* Orbit placement with small gap (bulb → clockwise sequence) */
.circle1 { transform: rotate(270deg) translateX(180px) rotate(-270deg); } /* bulb top */
.circle2 { transform: rotate(300.5deg) translateX(180px) rotate(-297deg); }
.circle3 { transform: rotate(331deg) translateX(145px) rotate(-329deg); }
.circle4 { transform: rotate(5deg)   translateX(120px) rotate(-2deg); }
.circle5 { transform: rotate(39deg)  translateX(90px) rotate(-31deg); }
.circle6 { transform: rotate(84deg)  translateX(50px) rotate(-64deg); }

/* Responsive */
@media (max-width: 768px) {
  .main-circle {
    width: 250px;
    height: 250px;
    font-size: 14px;
  }

  .main-circle::before {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .orbit {
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
  }

  .small-circle {
    width: 45px;
    height: 45px;
    font-size: 16px;
    transform-origin: -135px center;
  }

  .circle1 { transform: rotate(270deg) translateX(135px) rotate(-270deg); }
  .circle2 { transform: rotate(300deg) translateX(135px) rotate(-300deg); }
  .circle3 { transform: rotate(330deg) translateX(135px) rotate(-330deg); }
  .circle4 { transform: rotate(0deg)   translateX(135px) rotate(0deg); }
  .circle5 { transform: rotate(30deg)  translateX(135px) rotate(-30deg); }
  .circle6 { transform: rotate(60deg)  translateX(135px) rotate(-60deg); }
}

/* Right Side Content Styling */
.benefit-item {
  margin-bottom: 25px;
  padding-left: 10px;
  border-left: 3px dashed #f3c04d;
}

.benefit-item h6 {
  font-size: 18px;
  font-weight: 700;
  color: #2F2103; /* dark brown match */
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-item h6 i {
  color: #f3c04d; /* yellow accent */
  font-size: 18px;
}

.benefit-item p {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.6;
}
.vendor-need-section {
  padding: 80px 0;
}

.vendor-need-section .text-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #d18800; /* golden heading */
  margin-bottom: 20px;
}

.vendor-need-section .text-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.vendor-need-section .vendor-img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .vendor-need-section {
    text-align: center;
  }
  .vendor-need-section .text-content {
    margin-bottom: 30px;
  }
}
.features-section {
  padding: 80px 0;
  background: #fff;
}

/* .section-heading h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2F2103;
  margin-bottom: 50px;
  font-family: 'Primary-Roman', sans-serif;
} */

.feature-box {
  background: #fff;
  border: 1px solid #eee;
  border-top: 5px solid #f3c04d;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  text-align: left;
  height: 100%;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 25px rgba(0,0,0,0.12);
}

.feature-box .feature-icon {
  width: 50px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  margin-left: 125px;
}



.feature-box:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
}

.feature-box h4 {
  font-size: 23.2px;
  font-weight: 700;
  color: #2F2103;
  margin-bottom: 12px;
  font-family: 'Primary-Roman', sans-serif;
}

.feature-box ul {
  padding-left: 18px;
  margin: 0;
}

.feature-box ul li {
  font-size: 17.6px;
  color: #444;
  margin-bottom: 6px;
  font-family: 'Primary-Roman', sans-serif;
}



/* Special Last Box */
.feature-box.special-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.feature-box.special-box h4 {
  margin-bottom: 20px;
}

.feature-box.special-box .btn {
  background: #f3c04d;
  color: #000;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.feature-box.special-box .btn:hover {
  background: #d18800;
  color: #fff;
}



/* new */

.main-section img {
  width: auto;
  height: 600px;
}

.main-section_m {
  background-color: #fff;
}

.main-section_m .left_portal {
  width: 50%;
  padding-left: 100px;
}

.main-section_m h2 {
  text-align: center;
  padding: 60px;
}

/* RIGHT SIDE */
.right {
  flex: 1;
  padding-left: 40px;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: repeating-linear-gradient(to bottom,
      #E49E10,
      #E49E10 10px,
      transparent 10px,
      transparent 20px);
  margin-left: 10px;
}

.step {
  position: relative;
  margin-bottom: 50px;
  padding-left: 0px;
}

.step::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: white;
  border: 4px solid #E49E10;
  border-radius: 50%;
}

.step h5 {
  font-weight: bold;
  color: #E49E10;
}

.step p {
  font-size: 14px;
  color: #444;
}
.main-section{
display: flex;
padding-bottom: 20px;
padding-top: 20px;
}



    :root {
      --color-light-grey: #E5E5E5;
      --color-soft-white: #F5F4F3;
      --color-gold: #F7C948;
      --color-dark-text: #1a1a1a;
      --color-light-text: #4a5568;
    }

    .vendor_portal_benefits  {
      font-family: 'Poppins', sans-serif;
      background: #EDEDED;
      color: var(--color-dark-text);
      overflow-x: hidden;
      /* min-height: 100vh; */

    }



    .vendor_portal_benefits .main-heading {
      font-size: 2.5rem;
      /* Equivalent to text-4xl */
      font-weight: 800;
      /* extrabold */
    }

    @media (min-width: 768px) {
    .vendor_portal_benefits   .main-heading {
        font-size: 3rem;
        /* Equivalent to md:text-5xl */
      }
    }

    .vendor_portal_benefits .main-heading .highlight {
      color: #D97706;
      /* Equivalent to text-gold-500, using a similar shade */
    }

    .vendor_portal_benefits .sub-heading {
      font-size: 1.125rem;
      /* text-lg */
      color: var(--color-light-text);
    }

   .vendor_portal_benefits .glass-card {
      background-color: #fff;
      backdrop-filter: blur(10px);
      border-radius: 1rem;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease-in-out;
      padding: 1.5rem;
      /* p-6 */
    }

   .vendor_portal_benefits .glass-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    }

   .vendor_portal_benefits .gold-icon {
      color: var(--color-gold);
      filter: drop-shadow(0 2px 4px rgba(247, 201, 72, 0.4));
      font-size: 2rem;
      /* text-3xl */
    }

   .vendor_portal_benefits .card-title-custom {
      font-weight: 700;
      font-size: 1.25rem;
      /* text-xl */
      color: var(--color-dark-text);
    }

   .vendor_portal_benefits  .card-text-custom {
      color: var(--color-light-text);
      font-size: 0.875rem;
      /* text-sm */
    }

    /* Timeline styles */
   .vendor_portal_benefits .timeline-container {
      position: relative;
    }

    .vendor_portal_benefits .timeline-line {
      position: absolute;
      width: 4px;
      background-color: var(--color-light-grey);
      border-radius: 2px;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }

   .vendor_portal_benefits .timeline-dot {
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: var(--color-gold);
      border: 4px solid var(--color-soft-white);
      border-radius: 50%;
      left: 50.7%;
      transform: translateX(-50%);
      box-shadow: 0 0 10px rgba(247, 201, 72, 0.7);
      z-index: 1;
    }

   .vendor_portal_benefits .timeline-card-container.left-col {
      padding-right: 2.5rem;
    }

    .vendor_portal_benefits .timeline-card-container.right-col {
      padding-left: 2.5rem;
    }

    @media (max-width: 767.98px) {

    .vendor_portal_benefits  .timeline-card-container.left-col,
    .vendor_portal_benefits   .timeline-card-container.right-col {
        padding: 0;
        align-items: center !important;
      }

     .vendor_portal_benefits .timeline-card-container .glass-card {
        width: 100% !important;
      }
    }

    /* Animation styles */
    .vendor_portal_benefits .slide-in-left {
      opacity: 0;
      transform: translateX(-100%);
    }

   .vendor_portal_benefits .slide-in-right {
      opacity: 0;
      transform: translateX(100%);
    }

    @keyframes fadeInSlideLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInSlideRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
.lead {
  font-size: 1.1rem !important;
  font-weight: 300;
}

.h3,
h3 {
  font-size: 1.45rem !important;
}

@media (min-width: 1200px) {

  .h2,
  h2 {
    font-size: 2rem !important;
  }
}

.vendor_portal_benefits .sub-heading{
width: 42rem;

}
.h5,
h5 {
  font-size: 1.25rem;
}

.vendor-need-section .font-lg , .main-section_m .font-lg{
  font-size: 40px !important;
}

.benefits-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Circle */
.main-circle {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #f3c04d;
  /* outer border */
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #1B3160;
  z-index: 1;
}

/* Inner Border */
.main-circle::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid #f3c04d;
  border-radius: 50%;
  z-index: 0;
}

/* Orbit Container */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  /* orbit ka size */
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 50%;
  pointer-events: none;
  /* invisible path */
}

/* Small Circles */
.small-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #2F2103;
  /* Dark Brown */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  transform-origin: -180px center;
  /* orbit distance */
  z-index: 2;
}

/* Orbit placement with small gap (bulb → clockwise sequence) */
.circle1 {
  transform: rotate(269deg) translateX(181px) rotate(-271deg);
}

/* bulb top */
.circle2 {
  transform: rotate(300.5deg) translateX(180px) rotate(-297deg);
}

.circle3 {
  transform: rotate(331deg) translateX(145px) rotate(-329deg);
}

.circle4 {
  transform: rotate(5deg) translateX(120px) rotate(-2deg);
}

.circle5 {
  transform: rotate(39deg) translateX(90px) rotate(-31deg);
}

.circle6 {
  transform: rotate(84deg) translateX(50px) rotate(-64deg);
}

/* Responsive */
@media (max-width: 768px) {
  .main-circle {
    width: 250px;
    height: 250px;
    font-size: 14px;
  }

  .main-circle::before {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .orbit {
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
  }

  .small-circle {
    width: 45px;
    height: 45px;
    font-size: 16px;
    transform-origin: -135px center;
  }

  .circle1 {
    transform: rotate(270deg) translateX(135px) rotate(-270deg);
  }

  .circle2 {
    transform: rotate(300deg) translateX(135px) rotate(-300deg);
  }

  .circle3 {
    transform: rotate(330deg) translateX(135px) rotate(-330deg);
  }

  .circle4 {
    transform: rotate(0deg) translateX(135px) rotate(0deg);
  }

  .circle5 {
    transform: rotate(30deg) translateX(135px) rotate(-30deg);
  }

  .circle6 {
    transform: rotate(60deg) translateX(135px) rotate(-60deg);
  }
}

/* Right Side Content Styling */
.benefit-item {
  margin-bottom: 25px;
  padding-left: 10px;
  border-left: 3px dashed #f3c04d;
}

.benefit-item h6 {
  font-size: 18px;
  font-weight: 700;
  color: #2F2103;
  /* dark brown match */
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-item h6 i {
  color: #f3c04d;
  /* yellow accent */
  font-size: 18px;
}

.benefit-item p {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* CTA Button Wrapper */
.cta-button-wrapper {
  margin-top: 25px;
  text-align: center;
  /* Center align inside right column */
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  white-space: nowrap;
  /* ✅ text ek line me rahe */
  background: #f3c04d;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Hover Effect */
.cta-btn:hover {
  background: #d18800;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Small Circles with Golden Glow Animation */
.small-circle {
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #2F2103;
  /* dark brown */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0px 0px 10px rgba(243, 192, 77, 0.5);
  animation: goldenGlow 2.5s ease-in-out infinite;
}

/* Golden Glow Animation */
@keyframes goldenGlow {

  0%,
  100% {
    box-shadow: 0px 0px 10px rgba(243, 192, 77, 0.5),
      0px 0px 20px rgba(243, 192, 77, 0.3),
      0px 0px 30px rgba(243, 192, 77, 0.3);
  }

  50% {
    box-shadow: 0px 0px 20px rgba(243, 192, 77, 0.8),
      0px 0px 40px rgba(243, 192, 77, 0.6),
      0px 0px 60px rgba(243, 192, 77, 0.6);
  }
}

/* Staggered Delay for Premium Effect */
.circle1 {
  animation-delay: 0s;
}

.circle2 {
  animation-delay: 0.4s;
}

.circle3 {
  animation-delay: 0.8s;
}

.circle4 {
  animation-delay: 1.2s;
}

.circle5 {
  animation-delay: 1.6s;
}

.circle6 {
  animation-delay: 2s;
}


.industry-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.industry-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

/* Icons */
.industry-box .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

.industry-box .icon svg {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

/* Colors for each icon */
.industry-box.healthcare .icon svg {
  color: #e74c3c;
}

.industry-box.retail .icon svg {
  color: #f39c12;
}

.industry-box.manufacturing .icon svg {
  color: #8e44ad;
}

.industry-box.realestate .icon svg {
  color: #27ae60;
}

.industry-box.government .icon svg {
  color: #2980b9;
}

.industry-box.logistics .icon svg {
  color: #d35400;
}

/* Hover Effect */
.industry-box:hover .icon svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px gold);
}

.choose-section {
  background: #f9f9f9;
}

/* Highlight Word */
.highlight {
  color: #1B3160;
  font-weight: bold;
}

/* Left Boxes */
.choose-box {
  background: #fff;
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #f3c04d;
}

.choose-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.choose-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1B3160;
  margin-bottom: 8px;
}

.choose-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Person Box */
.person-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 10px;
  height: 420px;
  /* Taller rectangle */
  display: flex;
  justify-content: center;
  align-items: center;
}

.person-box img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
    padding: 20px 25px;
    width: 340px;
    min-height: 180px;
    position: absolute;
    top: 192px;
    right: -51px;
    display: flex;
    align-items: center;
    z-index: 3;
  }


/* Golden Line Inside Box */
.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 4px;
  background: #f3c04d;
  border-radius: 2px;
}

/* Content Styling */
.testimonial-content {
  margin-left: 20px;
  /* golden line se gap */
}

.testimonial-content p {
  font-size: 15px;
  font-style: italic;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
  white-space: normal;
  /* wrap kare text ko */
}

.testimonial-content h6 {
  font-weight: 700;
  color: #1B3160;
  margin: 0;
}

.testimonial-content span {
  font-weight: 400;
  color: #555;
}



/* Section Heading */
.faq-section h2 {
  font-size: 32px;
  /* color: #1B3160; */
}

.faq-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  color: #555;
}

/* Accordion Item */
.accordion-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
}

/* Accordion Button */
.accordion-button {
  background: #fff;
  font-weight: 600;
  font-size: 16px;
  color: #1B3160;
  box-shadow: none !important;
  padding: 15px 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* ✅ Remove default Bootstrap accordion arrow */
.accordion-button::after {
  background-image: none !important;
  /* sirf default arrow remove karega */
}



/* Toggle Icon (+ - ) */
.accordion-button::after {
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  /* plus icon */
  font-weight: 900;
  color: #f3c04d;
  transition: transform 0.3s ease, content 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: "\f068";
  /* minus icon */
  transform: rotate(180deg);
}

/* Active Question Highlight */
.accordion-button:not(.collapsed) {
  background: #fff;
  color: #f3c04d;
  border-left: 5px solid #f3c04d;
  /* theme accent only left */
}

/* Body Animation */
.accordion-body {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  padding: 15px 20px;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.security-section {
  background: #F9F9F9;
  padding: 80px 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1B3160;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
}

.security-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.security-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
}

.security-box .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #F4A100;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.security-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1B3160;
  margin-bottom: 8px;
}

.security-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.illustration-img {
  max-height: 320px;
}

