    
.slider__bg {
    min-height: 780px;
 
}

.row {
   
    margin-right: 0px;
    margin-left: 0px;
}
.contact__area-two {
    background: #000000;
    position: relative;
    z-index: 1;
}

.contact__form-two button {
    
    background: #ffffff;
   
}

.contact__form-two button {
    width: 100%;
    background: #a6a4a5;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    color: #000000;
    padding: 16px 20px;
}
   .tg-hover-btn::before {
    background: #999999;
}

.contact__form-two button:hover {
    background: var(--tg-color-gray-1);
    color: #000000;
}
.tg-btn::before {
  
    background: #ffffff;
}
.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;      /* Black background */
  color: #fff;                /* White text */
  font-weight: bold;          /* Bold text */
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 50px;        /* Pill shape */
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #333;     /* Darker shade on hover */
  transform: translateX(3px); /* Slight move on hover */
}

.custom-btn::after {
  content: "→";              /* Arrow symbol */
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.custom-btn:hover::after {
  transform: translateX(5px); /* Animate arrow on hover */
}
.services__item-two {
    background: var(--tg-color-white-default);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    padding: 50px 45px;
    /* min-height: 737px; */
    
}

.tg-btn:hover {
    color: #000000;
}
.tg-btn:hover {
    color: Black;
}
.contact__form-two {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.form-grp {
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

textarea {
  min-height: 150px;
  resize: none;
}

/* ✅ Full-width button aligned */
.btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: #999999;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
  box-sizing: border-box;
  display: block;
}

.btn-submit:hover {
  background: #888888;
}




 /* ====== Scoped styles ====== */
    :root {
      --accent: #999999; /* neutral gray */
      --card-bg: #ffffff;
      --text: #111827;
      --muted: #6b7280;
      --radius: 14px;
    }

    .contact-section {
      padding: 48px 20px;
      background: #f9f9f9;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }

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

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      align-items: stretch;
    }

    @media (max-width: 980px) {
      .contact-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .contact-grid { grid-template-columns: 1fr; }
    }

    .contact-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 26px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      box-shadow: 0 12px 30px rgba(34, 30, 50, 0.06);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .contact-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(34,30,50,0.12); }

    .card-icon {
      width: 64px;
      height: 64px;
      border-radius: 12px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 64px;
      background: #f0f0f0;
    }
    .card-icon svg { width: 28px; height: 28px; stroke: var(--accent); stroke-width: 2; fill: none; }

    .card-title {
      margin: 0;
      font-size: 18px;
      color: var(--text);
      font-weight: 700;
      letter-spacing: -0.2px;
    }

    .card-text {
      margin: 6px 0 0;
      color: var(--muted);
      line-height: 1.6;
      font-size: 14px;
    }

    .card-action {
      margin-top: 10px;
      display: inline-block;
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: color 0.2s;
    }

    .card-action:hover {
      color: #666666;
    }
    
    
    
