.hero-section{
    position: relative;
    width: 100%;
    min-height: 744px;
    background: url('../images/hero.jpeg') center center/cover no-repeat;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.vicon i{
  font-size: 32px;
  color: #ca7d00;
}
.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        270deg,
        rgba(0,0,0,.33) 0%,
        rgba(0,0,0,0) 100%
    );
}

.hero-content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 814px;
    margin-right: 40px;
    padding: 40px;
}

.hero-badge{
    display: inline-block;
    padding: 8px 12px;
    background: rgba(255,255,255,.10);
    border-radius: 4px;
    color: #EDB44D;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
}

.hero-content h1{
    color: #FFEEDA;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
}

.hero-content p{
    max-width: 850px;
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary{
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary{
    background: linear-gradient(2deg,#754902 0%,#CA7D00 100%);
    border: 1px solid #EDB44D;
    color: #fff;
}

.btn-secondary{
    background: #040404;
    border: 1px solid #EDB44D;
    color: #EDB44D;
}

.btn-primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(117, 73, 2, 0.3);
    filter: brightness(1.05);
}

.btn-secondary:hover{
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Tablet */
@media (max-width: 991px){

    .hero-section{
        min-height: 600px;
        justify-content: center;
    }

    .hero-content{
        max-width: 100%;
        margin-right: 0;
        padding: 30px;
        text-align: center;
    }

    .hero-content h1{
        font-size: 46px;
    }

    .hero-content p{
        font-size: 17px;
        max-width: 100%;
    }

    .hero-buttons{
        justify-content: center;
    }
}

/* Mobile - Image upar, content neeche */

@media (max-width: 767px){

    .hero-section{
        min-height: auto;
        padding: 0;
        justify-content: center;
        background: none;
        display: flex;
        flex-direction: column;
        background: #3320098a;
    }

    .hero-overlay{
        display: none;
    }

    /* Mobile image background */
    .hero-section::before{
        content: '';
        display: block;
        width: 100%;
        height: 300px;
        background: url('../images/hero-mobile.jpg') center center/cover no-repeat;
        flex-shrink: 0;
    }

    .hero-content{
        padding: 30px 20px 40px;
        margin: 0;
        text-align: center;
        background: #0a0a0a;
        width: 100%;
    }

    .hero-badge{
        font-size: 13px;
        padding: 6px 10px;
        margin-bottom: 15px;
    }

    .hero-content h1{
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 15px;
        color: #FFEEDA;
    }

    .hero-content p{
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
        color: #fff;
        max-width: 100%;
    }

    .hero-buttons{
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary{
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

/* Small Mobile */

@media (max-width: 480px){

    .hero-section::before{
        height: 220px;
        background: url('../images/Mobile Slider (1).png') center center/cover no-repeat;
    }

    .hero-content{
        padding: 20px 15px 30px;
    }

    .hero-badge{
        font-size: 12px;
        padding: 5px 8px;
    }

    .hero-content h1{
        font-size: 26px;
    }

    .hero-content p{
        font-size: 13px;
    }

    .btn-primary,
    .btn-secondary{
        font-size: 13px;
        padding: 11px;
    }
    .btn-primary {
    background: linear-gradient(2deg, #754902 0%, #CA7D00 100%);
    border: 1px solid #EDB44D;
    color: #fff;
    display: none;
}
}
















/* =========================
   VERIFICATION SECTION
========================= */

.verification-section{
    position: relative;
    z-index: 20;
    margin-top: 20px; /* Hero section pe chadhega */
    padding: 0 15px 0px;
}

.verification-card{
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    background: #F7ECD8;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 2px solid #FAF9F4;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

/* Orange Strip */

.left-strip{
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 100%;
    background: #F39C12;
    z-index: 5;
}

/* Main Layout */

.verification-grid{
    display: grid;
    grid-template-columns: 1fr 350px;
    min-height: 510px;
}

/* Left Content */

.verification-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 55px 0 0 70px;
}

.content-top{
    padding-right: 45px;
}

.verification-content h2{
    color: #604B33;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    max-width: 800px;
}

.verification-content p{
    color: #5B5B5B;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
    max-width: 860px;
}

/* Brown Feature Bar */

.verification-features{
    background: #754902;

    display: grid;
    grid-template-columns: repeat(6,1fr);

    gap: 10px;

    margin-left: -70px;
    width: calc(100% + 70px);

    padding: 22px 20px;
    margin-top: 10px;
    margin-bottom: 60px;
}

.feature-box{
    text-align: center;
}

.feature-box i{
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 12px;

    color: #754902;
    font-size: 18px;
}

.feature-box span{
    display: block;
    color: #F39C12;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

/* Right Image */

.verification-image{
    height: 100%;
}

.verification-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px){

    .verification-section{
        margin-top: 70px;
    }

    .verification-grid{
        grid-template-columns: 1fr;
    }

    .verification-content{
        padding: 40px 0 0 40px;
    }

    .content-top{
        padding-right: 30px;
    }

    .verification-content h2{
        font-size: 36px;
    }

    .verification-image{
        order: -1;
        height: 350px;
    }

    .verification-features{
        margin-left: -40px;
        width: calc(100% + 40px);
        grid-template-columns: repeat(3,1fr);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px){

    .verification-section{
        margin-top: 50px;
        padding: 0 12px 60px;
    }

    .left-strip{
        width: 12px;
    }

    .verification-content{
        padding: 25px 0 0 20px;
    }

    .content-top{
        padding-right: 20px;
    }

    .verification-content h2{
        font-size: 28px;
        line-height: 1.35;
        margin-bottom: 15px;
    }

    .verification-content p{
        font-size: 14px;
        line-height: 24px;
    }

    .verification-image{
        height: 260px;
    }

    .verification-features{
        margin-left: -20px;
        width: calc(100% + 20px);

        grid-template-columns: repeat(2,1fr);

        padding: 20px 15px;
    }

    .feature-box span{
        font-size: 12px;
        line-height: 18px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){

    .verification-content h2{
        font-size: 24px;
    }

    .verification-features{
                grid-template-columns: repeat(2, 1fr);
    }

    .feature-box{
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

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





/* ===================================
   ABOUT PROPLEGAL SECTION
=================================== */

.about-proplegal {
  padding: 30px 15px;
}

.about-card {
  max-width: 1360px;
  margin: auto;
  background: #F39C12;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 35px 50px 35px 0;
}

/* ==========================
   LEFT IMAGE AREA
========================== */

.about-images {
  position: relative;
  width: 500px;
  min-width: 500px;
  height: 390px;
}

.main-image {
  position: relative;
  z-index: 1;
}

.main-image img {
  width: 390px;
  height: 390px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-left: -25px;
}

.side-images {
  position: absolute;
  right: 40px;
  top: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5;
}

.side-images img {
  width: 145px;
  height: 145px;
  object-fit: cover;
  border-radius: 26px;
  background: #fff;
  border: 3px solid #F39C12;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ==========================
   CONTENT AREA
========================== */

.about-content {
  flex: 1;
}

/* Badge + Language Toggle */
.about-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: rgba(117, 73, 2, 0.15);
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
}

.lang-toggle:active {
  transform: scale(0.96);
}

/* Content */
.about-text p {
  color: #754902;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ==========================
   READ MORE LINK
========================== */

.read-more-link {
  margin-top: 20px;
}

.read-more-link a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.read-more-link a:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
  transform: translateX(5px);
}

/* ==========================
   FEATURES
========================== */

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item i {
  color: #fff;
  font-size: 16px;
}

.feature-item span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

/* ==========================
   LARGE TABLET
========================== */

@media (max-width: 1200px) {
  .about-card {
    gap: 40px;
    padding-right: 30px;
  }

  .about-images {
    width: 420px;
    min-width: 420px;
    height: 330px;
  }

  .main-image img {
    width: 330px;
    height: 330px;
  }

  .side-images img {
    width: 125px;
    height: 125px;
  }

  .about-text p {
    font-size: 15px;
  }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .about-card {
    flex-direction: column;
    gap: 40px;
    padding: 35px 25px;
  }

  .about-images {
    width: 100%;
    max-width: 500px;
    min-width: auto;
    margin: auto;
  }

  .main-image img {
    margin-left: 0;
  }

  .about-content {
    width: 100%;
  }

  .about-badge {
    font-size: 16px;
  }

  .about-features {
    gap: 20px;
  }

  .about-badge-wrapper {
    gap: 12px;
  }

  .lang-toggle {
    font-size: 13px;
    padding: 6px 14px;
  }

  .read-more-link a {
    font-size: 15px;
    padding: 8px 20px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
  .about-proplegal {
    padding: 60px 12px;
  }

  .about-card {
    padding: 25px 18px;
    gap: 25px;
  }

  .about-images {
    position: relative;
    width: 100%;
    max-width: 340px;
    height: 280px;
    margin: 0 auto;
  }

  .main-image {
    position: absolute;
    left: 0;
    top: 0;
  }

  .main-image img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-left: 0;
  }

  .side-images {
    position: absolute;
    right: 0;
    top: 20px;
    gap: 12px;
  }

  .side-images img {
    width: 90px;
    height: 90px;
    border-radius: 18px;
  }

  .about-badge-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .about-badge {
    font-size: 14px;
    padding: 8px 14px;
    margin-bottom: 0;
  }

  .lang-toggle {
    font-size: 12px;
    padding: 5px 12px;
  }

  .about-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .read-more-link {
    margin-top: 16px;
  }

  .read-more-link a {
    font-size: 14px;
    padding: 8px 18px;
  }

  .about-features {
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
  }

  .feature-item i {
    font-size: 14px;
  }

  .feature-item span {
    font-size: 12px;
  }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .about-card {
    padding: 20px 15px;
  }

  .about-images {
    max-width: 290px;
    height: 240px;
  }

  .main-image img {
    width: 200px;
    height: 200px;
  }

  .side-images {
    top: 15px;
  }

  .side-images img {
    width: 75px;
    height: 75px;
    border-radius: 14px;
  }

  .about-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .lang-toggle {
    font-size: 11px;
    padding: 4px 10px;
  }

  .about-text p {
    font-size: 13px;
    line-height: 1.7;
  }

  .read-more-link a {
    font-size: 13px;
    padding: 6px 16px;
  }

  .feature-item span {
    font-size: 11px;
  }
}




.prop-services{
  padding: 30px 20px;
  background: #ffffff;
  font-family: Mangal, sans-serif;
}

.prop-container{
  max-width: 1200px;
  margin: auto;
}

/* Header */
.prop-header{
  text-align: center;
  margin-bottom: 45px;
}

.prop-badge{
  display: inline-block;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(2deg, #754902, #CA7D00);
  border: 1px solid #EDB44D;
  border-radius: 5px;
}

.prop-title{
  margin-top: 14px;
  font-size: 28px;
  font-weight: 700;
  color: #754902;
  line-height: 1.3;
}

/* Grid */
.prop-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.prop-card {
    background: #FEF2E9;
    padding: 24px 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 1px 1px rgb(117 73 2 / 22%);
    transition: all 0.3s ease;
}

/* Hover */
.prop-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(117, 73, 2, 0.35);
}

.prop-icon{
  width: 78px;
  height: 78px;
  margin: 0 auto 15px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-icon img{
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.prop-card h3{
  font-size: 18px;
  color: #F39C12;
  margin-bottom: 10px;
}

.prop-card p{
  font-size: 15px;
  color: #5B5B5B;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px){
  .prop-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .prop-grid{
    grid-template-columns: 1fr;
  }

  .prop-title{
    font-size: 22px;
  }
}











.philo-bg{
  width: 100%;
  min-height: 310px;
  background: url("../images/OurPhilosophy.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 20px;
  font-family: Mangal, sans-serif;
}

/* Dark overlay for readability */
.philo-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* Content wrapper */
.philo-overlay{
  position: relative;
  max-width: 920px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

/* Left */
.philo-left h2{
  font-size: 44px;
  font-weight: 700;
  color: #F39C12;
  line-height: 1.2;
  margin: 0;
}

/* Divider line */
.philo-line{
  width: 3px;
  height: 160px;
  background: rgba(250, 249, 244, 0.4);
}

/* Right text */
.philo-right{
  color: #fff;
}

.philo-right h3{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.philo-right p{
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px){
  .philo-overlay{
    flex-direction: column;
    text-align: center;
  }

  .philo-line{
    width: 60%;
    height: 2px;
  }

  .philo-left h2{
    font-size: 34px;
  }
}

@media (max-width: 500px){
  .philo-left h2{
    font-size: 28px;
  }

  .philo-right h3{
    font-size: 18px;
  }

  .philo-right p{
    font-size: 14px;
  }
}











.vflow-section {
  width: 100%;
  min-height: 750px;
  background: url("../images/verify-bg.png") center/cover no-repeat;
  position: relative;
  font-family: Mangal, sans-serif;
  overflow-x: hidden;
  padding: 60px 0 80px 0;
}

.vflow-container {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 0 15px;
}

/* ============================================
   HEADER
============================================ */
.vflow-header {
  text-align: center;
  margin-bottom: 30px;
}

.vflow-badge {
  background: #ff9800;
  color: #fff;
  padding: 6px 16px;
  font-weight: 700;
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
}

.vflow-header h2 {
  margin-top: 12px;
  color: #6a3f00;
  font-size: 32px;
  font-weight: 700;
}

/* ============================================
   CARDS AREA - ZIG ZAG (7 CARDS IN ONE LINE)
============================================ */
.vflow-area {
  position: relative;
  height: 600px;
  margin-top: 10px;
}

/* ============================================
   INDIVIDUAL CARD (Width Reduced)
============================================ */
.vcard {
  width: 190px;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 14px;
  position: absolute;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.vcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* Top section (icon + number) */
.vtop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.vicon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #8181813b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vicon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.vnum {
  font-size: 22px;
  font-weight: 800;
  color: #ff8a00;
  opacity: 0.4;
}

/* Card text */
.vcard h3 {
  font-size: 15px;
  color: #6a3f00;
  margin-bottom: 6px;
  font-weight: 700;
  line-height: 1.3;
}

.vcard p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   ZIG-ZAG POSITIONING (7 CARDS - CORRECTED)
   Odd numbers → bottom row (top: 280px)
   Even numbers → top row (top: 120px)
============================================ */
.v1 { left: 25px; top: 280px; }
.v2 { left: 219px; top: 120px; }
.v3 { left: 417px; top: 280px; }
.v4 { left: 612px; top: 120px; }
.v5 { left: 810px; top: 280px; }
.v6 { left: 1008px; top: 120px; }
.v7 { left: 1204px; top: 280px; }

/* ============================================
   LARGE DESKTOP (max-width: 1400px)
============================================ */
@media (max-width: 1400px) {
  .vcard {
    width: 160px;
    padding: 14px 12px;
  }

  .v1 { left: 0px; }
  .v2 { left: 175px; }
  .v3 { left: 350px; }
  .v4 { left: 525px; }
  .v5 { left: 700px; }
  .v6 { left: 875px; }
  .v7 { left: 1050px; }

  .vcard h3 {
    font-size: 14px;
  }
  .vcard p {
    font-size: 12px;
  }
  .vicon {
    width: 48px;
    height: 48px;
  }
  .vicon img {
    width: 33px;
    height: 33px;
  }
  .vnum {
    font-size: 20px;
  }
}

/* ============================================
   DESKTOP (max-width: 1250px)
============================================ */
@media (max-width: 1250px) {
  .vcard {
    width: 145px;
    padding: 12px 10px;
  }

  .v1 { left: 0px; }
  .v2 { left: 160px; }
  .v3 { left: 320px; }
  .v4 { left: 480px; }
  .v5 { left: 640px; }
  .v6 { left: 800px; }
  .v7 { left: 960px; }

  .vcard h3 {
    font-size: 13px;
  }
  .vcard p {
    font-size: 11px;
  }
  .vicon {
    width: 44px;
    height: 44px;
  }
  .vicon img {
    width: 30px;
    height: 30px;
  }
  .vnum {
    font-size: 18px;
  }
}

/* ============================================
   TABLET (max-width: 1100px)
============================================ */
@media (max-width: 1100px) {
  .vflow-area {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px 0;
  }

  .vcard {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .vflow-header h2 {
    font-size: 26px;
  }

  .vcard h3 {
    font-size: 16px;
  }
  .vcard p {
    font-size: 14px;
  }
  .vicon {
    width: 55px;
    height: 55px;
  }
  .vicon img {
    width: 38px;
    height: 38px;
  }
  .vnum {
    font-size: 22px;
  }
}

/* ============================================
   MOBILE (max-width: 768px)
============================================ */
@media (max-width: 768px) {
  .vflow-section {
    padding: 40px 0 50px 0;
    min-height: auto;
  }

  .vflow-header h2 {
    font-size: 20px;
    padding: 0 5px;
  }

  .vflow-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .vflow-area {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 5px 0;
    margin-top: 10px;
  }

  .vcard {
    padding: 16px 14px;
    border-radius: 12px;
    max-width: 100%;
  }

  .vcard h3 {
    font-size: 16px;
  }
  .vcard p {
    font-size: 14px;
    line-height: 1.6;
  }

  .vicon {
    width: 50px;
    height: 50px;
  }
  .vicon img {
    width: 35px;
    height: 35px;
  }
  .vnum {
    font-size: 20px;
  }
  .vtop {
    margin-bottom: 10px;
  }
}

/* ============================================
   EXTRA SMALL MOBILE (max-width: 480px)
============================================ */
@media (max-width: 480px) {
  .vflow-container {
    padding: 0 10px;
  }

  .vflow-header h2 {
    font-size: 18px;
  }

  .vcard {
    padding: 14px 12px;
  }

  .vcard h3 {
    font-size: 15px;
  }
  .vcard p {
    font-size: 13px;
  }

  .vicon {
    width: 44px;
    height: 44px;
  }
  .vicon img {
    width: 30px;
    height: 30px;
  }
  .vnum {
    font-size: 18px;
  }
}











.trust-banner{
  width: 100%;
  background: #754902;
  padding: 40px 20px;
  box-sizing: border-box;
}

.trust-container{
  max-width: 1230px;
  margin: auto;
}

.trust-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT TEXT */
.trust-left{
  flex: 1;
  color: #EDB44D;
  font-size: 36px;
  font-weight: 700;
  font-family: Mangal, sans-serif;
  line-height: 50px;
}

/* RIGHT TEXT */
.trust-right{
  flex: 1;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  font-family: Inter, sans-serif;
  line-height: 28px;
}

/* =====================
   TABLET
===================== */
@media (max-width: 992px){
  .trust-content{
    gap: 40px;
  }

  .trust-left{
    font-size: 28px;
    line-height: 40px;
  }

  .trust-right{
    font-size: 18px;
  }
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px){
  .trust-content{
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .trust-left{
    font-size: 24px;
    line-height: 34px;
  }

  .trust-right{
    font-size: 16px;
    line-height: 24px;
  }
}










.lp-hero{
  width: 100%;
  background: #FFEFD3;
  padding: 30px 20px;
  font-family: Mangal, sans-serif;
}

.lp-container{
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ================= LEFT FIX ================= */
.lp-left{
  flex: 1;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-bg-box{
     width: 560px;
    height: 407px;
  background: #F39C12;
  border-radius: 24px;
  position: absolute;
  left: 40px;
  top: 120px;
  z-index: 1;
}

.lp-main-img{
  width: 560px;
  max-width: 100%;
  border-radius: 24px;
  position: relative;
  z-index: 2;
}

/* TRUST CARD */
.lp-trust-card {
    width: 240px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    position: absolute;
    top: 45px;
    /* left: 120px; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 3;
    right: 10px;
}

.lp-trust-title{
  font-weight: 700;
  color: #754902;
  font-size: 16px;
}

.lp-trust-sub{
  font-size: 12px;
  color: #666;
}

.lp-avatars{
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.lp-avatars img{
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.lp-plus{
  width: 32px;
  height: 32px;
  background: #F39C12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* BADGE */
.lp-badge{
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  z-index: 3;
}

.lp-check{
  width: 22px;
  height: 22px;
  background: #F39C12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ================= RIGHT ================= */
.lp-right{
  flex: 1;
}

.lp-right h1{
  font-size: 40px;
  color: #754902;
  line-height: 48px;
}

.lp-right p{
  font-size: 18px;
  color: #5B5B5B;
  margin-top: 20px;
}

/* ===== 2x2 GRID (IMPORTANT FIX) ===== */
.lp-grid{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.lp-item{
  font-size: 14px;
    font-weight: 600;
    color: #373636;
    /* background: #fff; */
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex
;
   
    align-items: center;
    gap: 12px;
  
}

/* BUTTONS */
.lp-btns{
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.lp-btn-primary{
  background: linear-gradient(2deg, #754902, #CA7D00);
  border: none;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.lp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(117, 73, 2, 0.3);
  filter: brightness(1.05);
}

.lp-btn-outline{
  border: 1px solid #EDB44D;
  background: transparent;
  padding: 12px 18px;
  border-radius: 8px;
  color: #754902;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.lp-btn-outline:hover {
  background: #754902;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(117, 73, 2, 0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px){
  .lp-container{
    flex-direction: column;
  }

  .lp-left{
    min-height: 450px;
  }

  .lp-bg-box,
  .lp-trust-card,
  .lp-badge{
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 15px;
  }

  .lp-grid{
    grid-template-columns: 1fr;
  }

  .lp-btns{
    flex-direction: column;
  }
}
@media (max-width: 992px){

  .lp-container{
    flex-direction: column;
    gap: 30px;
  }

  /* LEFT SECTION */
  .lp-left{
    width: 100%;
    min-height: auto;
    flex-direction: column;
    align-items: center;
  }

  .lp-bg-box{
    width: 90%;
    height: 260px;
    position: absolute;
    top: 40px;
    left: 5%;
  }

  .lp-main-img{
    width: 90%;
    height: auto;
  }

  /* TRUST CARD */
  .lp-trust-card{
    position: relative;
    width: 90%;
    right: auto;
    top: auto;
    margin-top: 15px;
  }

  /* BADGE */
  .lp-badge{
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 10px;
  }

  /* RIGHT SIDE */
  .lp-right{
    width: 100%;
    text-align: left;
  }

  .lp-right h1{
    font-size: 26px;
    line-height: 34px;
  }

  .lp-right p{
    font-size: 15px;
  }

  /* GRID FIX */
  .lp-grid{
    grid-template-columns: 1fr;
  }

  /* BUTTONS */
  .lp-btns{
    flex-direction: column;
    width: 100%;
  }

  .lp-btn-primary,
  .lp-btn-outline{
    width: 100%;
    text-align: center;
  }
}
