/* HERO */
.hero {
  min-height: 90vh;
  padding: 100px 0;
  background: #fdfaf4;
  overflow: hidden;
    font-family: "Candara", sans-serif;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fdfaf4, rgba(253,250,244,0.4));
}

/* TEXT */
.hero-tag {
  color: #d4af37;
  letter-spacing: 4px;
  font-weight: 600;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0;
}

.hero-desc {
  border-left: 2px solid #d4af37;
  padding-left: 15px;
  color: #555;
  max-width: 500px;
}

/* CARDS */
.hero-card {
  position: relative;
  height: 90px;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.6s;
  border-radius: 12px;
}

.hero-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(253,250,244,0.7), rgba(253,250,244,0.95));
  display: flex;
  align-items: flex-end;
  padding: 14px 20px;
  border-radius: 10px;
}

.card-overlay  p{
font-size: 16px;
font-weight: 600;
line-height: 1.4;
}
/* RIGHT BOX */
.partner-box {
 background: url("image/partner.jpg") center/cover no-repeat;
background-position: 50% 10%;
min-height: 500px;
  border-radius: 12px;
  border: 1px solid #ddd;
}
.brand-promise {

  font-family: "Candara", sans-serif;

  background:
    linear-gradient(
      135deg,
      #f8f6f2 0%,
      #eef5f1 100%
    );

  overflow: hidden;

  position: relative;
}

/* TOP TAG */

.bp-tag {

  display: inline-block;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .18em;

  text-transform: uppercase;

  color: var(--caramel);

  margin-bottom: 14px;
}

/* HEADING */

.bp-heading {

  font-size: clamp(30px, 4vw, 38px);

  font-weight: 800;

  color: #23352d;

  margin-bottom: 16px;
}

/* SUBTEXT */

.bp-sub {

  max-width: 860px;

  margin: auto;

  font-size: 20px;

  line-height: 1.4;

  color: #333;
}

/* IMAGE */

.bp-image-wrap {

  position: relative;
}

.bp-image-wrap img {

  width: 100%;

  border-radius: 28px;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.08);

  display: block;
}

/* CARDS */

.bp-card {

  background: rgba(255,255,255,0.75);

  backdrop-filter: blur(14px);

  border-radius: 24px;

  padding: 20px;

  display: flex;

  align-items: flex-start;

  gap: 10px;

  transition:
    transform .35s ease,
    box-shadow .35s ease;

  border:
    1px solid rgba(255,255,255,0.8);

  box-shadow:
    0 10px 35px rgba(0,0,0,0.05);
}

.bp-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

/* ICON */

.bp-icon {

  width: 72px;
  height: 72px;

  min-width: 72px;

  border-radius: 22px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 32px;

  color: #fff;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.12);
}

/* RAINBOW COLORS */

.rainbow-1 {

  background:
    linear-gradient(
      135deg,
      #ff512f,
      #dd2476
    );
}

.rainbow-2 {

  background:
    linear-gradient(
      135deg,
      #36d1dc,
      #5b86e5
    );
}

.rainbow-3 {

  background:
    linear-gradient(
      135deg,
      #f7971e,
      #ffd200,
      #7f53ac
    );
}

/* TEXT */

.bp-card h4 {

  font-size: 20px;

  font-weight: 700;

  color: #24372f;

  margin-bottom: 10px;
}

.bp-card p {

  font-size: 17px;

  line-height: 1.8;

  color: #617267;

  margin: 0;
}

/* MOBILE */

@media (max-width: 768px) {

  .bp-heading {
    font-size: 25px;
  }

  .bp-sub {
    font-size: 16px;
  }

  .bp-card {

    padding: 22px;

    gap: 18px;
  }

  .bp-icon {

    width: 58px;
    height: 58px;

    min-width: 58px;

    font-size: 24px;
  }

  .bp-card h4 {
    font-size: 18px;
  }

  .bp-card p {
    font-size: 14px;
  }
}

.bp-cards-wrap {

  max-width: 950px;

  margin: 10px auto 0;
}

/* TOP CENTER CARD */

.bp-top-card {

  display: flex;

  justify-content: center;

  margin-bottom: 28px;
}

.center-card {

  max-width: 480px;
}

/* CARD */

.vertical-card,
.center-card {

  text-align: center;

  align-items: center;

  flex-direction: column;
}

/* CARD STYLE */

.bp-card {

  background: rgba(255,255,255,0.72);

  backdrop-filter: blur(12px);

  border-radius: 28px;

  padding: 20px 30px;

  height: 100%;

  border:
    1px solid rgba(255,255,255,0.9);

  box-shadow:
    0 15px 45px rgba(0,0,0,0.06);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.bp-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 25px 55px rgba(0,0,0,0.08);
}

/* ICON */

.bp-icon {

  width: 78px;
  height: 78px;

  border-radius: 24px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 4px;

  font-size: 34px;

  color: #fff;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.12);
}

/* RAINBOW ICONS */

.rainbow-1 {

  background:
    linear-gradient(
      135deg,
      #ff512f,
      #dd2476
    );
}

.rainbow-2 {

  background:
    linear-gradient(
      135deg,
      #36d1dc,
      #5b86e5
    );
}

.rainbow-3 {

  background:
    linear-gradient(
      135deg,
      #f7971e,
      #ffd200,
      #7f53ac
    );
}

/* TEXT */

.bp-card h4 {

  font-size: 28px;

  font-weight: 700;

  color: #23352d;

  margin-bottom: 16px;

  line-height: 1.3;
}

.bp-card p {

  font-size: 17px;

  line-height: 1.9;

  color: #617267;

  margin: 0;
}

/* MOBILE */

@media (max-width:768px){

  .bp-card {

    padding: 28px 22px;
  }

  .bp-card h4 {

    font-size:18px;
  }

  .bp-card p {

    font-size: 14px;
  }

  .bp-icon {

    width: 62px;
    height: 62px;

    font-size: 26px;
  }
}

 /* new section add */
 .quality-section {

  background:
    linear-gradient(
      135deg,
      #f8f6f2,
      #eef5f1
    );

  font-family: "Candara", sans-serif;
}

/* TOP */

.qs-top {

  max-width: 1200px;

  margin: auto auto 20px;
}


.qs-heading {

  font-size: clamp(30px, 4vw, 38px);

  font-weight: 800;

  color: #23352d;

  margin-bottom: 18px;
}

.qs-sub {

  font-size: 19px;

  line-height: 1.5;

  color: #333;
}

/* CERTIFICATION CARDS */

.cert-card {

  background: rgba(255,255,255,0.72);

  backdrop-filter: blur(12px);

  border-radius: 28px;

  padding: 23px 20px;

  height: 100%;

  transition:
    transform .35s ease,
    box-shadow .35s ease;

  border:
    1px solid rgba(255,255,255,0.9);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}

.cert-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

.cert-img {

  height: 80px;

  object-fit: contain;

  margin-bottom: 20px;
}

.cert-card h4 {

  font-size: 25px;

    font-family: "Calibri", sans-serif;
  font-weight: 700;

  color: #000;

  line-height: 1.4;

  margin-bottom: 14px;
}

.cert-card p {

  font-size: 17px;

  line-height: 1.8;

  color: #7a8a81;

  margin: 0;
}

/* CONTENT CARDS */

.qs-content-card {

  background: rgba(255,255,255,0.65);

  border-radius: 28px;

  padding: 27px;

  height: 100%;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.qs-content-card h3 {

  font-size: 25px;

  font-weight: 700;

  color: #23352d;

  margin-bottom: 22px;
}

/* LIST */

.qs-list {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

.qs-list li {

  display: flex;

  align-items: center;

  gap: 16px;

  font-size: 19px;

  line-height: 1.7;

  color: #617267;

  font-weight: 500;
}

/* ICONS */

.qs-list i {

  width: 46px;
  height: 46px;

  min-width: 46px;

  border-radius: 14px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 20px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #e24d2f,
      #f10b73
    );

  box-shadow:
    0 10px 25px rgba(0,0,0,0.12);
}

/* MOBILE */

@media (max-width:768px){

  .qs-heading {

    font-size: 26px;
  }

  .qs-sub {

    font-size: 16px;
  }

  .cert-card {

    padding: 28px 22px;
  }

  .cert-card h4 {

    font-size: 21px;
  }

  .cert-card p {

    font-size: 14px;
  }

  .qs-content-card {

    padding: 22px;
  }

  .qs-content-card h3 {

    font-size: 22px;
  }

  .qs-list li {

    font-size: 15px;
  }
}


.market-section {

  background:
    linear-gradient(
      135deg,
      #f8f6f2,
      #eef5f1
    );

  font-family: "Candara", sans-serif;
}

/* TOP */

.market-top {

  max-width: 1000px;

  margin: auto auto 20px;
}

.market-tag {

  display: inline-block;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: .18em;

  text-transform: uppercase;

  color: var(--caramel);

  margin-bottom: 14px;
}

.market-heading {

  font-size: clamp(30px, 4vw, 38px);

  font-weight: 700;

  color: #333;

  margin-bottom: 10px;
}

.market-sub {
  font-size: 19px;
  line-height: 1.3;
  color: #333;
}

/* CARD */

.market-card {

  background: rgba(255,255,255,0.72);

  backdrop-filter: blur(12px);

  border-radius: 28px;

  padding: 30px 25px;

  height: 100%;

  transition:
    transform .35s ease,
    box-shadow .35s ease;

  border:
    1px solid rgba(255,255,255,0.9);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}

.market-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

/* ICON */

.market-icon {

  width: 70px;
  height: 70px;

  margin: 0 auto 24px;

  border-radius: 26px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 33px;

  color: #fff;

  box-shadow:
    0 14px 30px rgba(0,0,0,0.12);
}

/* COLORS */

.icon-one {

  background:
    linear-gradient(
      135deg,
      #ff512f,
      #dd2476
    );
}

.icon-two {

  background:
    linear-gradient(
      135deg,
      #36d1dc,
      #5b86e5
    );
}

.icon-three {

  background:
    linear-gradient(
      135deg,
      #f7971e,
      #ffd200,
      #7f53ac
    );
}

/* TEXT */

.market-card h4 {

  font-size: 23px;

  font-weight: 700;

  color: #333;

  margin-bottom: px;

  line-height: 1.4;
}

.market-card p {

  font-size: 18px;

  line-height: 1.4;

  color: #476853;

  margin: 0;
}

/* MOBILE */

@media (max-width:768px){

  .market-heading {

    font-size: 25px;
  }

  .market-sub {

    font-size: 17px;
  }

  .market-card {

    padding: 18px 18px;
  }

  .market-icon {

    width: 64px;
    height: 64px;

    font-size: 28px;
  }

  .market-card h4 {

    font-size: 22px;
  }

  .market-card p {

    font-size: 14px;
  }
}

.wc-left {

    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}

.wc-single-img {

    width: 100%;

    max-width: 480px;

    height:550px;
    object-fit: cover;
object-position: 50% 0%;
    border-radius: 24px;

    display: block;

    filter:
        drop-shadow(0 25px 40px rgba(0,0,0,0.12));

    transition:
        transform .4s ease;
}

.wc-single-img:hover {

    transform: translateY(-6px) scale(1.01);
}


    .contact-section {
        background: linear-gradient(135deg,


                #fff4b8 40%,
                #d9f7be 60%,
                #cde7ff 80%,
            );

        padding: 80px 0;
    }


    .contact-form-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        padding: 40px;
        border-radius: 28px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }


    .contact-form-card h1,
    .contact-left h1,
    .contact-left h4,
    .contact-left p,
    .desc {
        color: #3d3d3d;
    }

    .small-text,
    .connect-tag {
        color: #381924;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .contact-form-card .form-control {
        height: 52px;
        border-radius: 14px;
        border: 1px solid #f0d7e7;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: none;
        margin-bottom: 15px;
    }

    .submit-btn {
        width: 100%;
        margin-top: 15px;
        background: linear-gradient(90deg,
                #a0c4ff,
                #cdb4ff);

        border: none;
        color: #333;
        padding: 14px;
        border-radius: 14px;
        font-weight: 700;
        transition: 0.4s ease;
    }

    .submit-btn:hover {
        transform: translateY(-3px) scale(1.01);
    }


    .info-box {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
        align-items: flex-start;
    }

    .info-icon {
        width: 55px;
        height: 55px;
        background: rgba(255, 255, 255, 0.55);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff6b9d;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .social-icons a {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.55);
        color: #555;
        border-radius: 50%;
        margin-right: 10px;
        transition: 0.3s;
        text-decoration: none;
    }

    /* UPLOAD LABEL */

    .upload-label {
        display: block;

        margin-bottom: 10px;

        font-weight: 600;

        color: #444;
    }

    /* MAIN BOX */

    .upload-box {

        width: 100%;

        min-height: 58px;

        border-radius: 18px;

        border: 1.5px dashed #d9b6cb;

        background: rgba(255, 255, 255, 0.82);

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 15px;

        padding: 12px 18px;

        cursor: pointer;

        transition: .35s ease;

        overflow: hidden;
    }

    /* HOVER */

    .upload-box:hover {

        border-color: #c58fb0;

        background: #fff;

        transform: translateY(-2px);
    }

    /* LEFT SIDE */

    .upload-left {

        display: flex;

        align-items: center;

        gap: 10px;

        background: linear-gradient(135deg,
                #ffe3f1,
                #f4e7ff);

        padding: 10px 18px;

        border-radius: 14px;

        color: #6b2f55;

        font-weight: 600;

        flex-shrink: 0;
    }

    /* ICON */

    .upload-left i {

        font-size: 18px;
    }

    /* FILE NAME */

    #fileName {

        margin: 0;

        color: #777;

        font-size: 14px;

        white-space: nowrap;

        overflow: hidden;

        text-overflow: ellipsis;
    }

    .social-icons a:hover {
        background: #ffffff;
        transform: translateY(-3px);
    }

    @media (max-width:768px){
        .info-icon {
          width: 40px;
          height: 40px;
        }
    }