  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .cl-body {

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 0rem 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s ease;
  }

  /* Light Mode - when body has .light class */
  body.light .cl-body {
    background: #f5f7fa;
  }

  /* ========== TB-CL HUB CONTAINER ========== */
  .tb-cl-hub {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 30, 47, 0.12);
    min-height: 580px;
    margin: 0px 0 20px;
    isolation: isolate;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  body.light .tb-cl-hub {
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(10, 30, 47, 0.12);
  }

  /* decorative soft elements */
  .tb-cl-bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
    background: #000;
    transition: background 0.3s ease, opacity 0.3s ease;
  }

  body.light .tb-cl-bg-shape {
    background: #000;
    opacity: 0.08;
  }

  .tb-cl-shape-1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -120px;
  }

  .tb-cl-shape-2 {
    width: 280px;
    height: 280px;
    bottom: -90px;
    left: -90px;
  }

  .tb-cl-dots-pattern {
    position: absolute;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(#000 2px, transparent 2px);
    background-size: 18px 18px;
    top: 80px;
    right: 80px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
    transition: background-image 0.3s ease, opacity 0.3s ease;
  }

  body.light .tb-cl-dots-pattern {
    background-image: radial-gradient(#000 2px, transparent 2px);
    opacity: 0.2;
  }

  /* ========== LEFT VISUAL PANEL ========== */
  .tb-cl-visual-panel {
    position: relative;
    background: #161616;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 2;
    border-radius: 32px;
    color: #ffffff;
    transition: background 0.3s ease;
  }

  body.light .tb-cl-visual-panel {
    background: #000;
  }

  .tb-cl-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(10,30,47,0.2) 100%);
    z-index: 0;
  }

  .tb-cl-visual-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    width: 100%;
  }

  .tb-cl-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .tb-cl-pulse-dot {
    width: 9px;
    height: 9px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: tbClPulse 1.8s infinite;
  }

  .tb-cl-visual-heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.5px;
  }

  .tb-cl-highlight {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    padding: 0 10px;
    border-radius: 8px;
    font-weight: 700;
    box-decoration-break: clone;
  }

  /* Location Block */
  .tb-cl-location-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 18px 20px;
    border-radius: 20px;
    margin-bottom: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .tb-cl-location-icon {
    font-size: 1.8rem;
    color: #ffffff;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .tb-cl-location-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .tb-cl-location-details strong {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #ffffff;
  }

  .tb-cl-location-details span {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
  }

  /* Quick Pills */
  .tb-cl-quick-pills {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .tb-cl-pill-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    padding: 14px 20px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
  }

  .tb-cl-pill-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateX(8px);
  }

  .tb-cl-pill-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    font-size: 1.2rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }

  .tb-cl-pill-info small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }

  .tb-cl-pill-info .contact-list {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .tb-cl-pill-info .contact-list span {
    display: block;
    line-height: 1.4;
  }

  /* ========== RIGHT ACTION PANEL ========== */
  .tb-cl-action-panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: background 0.3s ease;
  }

  body.light .tb-cl-action-panel {
    background: #ffffff;
  }

  .tb-cl-tab-bar {
    display: flex;
    border-bottom: 1px solid #edf0f3;
    padding: 0 28px;
    background: #ffffff;
    transition: background 0.3s, border-color 0.3s;
  }

  body.light .tb-cl-tab-bar {
    background: #ffffff;
    border-bottom: 1px solid #edf0f3;
  }

  .tb-cl-tab {
    flex: 1;
    padding: 18px 16px;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5f6b7a;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    letter-spacing: 0.3px;
  }

  body.light .tb-cl-tab {
    color: #5f6b7a;
  }

  .tb-cl-tab.active {
    color: #000;
    border-bottom-color: #000;
    background: #ffffff;
  }

  body.light .tb-cl-tab.active {
    color: #000;
    border-bottom-color: #000;
    background: #fff;
  }

  .tb-cl-tab:hover:not(.active) {
    color: #000;
    background: #f8fafc;
  }

  body.light .tb-cl-tab:hover:not(.active) {
    color: #000;
    background: #f8fafc;
  }

  .tb-cl-tab-content {
    flex: 1;
    padding: 28px;
    overflow-y: auto;
  }

  .tb-cl-tab-panel {
    display: none;
    animation: tbClFade 0.35s ease;
  }

  .tb-cl-tab-panel.active {
    display: block;
  }

  /* FORM STYLES */
  .tb-cl-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .tb-cl-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .tb-cl-input-wrap > i {
    position: absolute;
    left: 16px;
    color: #7c8894;
    font-size: 0.9rem;
    z-index: 1;
    transition: 0.2s;
    pointer-events: none;
  }

  body.light .tb-cl-input-wrap > i {
    color: #7c8894;
  }

  .tb-cl-input-wrap input,
  .tb-cl-input-wrap select,
  .tb-cl-input-wrap textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: #f9fbfd;
    transition: 0.25s ease;
    outline: none;
    color: #000;
    resize: none;
    font-weight: 500;
  }

  body.light .tb-cl-input-wrap input,
  body.light .tb-cl-input-wrap textarea {
    background: #f9fbfd;
    border-color: #e2e8f0;
    color: #000;
  }

  .tb-cl-input-wrap textarea {
    padding-top: 14px;
    min-height: 105px;
  }

  .tb-cl-input-wrap input:focus,
  .tb-cl-input-wrap textarea:focus {
    border-color: #000;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(10, 30, 47, 0.06);
  }

  body.light .tb-cl-input-wrap input:focus,
  body.light .tb-cl-input-wrap textarea:focus {
    border-color: #000;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(10, 30, 47, 0.06);
  }

  .tb-cl-input-wrap:focus-within > i {
    color: #000;
  }

  body.light .tb-cl-input-wrap:focus-within > i {
    color: #000;
  }

  .tb-cl-input-wrap input::placeholder,
  .tb-cl-input-wrap textarea::placeholder {
    color: #a1afbc;
    font-weight: 400;
  }

  body.light .tb-cl-input-wrap input::placeholder,
  body.light .tb-cl-input-wrap textarea::placeholder {
    color: #a1afbc;
  }

  .tb-cl-input-r {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  /* Captcha */
  .tb-cl-captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .tb-cl-captcha-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 2px dashed #000;
    padding: 10px 18px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    user-select: none;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
  }

  body.light .tb-cl-captcha-badge {
    background: #ffffff;
    border-color: #000;
    color: #000;
  }

  .tb-cl-captcha-num {
    color: #000;
  }

  body.light .tb-cl-captcha-num {
    color: #000;
  }

  .tb-cl-captcha-op {
    color: #5f6b7a;
  }

  body.light .tb-cl-captcha-op {
    color: #5f6b7a;
  }

  .tb-cl-captcha-q {
    color: #000;
    font-weight: 700;
  }

  body.light .tb-cl-captcha-q {
    color: #000;
  }

  .tb-cl-captcha-input {
    flex: 1;
    min-width: 110px;
  }

  .tb-cl-captcha-input input {
    padding-left: 42px !important;
    text-align: center;
    font-weight: 700;
    letter-spacing: 3px;
  }

  .tb-cl-captcha-reload {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: #000;
    font-size: 1rem;
  }

  body.light .tb-cl-captcha-reload {
    background: #ffffff;
    border-color: #e2e8f0;
    color: #000;
  }

  .tb-cl-captcha-reload:hover {
    background: #000;
    border-color: #000;
    color: #ffffff;
    transform: rotate(180deg);
  }

  body.light .tb-cl-captcha-reload:hover {
    background: #000;
    border-color: #000;
    color: #ffffff;
  }

  /* Submit */
  .tb-cl-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 8px 18px rgba(10,30,47,0.2);
  }

  body.light .tb-cl-submit-btn {
    background: #000;
    box-shadow: 0 8px 18px rgba(10,30,47,0.2);
  }

  .tb-cl-submit-btn:hover {
    background: #12324a;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(10,30,47,0.3);
  }

  body.light .tb-cl-submit-btn:hover {
    background: #12324a;
    box-shadow: 0 15px 25px rgba(10,30,47,0.3);
  }

  .tb-cl-submit-btn i {
    transition: 0.2s;
  }

  .tb-cl-submit-btn:hover i {
    transform: translateX(5px);
  }

  /* MAP */
  .tb-cl-map-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
  }

  .tb-cl-map-card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    min-height: 280px;
    background: #f0f4f8;
    transition: border-color 0.3s, background 0.3s;
  }

  body.light .tb-cl-map-card {
    border-color: #e2e8f0;
    background: #f0f4f8;
  }

  .tb-cl-address-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 18px;
    margin-top: 14px;
    border: 1px solid rgba(10,30,47,0.08);
    transition: background 0.3s, border-color 0.3s;
  }

  body.light .tb-cl-address-strip {
    background: #f8fafc;
    border-color: rgba(10,30,47,0.08);
  }

  .tb-cl-address-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: background 0.3s;
  }

  body.light .tb-cl-address-dot {
    background: #000;
  }

  .tb-cl-address-text strong {
    display: block;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 4px;
    transition: color 0.3s;
  }

  body.light .tb-cl-address-text strong {
    color: #000;
  }

  .tb-cl-address-text span {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.5;
    transition: color 0.3s;
  }

  body.light .tb-cl-address-text span {
    color: #475569;
  }

  /* TOAST */
  .tb-cl-toast-new {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 50px rgba(10,30,47,0.18);
    z-index: 9999;
    transform: translateY(130px);
    opacity: 0;
    transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    border-left: 5px solid #000;
    min-width: 310px;
  }

  body.light .tb-cl-toast-new {
    background: #ffffff;
    border-left-color: #000;
    box-shadow: 0 20px 50px rgba(10,30,47,0.18);
  }

  .tb-cl-toast-new.error {
    border-left-color: #d32f2f;
  }

  .tb-cl-toast-new.show {
    transform: translateY(0);
    opacity: 1;
  }

  .tb-cl-toast-icon {
    font-size: 1.7rem;
    color: #000;
    transition: color 0.3s;
  }

  body.light .tb-cl-toast-icon {
    color: #000;
  }

  .tb-cl-toast-new.error .tb-cl-toast-icon {
    color: #d32f2f;
  }

  .tb-cl-toast-body strong {
    display: block;
    font-size: 0.85rem;
    color: #000;
    transition: color 0.3s;
  }

  body.light .tb-cl-toast-body strong {
    color: #000;
  }

  .tb-cl-toast-body span {
    font-size: 0.8rem;
    color: #475569;
    transition: color 0.3s;
  }

  body.light .tb-cl-toast-body span {
    color: #475569;
  }

  .tb-cl-toast-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #5f6b7a;
    margin-left: auto;
  }

  body.light .tb-cl-toast-close {
    color: #5f6b7a;
  }

  @keyframes tbClFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes tbClPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
  }

  @media (max-width: 900px) {
    .tb-cl-hub {
      grid-template-columns: 1fr;
      min-height: auto;
      border-radius: 28px;
    }
    .tb-cl-visual-panel {
      padding: 40px 30px;
      border-radius: 28px 28px 0 0;
    }
    .tb-cl-tab-content {
      padding: 22px;
    }
    .tb-cl-input-row {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 576px) {
    .tb-cl-visual-panel {
      padding: 30px 20px;
    }
    .tb-cl-toast-new {
      left: 16px;
      right: 16px;
      bottom: 16px;
      min-width: auto;
    }
    .tb-cl-visual-heading {
  font-size: 22px;
  }
  }

  @media screen and (min-width: 1800px) and (max-width: 1900px) {
  .cl-body {
     min-height: 75vh;
  }
  .container{
      max-width : 1600px !important;
  }
  }
  
  
  
  
  @media only screen and (min-width: 1200px) and (max-width: 1319px) {
.tb-cl-hub {
  position: relative;
  width: 100%;
  max-width: 1000px;
}
.cl-body {
 
  padding: 1rem 1rem 2rem !important;
  
  }
  .br-tr-service-name {
  margin: 0;
  color: #fff;
  font-size: 33px !important;
  }
  .br-tr-breadcrumb {

  min-height: 85px !important;
  }
  
  }
  
  
  


.br-tr-breadcrumb {
  position: relative;
  width: 100%;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background: radial-gradient(circle at center, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 30%, transparent 65%), linear-gradient(135deg, #070707 0%, #141414 50%, #080808 100%);

  border-radius: 20px;

  border: 1px solid #4b4b4b;

}
.br-tr-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 45px 45px;
}

.br-tr-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 10%,
        rgba(0,0,0,0.25) 55%,
        rgba(0,0,0,0.75) 100%
    );
}

.br-tr-breadcrumb-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.br-tr-service-name {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: capitalize;
}

.br-tr-line {
    width: 90px;
    height: 1px;
    display: block;
}

.br-tr-line-left {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.7)
    );
}

.br-tr-line-right {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.7),
        transparent
    );
}

.br-tr-service-name {
    transition: all 0.3s ease;
}

.br-tr-breadcrumb:hover .br-tr-service-name {
    letter-spacing: 2px;
}


/* Tablet */
@media (max-width: 991px) {
    .br-tr-breadcrumb {
        min-height: 210px;
    }

    .br-tr-service-name {
        font-size: 36px;
    }

    .br-tr-line {
        width: 60px;
    }

    .br-tr-breadcrumb-content {
        gap: 20px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .br-tr-breadcrumb {
        min-height: 180px;
    }

    .br-tr-breadcrumb-content {
        gap: 15px;
    }

    .br-tr-service-name {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .br-tr-line {
        width: 35px;
    }
}


/* Small Mobile */
@media (max-width: 480px) {
    .br-tr-breadcrumb {
        min-height: 75px;
    }

    .br-tr-breadcrumb-content {
        gap: 10px;
    }

    .br-tr-service-name {
        font-size: 16px;
        white-space: normal;
    }

    .br-tr-line {
        width: 25px;
    }
    .tb-cl-visual-content {

  max-width: 260px;
    }
      .tb-cl-tab-content {
 
    width: 290px;
  }
  .g-recaptcha{

transform:scale(.75);
transform-origin:left top;

}
.gg{
    margin-bottom : 0px !important;
}
.tb-cl-tab {

  padding: 18px 15px;
}

}