

  /* Breadcrumbs css starts */
    #shopBanner .shopBnr{
    background-image: url(../image/contactBanner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    
}
    /* Breadcrumbs css ends */
/* form part start */
/* ── Section Wrapper ── */
  .contact-section {
    padding: 5rem 1.5rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
  }
 
  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp .5s .05s forwards;
  }
 
  /* ── Grid ── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 0;
  }
 
  @media (max-width: 700px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-section { padding: 3rem 1rem 2.5rem; }
  }
 
  /* ── Info Card ── */
  .info-card {
    background: #fff;
    border: 0.5px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
 
  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .55s forwards;
  }
  .info-item:nth-child(1) { animation-delay: .15s; }
  .info-item:nth-child(3) { animation-delay: .28s; }
  .info-item:nth-child(5) { animation-delay: .41s; }
 
  .icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 22px;
    margin-bottom: .75rem;
    transition: background .25s, color .25s, transform .25s, box-shadow .25s;
  }
  .info-item:hover .icon-circle {
    background: var(--green);
    color: #fff;
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(0,166,81,.25);
  }
 
  .info-text {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.65;
  }
  .info-text a { color: var(--text-mid); text-decoration: none; }
  .info-text a:hover { color: var(--green); }
 
  .info-divider {
    height: 0.5px;
    background: var(--border);
    width: 60%;
    margin: 0 auto;
  }
 
  /* ── Form Card ── */
  .form-card {
    background: #fff;
    border: 0.5px solid var(--border);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .55s .08s forwards;
  }
 
  .form-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .35rem;
  }
  .form-title span { color: var(--green); }
 
  .form-subtitle {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.6rem;
  }
 
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin-bottom: .85rem;
  }
  @media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
 
  .form-group {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: .85rem;
  }
 
  .form-group label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--text-light);
  }
 
  .form-input,
  .form-textarea {
    width: 100%;
    padding: .7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--topbar-bg);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    font-family: inherit;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: #bbb; }
  .form-input:focus, .form-textarea:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3.5px rgba(0,166,81,.13);
  }
  .form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
  }
  .is-invalid-custom {
  border: 1.5px solid #e74c3c !important;
  background: #fff8f8 !important;
}
 
.field-error {
  color: #e74c3c;
  font-size: 0.82rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
}
 
.alert-success {
  background: #f0fff4;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 12px 16px;
}
 
 
  /* ── Send Button ── */
  .btn-send {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .8rem 2rem;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background .22s, transform .15s, box-shadow .22s;
    box-shadow: 0 4px 18px rgba(0,166,81,.28);
    position: relative;
    overflow: hidden;
  }
  .btn-send::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.15);
    transform: translateX(-100%);
    transition: transform .35s;
    border-radius: inherit;
  }
  .btn-send:hover::after { transform: translateX(0); }
  .btn-send:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,166,81,.33);
  }
  .btn-send:active { transform: scale(.97); }
  .btn-send i { font-size: 15px; }
 
  .success-msg {
    display: none;
    align-items: center;
    gap: .45rem;
    color: var(--green);
    font-size: 13.5px;
    font-weight: 500;
    margin-top: .75rem;
  }
  .success-msg.show { display: flex; animation: fadeUp .3s forwards; }
 
/* form part */


   