.banner-bg {
  background-color: #f8c16d2b;
}

.banner-quote {
  p {
    font-size: 38px;
    font-weight: 600;
    color: #3d4852;
    line-height: 50px;
    margin-bottom: 40px;
  }
  a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 30px;
    padding: 12px 50px;
    border-radius: 4px;
    background-color: #bf7507;
    border: 1px solid #bf7507;
    transition: all 0.3s ease;
    &:hover {
      background-color: transparent;
      color: #bf7507;
    }
  }
}

.banner-quote {
  height: auto;
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .banner-quote {
    padding: 40px 0 20px;
    text-align: center;
  }
  .banner-quote p {
    font-size: 26px;
    margin-bottom: 30px;
    line-height: 40px;
  }
  .banner-quote a {
    font-size: 16px;
    padding: 10px 40px;
  }
}

.service-card {
  background-color: #f9fbfd;
  border: 1px solid #ebeffc;
  border-left: none;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:first-child {
  border-left: 1px solid #ebeffc;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.service-card h5 {
  font-weight: 700;
}

.service-card p {
  color: #333;
  font-size: 15px;
}

.highlight {
  color: var(--secondary);
  font-weight: 700;
}

.specialty-list {
  list-style: none;
  padding: 0;
  column-count: 2;
  column-gap: 2rem;
}

.specialty-list li {
  margin-bottom: 10px;
  font-weight: 600;
}

.specialty-list i {
  margin-right: 8px;
  color: #000;
}

@media (max-width: 768px) {
  .specialty-list {
    column-count: 1;
  }
}

/* doc profile */

.doc-pro-desc p {
  font-size: 18px;
}

.overlay-content {
  margin-top: 15px;
  h3 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
  }
  p {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
  }
}

/* service box   */

.service-bg {
  background-color: #f4f4f3;
  background-image: url(https://drzubairsorathia.com/wp-content/uploads/2024/10/Untitled-design-6.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;

  padding-top: 60px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .service-bg {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.service-box {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.ser-icon img {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  object-position: center;
  /* filter: brightness(1) invert(1); */
}

.ser-text {
  padding: 26px 30px;
  text-align: center;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: all 0.3s ease;
  h5 {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
  }
  p {
    font-size: 16px;
    color: var(--black);
    margin: 0 !important;
    height: 0;
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
  }
}

.service-box:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px) scale(1.025);
}

.service-box:hover .ser-text p {
  height: 50px;
}

/* contact form  */

.contact-form-ref {
  padding: 40px 0;
}

.contact-left {
  background: linear-gradient(325deg, #bf7507 0%, #f8c06d 100%);
  padding: 41px 36px;
  border-radius: 5px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 600px) {
  .contact-left {
    padding: 30px 20px;
    margin: 40px 0 20px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.form-group:nth-last-child(1) {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  .form-group:nth-last-child(1) {
    margin-bottom: 15px;
  }
}

.form-group:nth-last-child(2) {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #fff;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .form-group label {
    font-size: 12px;
  }
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

.form-group button {
  width: 100%;
  height: 48px;
  background: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  border: 1px solid var(--secondary);
  letter-spacing: -0.011em;
  color: var(--secondary);
  margin-top: 15px;
  transition: background 0.5s;
  cursor: pointer;
}

.form-group button:hover {
  background: var(--secondary);
  color: #fff;
}

.inline-group {
  display: flex;
  gap: 10px;
}

@media (max-width: 600px) {
  .inline-group {
    display: block;
  }
}

.inline-group .form-group {
  flex: 1;
}

.jt-1 input {
  width: 50%;
  margin-left: 15px;
}

.breadcrumb {
  padding: 100px 0;
  background-image: url(../images/banner-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}

.sar-b {
  background-image: url(../images/ser-banner.png);
}

.breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.breadcrumb-label {
  position: relative;
}

.breadcrumb-label h1 {
  font-size: 42px;
  color: #fff;
}

@media (max-width: 600px) {
  .breadcrumb {
  padding: 60px 0;
  }

  .breadcrumb-label h1 {
    font-size: 30px;
  }
}

.breadcrumb-label ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.breadcrumb-label ul li {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  a {
    color: #fff;
    text-decoration: none;
  }
}



/* service sidebar  */

.service-img img {
  aspect-ratio: 16/8;
  border-radius: 6px;
  margin-bottom: 20px;
  width: 100%;
  border: 2px solid #dce2f4;
  object-fit: cover;
  object-position: center;
}

.service-text {
  margin-bottom: 30px;
}

.service-text h3 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.service-text h4 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

strong {
  font-weight: 600;
}

.service-text p {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.service-text {
  ul li,ol li {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
  }
}

.sidebar-profile {
  margin-bottom: 20px;
  h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    padding: 10px 15px;
    background: #fff6ea;
    border-bottom: 3px solid #8e5500;
  }
}
.sidebar-profile img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.sidebar-profile p {
  font-size: 17px;
  color: #000;
  text-align: center;
  font-weight: 500;
}

.sidebar-links {
  margin-bottom: 20px;
}

.sidebar-links h4,
.contact-box2 h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  padding: 10px 15px;
  background: #fff6ea;
  border-bottom: 3px solid #8e5500;
  margin-bottom: 0;
}

.contact-box2 h4 {
  margin-bottom: 10px;
}

.contact-box2 {
  margin-bottom: 20px;

  i {
    font-size: 20px;
    color: #bf7507;
    margin-right: 10px;
  }
  p {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    padding: 0 10px;
    margin-bottom: 10px;
    a {
      color: #000;
      text-decoration: none;
    }
  }
}

.sidebar-links {
  border: 1px solid #ebeffc;
}

.sidebar-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links ul li {
  font-size: 18px;
  color: #000;
  font-weight: 500;
}

.sidebar-links ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px 10px;
  border-bottom: 1px solid #ebeffc;
  transition: all 0.3s ease;
}

.sidebar-links ul li a:hover {
  background: #f8c16d2b;
  color: #000;
  border-bottom: 1px solid #8e5500;
}


@media (max-width: 600px) {
  .service-text h3 {
    font-size: 22px;
  }
  .service-text h4 {
    font-size: 18px;
  }
  .service-text p {
    font-size: 16px;
  }
  .service-text {
    ul,ol {
      padding-left: 20px;
      li {
        font-size: 16px;
      }
    }
  }
}




/* blog */

.blog-card1 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card1:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card1:hover .blog-image {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #d99633;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-body {
    padding: 20px;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-btn {
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 20px;
    color: #d99633;
    border: 1px solid #d99633;
    margin: 0;
}

.blog-btn:hover {
    background-color: #d99633;
    color: #fff;
    border-color: #d99633;
}
