

  /* Breadcrumbs css starts */
    #shopBanner .shopBnr{
    background-image: url(../image/Header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 400px;
    border-radius: 10px ;
    margin-bottom: 20px;
    margin-top: 30px;
}
    /* 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;
  }
 
  /* ── 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; }
 
  /* ── Map ── */
  .map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.map-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.map-topbar-left i {
    font-size: 1.6rem;
}

.office-address-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.address-icon {
    width: 55px;
    height: 55px;
    background: #e8f5e9;
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.address-content h5 {
    margin-bottom: 8px;
    color: #222;
}

.address-content p {
    margin: 0;
    line-height: 1.5;
    color: #444;
}

.map-frame-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.map-frame-wrap iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .map-frame-wrap iframe {
        height: 380px;
    }
    
    .map-topbar {
        justify-content: center;
        text-align: center;
    }
}
  /* ── Animations ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
/* form part */


   