/* =============================================================
   Gerow Theme — custom.css
   Custom overrides and theme-specific components
   ============================================================= */

/* -------------------------------------------------------
   Buttons: .btn_1
   ------------------------------------------------------- */
.btn_1 {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.9rem 1.5rem !important;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 2.375rem !important;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
              border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary_1 {
  color: #fff;
  background-color: #235656;
  border-color: #235656;
}
.btn-primary_1:hover {
  color: #fff;
  background-color: #193636;
  border-color: #193636;
}

.btn-outline-primary_1 {
  color: #235656;
  border-color: #235656;
  background-color: transparent;
}
.btn-outline-primary_1:hover {
  color: #fff;
  background-color: #235656;
  border-color: #235656;
}
.btn-outline-primary_1:focus,
.btn-outline-primary_1:active {
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.5);
}

/* -------------------------------------------------------
   Bootstrap .btn override
   ------------------------------------------------------- */
.btn {
  user-select: none;
  -moz-user-select: none;
  background: #235656 none repeat scroll 0 0;
  border: none;
  border-radius: 30px;
  color: var(--tg-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0;
  padding: 18px 18px 18px 22px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #36b8b8;
  border-radius: 30px;
  z-index: -1;
  transition: all 0.3s ease 0s;
}

/* -------------------------------------------------------
   Link button
   ------------------------------------------------------- */
.btn-link_1 {
  font-weight: 400;
  font-size: 1rem !important;
  color: #235656;
  text-decoration: none;
}
.btn-link_1:hover  { color: #267878; text-decoration: underline; }
.btn-link_1:focus  { outline: 0; box-shadow: none; }
.btn-link_1:disabled { color: #6c757d; pointer-events: none; }

/* -------------------------------------------------------
   Form controls: .form-control_1
   ------------------------------------------------------- */
.form-control_1 {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control_1:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control_1::placeholder { color: #6c757d; opacity: 1; }
.form-control_1:disabled,
.form-control_1[readonly] { background-color: #e9ecef; opacity: 1; }

.form-control-lg_1 {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}
.form-control-sm_1 {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

/* -------------------------------------------------------
   Breadcrumb background overlay
   Fixed: added position:relative so ::before (position:absolute) renders correctly
   ------------------------------------------------------- */
.breadcrumb-bg {
  position: relative; /* REQUIRED for ::before overlay */
}
.breadcrumb-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0d565a;
  opacity: 0.85;
  z-index: -1; /* sit behind text but above background-image */
}

/* -------------------------------------------------------
   Header top bar
   ------------------------------------------------------- */
.heder-top-wrap {
  background: #0d565a;
  overflow: hidden;
  padding: 9px 0;
}

/* -------------------------------------------------------
   Footer newsletter button
   ------------------------------------------------------- */
.footer-newsletter form button {
  border: none;
  background: #235656;
  color: var(--tg-white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 30px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 23px;
  height: 46px;
}

/* -------------------------------------------------------
   Footer widget title underline
   ------------------------------------------------------- */
.footer-widget .fw-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 4px;
  border-radius: 4px;
  background: #4a8e8d;
}

/* -------------------------------------------------------
   Scroll to top button
   ------------------------------------------------------- */
.scroll-top {
  width: 35px;
  height: 35px;
  line-height: 35px;
  position: fixed;
  bottom: -10%;
  right: 30px;
  font-size: var(--tg-body-font-size);
  border-radius: 6px;
  z-index: 99;
  color: var(--tg-white);
  text-align: center;
  cursor: pointer;
  background: #235656;
  transition: 1s ease;
  border: none;
}

/* -------------------------------------------------------
   Typography
   ------------------------------------------------------- */
a, button { color: #ff7a00; outline: medium none; text-decoration: none; }

p {
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-body-font-weight);
  line-height: var(--tg-body-line-height);
  color: var(--tg-paragraph-color);
  text-transform: none;
  margin-bottom: 15px;
}

.text-sm { font-size: 9pt; }

/* -------------------------------------------------------
   Selection highlight
   ------------------------------------------------------- */
::selection {
  background-color: #21565b !important;
  color: #ffffff;
}

/* -------------------------------------------------------
   About / banner image
   ------------------------------------------------------- */
.banner-img-three img.img-two {
  border-radius: 10px;
  left: 6%;
  bottom: 24%;
}

/* -------------------------------------------------------
   Features card hover
   ------------------------------------------------------- */
.features-item-three:hover {
  background: #36b8b8;
  border-color: #36b8b8;
  box-shadow: 0px 20px 50px rgba(3, 74, 218, 0.29);
}

/* -------------------------------------------------------
   Image hover zoom
   ------------------------------------------------------- */
.image-link { display: block; overflow: hidden; border-radius: 1rem; }
.image-link img { transition: transform 0.3s ease-in-out; }
.image-link img:hover { transform: scale(1.1); }

/* -------------------------------------------------------
   Service icon shapes
   ------------------------------------------------------- */
.service-icon-red {
  margin: -70px auto 20px;
  width: 80px;
  height: 80px;
  border-radius: 45% 55% 60% 40% / 40% 45% 55% 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  background: linear-gradient(58deg, rgba(235,153,47,1) 0%, rgba(156,3,3,1) 74%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bg-grandient-red {
  background: linear-gradient(58deg, rgba(235,153,47,1) 0%, rgba(156,3,3,1) 74%);
}


