/*fonts*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*Global*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  /* width: 100%;
  height: 100%; */

  scroll-padding-top: 80px;
  /* font-family: "Lato", sans-serif; */
}

body {
  overflow-x: hidden;
  /* font-family: "Poppins", sans-serif; */
  font-family: "Noto Sans", sans-serif;
}



:root {
  --color1: #ffe0bf;
  --color2: #f1f0f5;
  --color3: #fff8e0;
  --color4: #f2f9ff;
  --color5: #fae9e5;
  --color6: #fffaea;
  --color7: #d6f1cc;
  --color8: #fdebd8;
}

.font-lato {
  font-family: "Lato", sans-serif;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.font-mont {
  font-family: "Montserrat", sans-serif;
}

.font-dm {
  font-family: "DM Sans", sans-serif;
}

/*****************
     Home 
*****************/
/*header*/

.topbar-bg {
  background-color: var(--color1);
  height: auto;
}

.social-img {
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  margin: 10px 0px;
}

.social-img:hover {
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  text-decoration: none;
}

.social-img i {
  font-size: 1.25rem;
  background: -webkit-linear-gradient(#f9dc0b, #d76a28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-img:hover i {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-paynow {
  color: #f9b233;
  border: 1px solid #f9b233;
  border-radius: 100px;
  padding: 8px 24px;
  background: white;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 16px;
  text-decoration: none;
}

.btn-paynow:hover {
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  color: white !important;
  text-decoration: none !important;
  border: 1px solid #f9b233;
}

.btn-login {
  background: linear-gradient(to bottom, #f9dc0b, #d17e00);
  color: white;
  border-radius: 20px;
  padding: 12px 44px;
  font-weight: 400;
  transition: background 0.3s ease;
  font-size: 1.125rem;
  line-height: 16px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  border: 1px solid #f9b233;
}

.btn-login:hover {
  border: 1px solid #f9b233;
  border-radius: 100px;
  text-decoration: none;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.divider-vertical {
  border-left: 1px solid #000;
  height: 29px;
  margin: 0 0.75rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
  font-weight: 400;
  font-size: 1.125rem;
  /* line-height: 16px; */
  color: #000;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  text-decoration: none;
  color: #d76a28;
}

/* Mega menu styles */
.dropdown-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 57%;
  background-color: white;
  padding: 2rem;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-item .container {
  max-width: 935px !important;
}

.nav-item.dropdown:hover .dropdown-mega {
  display: block;
}

.dropdown-mega .list-unstyled .dropdown-item:hover {
  text-decoration: underline;
  color: #d76a28;
}

.dropdown-mega .row>div {
  min-width: 180px;
}

/*Hero css*/
.hero-section {
  position: relative;
  min-height: 700px;
  color: white;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -2;
}

.hero-bg.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-title {
  font-weight: 800;
  font-size: 4.875rem;
  line-height: 97px;
}

.hero-highlight {
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 40px;
  color: var(--color8);
  width: 100%;
  max-width: 1253px;
}

.slider-btn {
  gap: 23rem;
  flex: 1 1 200px;
}

.slider-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.dot-large {
  width: 10px;
  height: 32px;
  border-radius: 9999px;
  background-color: #eab308;
  transition: all 0.3s ease;
}

.dot-small {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #d1d5db;
  transition: all 0.3s ease;
}

.book-btn {
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  border: 1px solid #f9b233;
  color: white;
  font-weight: 400;
  font-size: 1.125rem;
  border-radius: 20px;
  padding: 5px 7px;
  display: flex;
  align-items: center;
  height: auto;


  gap: 5px;
  width: auto;

}

.book-btn:hover,
.book-btn:focus {
  background: white;
  /* border: 3px solid #f9b233; */
  /* border-radius: 100px; */
  text-decoration: none !important;
  color: #f9b233 !important;
}

.form-select,
.form-control {
  border-radius: 9999px;
  border: 1px solid #797979;
  padding-left: 1rem;
  padding-right: 2.5rem;
  color: #797979;
  font-size: 1.125rem;
  height: 2.75rem;
}

.form-select:focus,
.form-control:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 0 0.25rem rgb(251 191 36 / 0.5);
  outline: none;
  color: #374151;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25em 1.25em;
  padding-right: 3rem;
}

.form-label {
  font-weight: 700;
  font-size: 1.125rem;
  color: #000;
  margin-bottom: 0.25rem;
}

.insurance-card {
  border-radius: 1rem;
  box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background-color: white;
  display: flex;
  /* flex-direction: column; */
  margin-top: -100px;
}

.personal-insurance {
  flex: 1;
  background: url("../img/lines-bg.webp");
  /* background: url('../img/banners/banner-background.png'); */
  background-size: cover;
  background-position: bottom;

  /* box-shadow: 0px 4px 4px 0px #00000040; */
}

.business-insurance {
  background-image: url("../img/quote-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.business-insurance p {
  font-size: 1.5rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.business-insurance h4 {
  color: #5f2e0d;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0;
}

.title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 27.04%;
  margin-bottom: 1.5rem;
}

.form-title {
  font-weight: 700;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: #494949;
  line-height: 27.04%;
}

/* Featured services css*/
.service-title {
  font-weight: 500;
  width: 70%;
  text-align: center;
  margin: auto;
}

.service-subtitle {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 100%;
}

.service-view {
  cursor: pointer;
  user-select: none;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: end;
  margin-top: -40px;
  padding-right: 30px;
  font-size: 20px;
}

/* .card-custom {
  border-radius: 1rem;
  height: 215px;
  position: relative;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18%;
  margin: 10px;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
} */


.card-1 {
  background-color: #f1f0f5;
}

.card-2 {
  background-color: #fff8e0;

}

.card-5 {
  background-color: #fffaea;
}

.card-3 {
  background-color: #f2f9ff;
}

.card-4 {
  background-color: #fae9e5;
}

.btn-circle {
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 0.875rem;
  border: 1px solid #d9862a;
  color: #d9862a;
  display: flex;
  text-decoration: none !important;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;

}

.btn-circle:hover {
  background-color: #d9862a;
  text-decoration: none !important;
  color: white;
}

.btn-circle i {
  text-decoration: none !important;
}

.card-custom .image-content a:hover {
  text-decoration: none !important;
}

.card-img {
  /* position: absolute;
  bottom: 0.75rem;
  right: 0.75rem; */
  width: 5rem;
  user-select: none;
  pointer-events: none;
  transform: scaleX(-1);
}

/* .card-title {
  font-weight: 600;
  font-size: 1.438rem;
  line-height: 100%;
} */

.card-content {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 110%;
  color: #515151;
}

/* Insurance Adavantage Feature css*/
.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid orange;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28) 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  padding: 1rem;
}

.box-shadow-layer {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 0.25rem;
  z-index: -1;
}

.top-left-layer {
  top: -36px;
  left: 20px;
  background-color: #e1f4ff;
}

.bottom-right-layer {
  bottom: -36px;
  right: 20px;
  background-color: #d6f1cc;
}

.feature-title {
  font-weight: 500;
}

.feature-desc {
  font-weight: 400;
  font-size: 1.063rem;
  line-height: 33px;
  color: #737373;
}

.feature-subtitle {
  font-weight: 700;
  font-size: 1rem;
  line-height: 24px;
}

.feature-desc1 {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
}

.feature1 {
  background-color: #fae9e5;
  border-radius: 25px;
}

.feature2,
.feature3 {
  border-radius: 25px;
  box-shadow: 0px 0px 4px 0px #00000040;
}

.feature1:hover,
.feature2:hover,
.feature3:hover {
  background-color: #fae9e5;
}

/*Work steps css*/
.work-title {
  font-weight: 500;
  /* font-size: 3.75rem; */
}

.work-subtitle {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 100%;
  text-align: center;
}

.work-step {
  position: relative;
  margin: 0 1rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-step .step-number {
  /* font-family: Arial, sans-serif; */
  font-weight: 800;
  font-size: 11.25rem;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}

.work-step.step-1 .step-number {
  color: #a7aeb0;
}

.work-step.step-2 .step-number {
  color: #68787d;
}

.work-step.step-3 .step-number {
  color: #00a99d;
}

.work-step.step-4 .step-number {
  color: #ffa800;
}

.work-step .circle {
  position: relative;
  box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.15);
  color: white;
  padding: 2rem 2rem;
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 175px;
  height: 300px;
  border-radius: 0 100% 100% 0 / 50%;
}

.work-step.step-1 .circle {
  background-color: #a3a9aa;
}

.work-step.step-2 .circle {
  background-color: #5f6b6f;
}

.work-step.step-3 .circle {
  background-color: #00a99d;
}

.work-step.step-4 .circle {
  background-color: #ffa800;
}

.work-step .circle i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.work-step .circle h3 {
  font-weight: 800;
  font-size: 1.563rem;
  line-height: 100%;
}

.work-step .circle p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 100%;
  text-align: center;
}

.circle-content {
  gap: 80px;
}

.work-section {
  background: radial-gradient(circle at bottom right, #e7c4bd 0%, #fff 40%);
  padding-bottom: 210px;
  padding-top: 80px;
}

/*Our Mission CSS*/
.mission-section {
  background: url("../img/mission-bg.webp");
  padding: 3rem 1.5rem;
}

.mission-img {
  margin-top: -177px;
  border: 15px solid white;
  border-radius: 10px;
}

.mission-text {
  font-weight: 400;
  font-size: 1.125rem;
  text-align: justify;
}

.mission-title {
  font-weight: 500;
}

/*Video section*/
.play-button {
  background-color: #ea6f2a;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.play-button:hover {
  background-color: #d65f22;
}

.play-button:active {
  background-color: #b04d1b;
}

.play-button i {
  color: white;
  font-size: 2.5rem;
  margin-left: 0.25rem;
}

.video-container {
  position: relative;
  max-width: 1380px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  height: auto;
}

.custom-video {
  width: 100%;
  height: 70vh;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}



.video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

.video-title {
  font-weight: 500;
}

.video-text {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 100%;
}

.company-video {
  background: radial-gradient(circle at top right, #fae9e5 0%, #fff 40%);
  padding-top: 60px;
  padding-bottom: 60px;
}

.slider-title {
  font-weight: 500;

}

.slider1 {
  background-color: #f4f4f4;
}

.slider2 {
  background-color: #fbfbfb;
}

.slider3 {
  background-color: #fbfbfb;
}

.slider4 {
  background-color: #fbfbfb;
}

/*Safety Compliance css*/
.safety-compliance {
  margin-top: 7rem;
}

.safety-btn {
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  /* line-height: 16px; */
  border-radius: 100px;
  padding: 7px 14px;
  border: 1px solid #f9b233;
  transition: background 0.3s ease;
  gap: 5px;
z-index: 1000;
    position: relative;
}

.safety-btn:hover,
.safety-btn:focus {
  border: 1px solid #f9b233;
  border-radius: 100px;
  text-decoration: none;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.safety-pattern {
  position: absolute;
  top: -20px;
  left: -30px !important;
  background-image: url("../img/safety-pattern.webp");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.safety-heading {
  font-weight: 500;

}

.safety-paragraph {
  font-weight: 400;
  font-size: 1.125rem;
  /* line-height: 35px; */
  text-align: justify;
}

.safety-image {
  border-radius: 20px;
  object-fit: cover;
}

/*testimonial css*/
.testimonial {
  background: url("../img/testimonial-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(242, 245, 249, 1);
  z-index: -1;
  opacity: 30%;
}

.fa-check {
  background-color: white;
  padding: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 10px;
  color: orange;
  font-size: 20px;
}

.highlight {
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* p.description {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: rgba(105, 110, 119, 1);
} */

.check-circle {
  width: 43px;
  height: 43px;
  background: white;
  border-radius: 50%;
  box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.check-circle i {
  background: -webkit-linear-gradient(#f9dc0b, #d76a28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.check-text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 26px;
}

.testimonial-card {
  position: relative;
  background: white;
  border-radius: 0 20px 20px 20px;
  box-shadow: 0 10px 60px 0px #0000000d;
  padding: 2rem 2.5rem 4rem 2.5rem;
  max-width: 550px;
  height: auto;
  margin-bottom: 2.5rem;
  overflow: visible;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: rgb(230, 101, 16);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  box-shadow: 5px 5px 10px rgb(0 0 0 / 0.05);
  z-index: 10;
}

.testimonial-card .wave-img {
  position: absolute;
  top: -21px;
  right: 0px;
  width: 282px;
  height: 73px;
  object-fit: contain;
  opacity: 10%;
}

.testimonial-card .wave-img2 {
  position: absolute;
  top: -5px;
  right: 0px;
  width: 282px;
  height: 73px;
  object-fit: contain;
  opacity: 10%;
}

.testimonial-card h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 34px;
}

.testimonial-card p {
  font-weight: 400;
  font-size: 1.125rem;
  /* max-width: 296px; */
  line-height: 30px;
  z-index: 20;
  position: relative;
}

.stars {
  color: #fbbf24;
  margin-top: 0.25rem;
  z-index: 20;
  position: relative;
}

.avatar-wrapper {
  position: absolute;
  bottom: 22px;
  right: 24px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 8px solid white;
  overflow: hidden;
  box-shadow: 0 0 15px rgb(0 0 0 / 0.1);
  z-index: 30;
  background: white;
}

.avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-label {
  margin-top: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: #fde7e1;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f1e40;
  letter-spacing: 0.1em;
  text-align: left;
  padding-left: 1.5rem;
  z-index: 10;
  position: relative;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

/* Scrollbar styling */
.scrollable {
  max-height: 400px;
  overflow-y: auto;
}

.scrollable::-webkit-scrollbar {
  width: 8px;
}

.scrollable::-webkit-scrollbar-track {
  background: white;
}

.scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f9dc0b 0%, #d76a28 100%);
  border-radius: 5px;
}

/*Insurance css*/
.insurance-top-banner {
  width: 100%;
  max-width: 1380px;
  margin: 2.5rem auto 0;
  /* border-radius: 20px; */
  border: 4px solid transparent;
  border-image: linear-gradient(to bottom, #f9dc0b, #d76a28) 1;
  border-image-outset: 1px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 2rem;
  gap: 1.5rem;
}

.insurance-top-banner img.insurance-bg-image {
  position: absolute;
  inset: 0;
  object-fit: contain;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}

.insurance-top-banner h1 {
  /* font-weight: 700; */

  position: relative;
  z-index: 1;
  letter-spacing: -0.72px;
}
  /* @media (min-width:375px)(max-width: 768px) {

} */
@media(max-width: 900px) {
.insurance-top-banner .insurance-contact {
    flex-direction: column;
}
}
.insurance-top-banner .insurance-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.insurance-top-banner .insurance-phone-icon {
  border: 2px solid #f9d71c;
  border-radius: 25px;
  padding: 14px 15px;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insurance-phone-icon i {
  background: -webkit-linear-gradient(#f9dc0b, #d76a28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.insurance-top-banner .insurance-phone-text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 26px;
  letter-spacing: -0.32px;
  margin-bottom: 0.125rem;
}

.insurance-top-banner .insurance-phone-subtext {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 18px;
  letter-spacing: -0.28px;
  margin: 0;
}

.insurance-btn-quote {
  font-weight: 700;
  font-size: 1rem;
  line-height: 26px;
  letter-spacing: -0.32px;
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  color: white;
  white-space: nowrap;
  border: none;
  background: #f9b233;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}

.insurance-contact .insurance-btn-quote:hover {
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  color: white !important;
  text-decoration: none !important;
  /* border: 1px solid #f9b233; */
}

.insurance-main-section {
  /* margin: 5rem auto 0; */
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: url("../img/form_bg1.png") no-repeat;
  background-size: cover;
  background-position: left;
}

.insurance-left-image img {
  width: 70%;
}

.insurance-main-section .insurance-left-image {
  flex: 1 1 300px;
}

.insurance-main-section .insurance-right-form {
  flex: 1 1 490px;
}

.insurance-main-section .insurance-free-quote-label {
  /* font-weight: 700; */
  font-size: 1rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #16243d;
  margin-bottom: 0.5rem;
  line-height: 26px;
}

.insurance-main-section h2 {
  /* font-weight: 700; */
  /* font-size: 2.813rem; */
  line-height: 55px;
  color: #0f172a;
  margin-bottom: 2rem;
  letter-spacing: -0.9px;
}

.insurance-tabs {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.insurance-tab-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* border-radius: 0.5rem; */
  max-width: 180px;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.1;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  border: 2px solid #e5e7eb;
  background-color: white;
  position: relative;
  user-select: none;
  white-space: normal;
  /* flex-wrap: wrap; */
  text-align: start;
}

.insurance-tab-button .insurance-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.insurance-tab-button.insurance-active {
  color: #3b4252;
  border: 2px solid transparent;
  border-image: linear-gradient(to bottom, #f9dc0b, #d76a28) 1;


}

.insurance-tab-button.insurance-active .insurance-icon {
  color: #a05a00;
}

.insurance-tab-button.insurance-active::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 22px;
  border-radius: 0 0.5rem 0.5rem 0;
  background: linear-gradient(to bottom, #f9d71c, #d46a1e);
  border-width: 5px;
  z-index: 1;

}

form .insurance-form-control,
form select {
  background-color: #f3f4f6;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #475569;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

form .insurance-form-control::placeholder,
form select::placeholder {
  color: #94a3b8;
}

form .insurance-form-control:focus,
form select:focus {
  border-color: #f9d71c;
  box-shadow: 0 0 0 3px rgba(249, 215, 28, 0.3);
  outline: none;
  background-color: #f3f4f6;
  color: #475569;
}

/* Range slider */
input[type="range"].insurance-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 6px;
  background: #e5e7eb;
  background-image: linear-gradient(to bottom, #f9dc0b 0%, #d76a28 100%);
  outline: none;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

input[type="range"].insurance-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #0c1a2a;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

input[type="range"].insurance-range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #0c1a2a;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

/* Label for range */
.insurance-range-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.insurance-btn-submit {
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  line-height: 16px;
  border-radius: 100px;
  padding: 10px 18px;
  border: 1px solid #f9b233;
  transition: background 0.3s ease;
  gap: 5px;
  cursor: pointer !important;
  width: fit-content;
  white-space: nowrap;
}

.insurance-btn-submit:hover {
  border: 1px solid #f9b233;
  border-radius: 100px;
  text-decoration: none;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/*footer css*/
.footer-links a {
  color: #9a8f00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  font-size: 0.875rem;
  line-height: 24px;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #7a6a00;
  text-decoration: underline;
}

footer {
  margin: 0 auto;
  padding: 40px 24px 20px;
  display: flex;
  flex-wrap: wrap;
  background-color: #f9dc0b24;
  justify-content: space-around;
  gap: 30px;
}

.footer-left {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-left img {
  width: 80px;
  height: 90px;
  object-fit: contain;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.footer-left .social-icon i:hover {
  font-size: 1.25rem;
  color: #d76a28;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  opacity: 0.9;
}

.footer-links {
  flex: 3 1 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.footer-column h3 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: 0.1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #737373;
}

.footer-column ul li:last-child {
  margin-bottom: 0;
}

.footer-column ul li a {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #737373;
}

.footer-column ul li a:hover,
.footer-column ul li a:focus {
  color: #7a6a00;
  text-decoration: underline;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.75rem;
  color: #9a8f00;
  margin-bottom: 12px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  width: 24px;
  height: 24px;
  background: -webkit-linear-gradient(#f9dc0b, #d76a28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-bottom {
  border-top: 1px solid #dfdfdf;
  text-align: center;
  color: #737373;
  background-color: #f9dc0b24;
  padding: 14px 24px;
  margin: 0 auto;
  width: 100%;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 24px;
  letter-spacing: 0.2px;
}

/***********************
     Product CSS
 ***********************/

.product-hero {
  display: flex;
  justify-content: left;
  align-items: center;
  background-image: linear-gradient(to right, #000000, #00000000),
    url(../img/product-hero-img.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  object-fit: contain;
  background-size: cover;
  height: 50vh;
  position: relative;
}

.product-hero-title {
  font-weight: 800;
  font-size: 3rem;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-left: 150px;
}

.product-category-section {
  background-color: #fff6f0;
}

.product-category {
  border: 1px solid #d9c77a;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: white;
  box-shadow: 0px 0px 10px 0px #00000026;
  width: 100%;
  max-width: 436px;
  padding: 10px;
}

.product-category-header {
  border-bottom: 1px solid #d9c77a;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-category-btn {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  color: white;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 11px;
  text-decoration: none;
}

.product-category-btn i {
  font-size: 1.875rem;
}

.product-category-text {
  font-size: 1.063rem;
  /* color: #848484; */
  padding: 0 10px 0 10px;
  margin-top: 0.5rem;
  flex-grow: 1;
  font-weight: 400;
}

.product-category-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 100%;
}

.product-category-img {
  /*border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  */
  object-fit: cover;
  border-radius: 5px;
  height: 239px;
  width: 100%;
  margin-top: 0.75rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.category-title {
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.25rem;
  line-height: 100%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  text-decoration: none;
}

.category-subtitle {
  font-weight: 500;
  /* font-size: 3.75rem; */
  line-height: 100%;
  margin-bottom: 2.5rem;
  text-align: center;
}

/******************
  Commercial CSS
 *****************/
.commercial-hero {
  display: flex;
  justify-content: left;
  align-items: center;
  background-image: linear-gradient(to right, #000000, #00000000),
    url(../img/commercial-bg.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  object-fit: contain;
  background-size: cover;
  height: 50vh;
  position: relative;
}

/******************
  Personal CSS
 *****************/
.personal-hero {
  display: flex;
  justify-content: left;
  align-items: center;
  background-image: linear-gradient(to right, #000000, #00000000),
    url(../img/personal-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 50vh;
  position: relative;
}

/******************
  Bond CSS
 *****************/

.bond-hero {
  display: flex;
  justify-content: left;
  align-items: center;
  background-image: linear-gradient(to right, #000000, #00000000),
    url(../img/bond-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 50vh;
  position: relative;
}

/******************
  About CSS
 *****************/

.about-hero {
  display: flex;
  justify-content: left;
  align-items: center;
  background-image: linear-gradient(to right, #000000, #00000000),
    url(../img/about-bg.webp);
  background-repeat: no-repeat;
  background-position: top;
  object-fit: contain;
  background-size: cover;
  height: 50vh;
  position: relative;
}

.about-company {
  background-image: url(../img/spiral.webp);
  background-position: top;
  object-fit: contain;
  background-size: cover;
}

.abt-company h2 {
  /* font-size: 3rem; */
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 1.5rem;
  line-height: 100%;
}

.abt-company p {
  font-weight: 400;
  text-align: justify;
  font-size: 1.125rem;

}

.owner-image-container {
  position: relative;
}

.vertical-dots {
  position: absolute;
  left: -6%;
  top: 3%;
  z-index: -1;
}

.owner-profile .owner-title {
  color: #3c3c3c;
  margin-bottom: 1rem;
  font-weight: 700;
  /* font-size: 3rem; */
  line-height: 100%;
}

.owner-profile .owner-text {
  /* color: #6b7280; */
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-align: justify;
  font-size: 1.125rem;
}

.team-title {
  font-weight: 500;
  line-height: 100%;
}

/* .team-subtitle {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 100%;
} */

.team-member {
  background: radial-gradient(circle at bottom right, #f9dd0b5b 0%, #fff 40%);
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  overflow-x: auto;
}

.team-card {
  max-width: 320px;
  display: flex;
  position: relative;
  flex-direction: column;
  margin-bottom: 2rem;
  flex-shrink: 0;
}

.team-card img {
  border-radius: 8px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.team-info {
  background-color: #000;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 80%);
  padding: 1.25rem 1.5rem 3rem 1.5rem;
  /* position: relative; */
  margin-top: -3rem;
  line-height: 1.2;
  opacity: 0.85;
}

.team-info h3 {
  margin-bottom: 0.25rem;
  font-weight: 700;
  font-size: 1.438rem;
  line-height: 100%;
}

.team-info p {
  margin: 0;
  font-weight: 400;
  font-size: 1.063rem;
  line-height: 125%;
}

.team-arrow {
  position: absolute;
  bottom: 1.3%;
  left: 8.3%;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(to right, #fbbf24, #b45309);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 1;
}

.team-arrow:hover {
  background: linear-gradient(to right, #d97706, #78350f);
}

/**************
   Blog CSS
**************/
.blog-hero {
  display: flex;
  justify-content: left;
  align-items: center;
  background-image: linear-gradient(to right, #000000, #00000000),
    url(../img/blog-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 50vh;
  position: relative;
}

.post-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.post-title-text {
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  color: black;
  /* font-family: "inter"; */
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 100%;
}

.post-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* @media (min-width: 768px) {
  .post-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
} */

.post-image {
  border-radius: 20px;
  width: 100%;
  /* max-width: 600px; */
  /* height: 378px; */
  object-fit: cover;
  flex-shrink: 0;
}

.post-content {
  background-color: #f9ffea;
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  /* max-width: 600px; */
  box-shadow: 5px 5px 0 0 #252525;
  border: 1px solid #252525;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  color: #4f4f4f;
  margin-bottom: 0.5rem;
  /* font-family: "Inter"; */
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 100%;
}

.post-heading {
  margin-bottom: 0.5rem;
  /* font-family: "Inter"; */
  font-weight: 500;
  font-size: 25px;
  line-height: 100%;
}

.post-text {
  color: #828282;
  margin-bottom: 1rem;
  flex-grow: 1;
  /* font-family: "Inter"; */
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 172%;
  letter-spacing: -2%;
}

.post-tags {
  display: flex;
  gap: 0.75rem;
}

.post-tag-btn {
  color: #828282;
  border: 1px solid #828282;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
  /* font-family: "Inter"; */
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
}

.post-tag-btn:hover {
  background-color: #d9e4c3;
}

/* .weekly-container {
  max-width: 1140px;
  margin: 0 auto;
} */

.weekly-title {
  color: black;
  margin-bottom: 1.5rem;
  /* font-family: "Inter"; */
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 100%;
  margin-top: 2.5rem;
}

/* .weekly-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
} */

.weekly-card {
 box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  margin-bottom: 20px;
  border-radius: 20px;
  min-height: 400px;
  height: auto;

}

.weekly-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.weekly-body {
  padding: 1rem 0rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.weekly-category {
  font-weight: 600;
  color: #d76a28;
  margin-bottom: 0.25rem;
  /* font-family: "Inter"; */
  font-size: 0.875rem;
  line-height: 20px;
}

.weekly-title-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  /* font-family: "Inter"; */
  font-weight: 600;
  font-size: 1.2rem;
  /* line-height: 32px; */
  color: #101828;
}

.weekly-title-text i {
  font-size: 1.2rem;
  color: #101828;
  margin-left: 0.5rem;
}

.weekly-description {
  color: #6b7280;
  margin-bottom: auto;
  /* font-family: "Inter"; */
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
}

.weekly-author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  gap: 0.75rem;
}

.weekly-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.weekly-author-info {
  font-size: 0.75rem;
  color: #6b7280;
}

.weekly-author-name {
  color: #101828;
  margin: 0;
  /* font-family: "Inter"; */
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 20px;
}

.weekly-author-date {
  margin: 0;
  /* font-family: "Inter"; */
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 0%;
}

/*************
  Contact CSS
**************/

.contact-hero {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: left;
  background-image: linear-gradient(to right, #000000, #00000000),
    url(../img/blog-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 50vh;
  position: relative;
}

.contact-hero p {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 100%;

  padding-left: 150px;
}

.contact-details .card-custom {
  border-radius: 10px;
  box-shadow: 0 0px 7.56px 0px #00000040;
  border: 2px solid #d0d0d0;
  padding: 1.5rem 2rem;
  text-align: center;
  /* width: 16rem; */
  background-color: white;
  width: 100%;
  /* max-width: 399px;
  height: 235px; */
}

.contact-details .card-title-custom {
  margin-bottom: 0.25rem;
  color: black;

}

.contact-details .card-text-custom {
  color: #868686;
  font-weight: 500;
  font-size: 1.2rem;
  /* line-height: 37.82px; */
  text-align: center;
}

/* iframe {
  border: 2px solid #fbbf24 !important;
} */

.contact-form h2 {
  color: #000;
  text-align: center;
  margin-bottom: 0.25rem;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 100%;
}

.contact-form p {
  color: #4b5563;
  margin: 0 auto 1.5rem auto;
  font-size: 1rem;
  line-height: 27px;
  text-align: center;
}

.contact-form .form-control::placeholder {
  color: #9ca3af;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 27.04px;
  letter-spacing: 1%;
}

.contact-form .form-control {
  border-radius: 0.375rem;
  border: 1px solid #b4b4b4;
}

.contact-form .form-control:focus {
  border-color: #f6c23e;
  box-shadow: 0 0 0 0.25rem rgb(246 194 62 / 0.25);
}

.contact-form .btn-gradient {
  background: linear-gradient(to right, #f9d71c, #d46a1e);
  color: white;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: filter 0.3s ease;
  width: fit-content;
  white-space: nowrap;
  /* font-family: "Poppins"; */
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 16px;
  text-align: center;
}

.textarea textarea {
  min-height: 124px;
}

.contact-form .btn-gradient:hover,
.contact-form .btn-gradient:focus {
  filter: brightness(1.1);
  color: white;
  text-decoration: none;
}

/******************
    Health CSS
*******************/

.health-hero {
  display: flex;
  justify-content: left;
  align-items: center;
  background-image: linear-gradient(to right, #000000, #00000000),
    url(../img/health-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  background-size: cover;
  height: 50vh;
  position: relative;
}

.health-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* adjust for how dull you want the image */
  z-index: 2;
}

.health-hero .product-hero-title {
  position: relative;
  z-index: 3;
}

/* .choose-health {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
} */

/* .health-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
} */

.health-text {
  flex: 1 1 500px;
}

.health-title {
  margin-bottom: 1.5rem;
  font-weight: 500;
  /* font-size: 3.75rem; */
  /* line-height: 100%; */
}

.lady-doc {
  z-index: 1;
  object-fit: cover;
}

.dot-grid {
  position: absolute;
  z-index: 0;
  right: -1%;
  bottom: -10%;

}

.health-yellow {
  color: #f4c430;
}

.health-paragraph {
  /* color: #6b7280; */
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: justify;
  font-size: 1.125rem;
}

.health-image-wrapper {
  position: relative;
  flex: 1 1 400px;
  z-index: 0;
}


.health-plan h1 {
  margin: 0 auto 2.5rem auto;
  text-align: center;
  color: #000;
  font-weight: 500;
  width: 60%;
}

.health-plan h1 span {
  color: #d87e2a;
}

.health-plan .card {
  border-radius: 30px;
  box-shadow: 0px 0px 4px 0px #00000026;
  border: none;
  width: 100%;
  max-width: 450px;
  min-height: 290px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto 1.5rem auto;
}

.health-plan .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}


.health-plan .card-title {
  position: relative;
  display: inline-block;
  color: #313131;
  font-weight: 700;
  margin-right: 30px;
  padding-bottom: 0.25rem;
  font-size: 20px;
}

.health-plan .card-title::after {
  content: '';
  position: absolute;
  left: 12%;
  bottom: -4px;
  width: 26%;
  height: 5px;
  background-color: #c5733a;
}

.health-plan .card-number {

  font-weight: 800;
  color: #e9e9e9;
  font-size: 4.375rem;
  text-align: center;
}

.health-plan .card-text {
  color: #000000;
  max-width: 403px;
  font-weight: 400;
  font-size: 1.125rem;
}

.learn-more-section a {
  text-decoration: none;
}

.learn-more {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  padding-left: 5rem;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  background-image: linear-gradient(#00000000), url("../img/product-bg2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.learn-more-text {
  color: white;
  z-index: 1;
  font-weight: 500;
  font-size: 2.5em;
}

.individual-text {
  width: 100%;
  max-width: 650px;
}

.individual-text h3 {
  font-weight: 500;
  /* font-size: 3.75rem; */
  /* line-height: 100%; */
}

.individual-text p {
  font-weight: 400;
  font-size: 1.125rem;
  text-align: justify;
}

.doc-img {
  /* position: relative; */
  z-index: 1;
}

.doc-bg {
  /* position: relative; */
  /* left: -610px; */
  top: -15px;
  z-index: 0;
}

/******************
  Safety CSS
*******************/

.safety-hero {
  color: white;
  display: flex;
  justify-content: left;
  align-items: center;
  background-image: linear-gradient(to right, #000000, #00000000),
    url(../img/safety-bg.webp);
  background-repeat: no-repeat;
  background-position: top;
  object-fit: contain;
  background-size: cover;
  height: auto;
  padding: 25px 0px;
  position: relative;
}

.overview {
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-color: #fffbf9;
  background-image: url(../img/overview-bg.webp);
  background-repeat: no-repeat;
  background-position: top left;
  object-fit: contain;
  background-size: 80rem 40rem;
}

.overview-rect {
  position: absolute;
  top: 80rem;
  right: 0;
  width: 50%;
  height: 70%;
  z-index: -1;
}

.safety-yellow {
  color: #fbbf24;
  font-weight: 700;
}

.safety-text {
  font-weight: 400;
  font-size: 1.563rem;
  line-height: 45px;
  color: #fdebd8;
}

.safety-title {
  font-weight: 700;
  font-size: 4.875rem;
  line-height: 97px;
}

.unique-title {
  font-weight: 500;
  font-size: 3.75rem;
  line-height: 100%;
  z-index: 1;
}

.unique-desc {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 32px;
  letter-spacing: 2%;
}

.card-unique {
  border-radius: 0.5rem;
  box-shadow: 0 0px 10px 0px #00000026;
  padding: 1.5rem;
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  cursor: default;
}

.card-unique i {
  font-size: 1.5rem;
  line-height: 1;
}

.card-gradient-unique {
  background: linear-gradient(to right, #d76a28, #574c00);
  color: white;
}

.card-title-unique {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 100%;
}

.card-title-gold {
  color: #d68e00;
}

.card-title-orange {
  color: #d6a31a;
}

.card-text-unique {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 32px;
}

.card-gradient-unique .card-text-unique {
  color: white;
}

.image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.safety-contact {
  display: flex;
  /* flex-direction: column; */
}

.safety-contact__form-container {
  background: url("../img/form-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  flex: 1 1 66.6667%;
  position: relative;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}

.safety-contact__title {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 100%;
  margin-bottom: 0.25rem;
}

.safety-contact__subtitle {
  font-weight: 600;
  font-size: 1rem;
  line-height: 27px;
  text-align: center;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.safety-contact__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.safety-contact__form textarea {
  grid-column: 1 / -1;
  resize: vertical;
}

.safety-contact__input,
.safety-contact__textarea {
  font-size: 0.986rem;
  border-radius: 0.375rem;
  border: 1px solid #575757;
  padding: 0.5rem 0.75rem;
  outline-offset: 2px;
  outline-color: transparent;
  transition: outline-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  width: 100%;
  box-sizing: border-box;
}

.safety-contact__input:focus,
.safety-contact__textarea:focus {
  outline-color: #fbbf24;
  border-color: #fbbf24;
  box-shadow: 0 0 0 0.25rem rgba(251, 191, 36, 0.25);
}

.safety-contact__button {
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  border: 1px solid #f9b233;
  color: white;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 16px;
  border-radius: 100px;
  padding: 17px 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.safety-contact__button:hover,
.safety-contact__button:focus {
  background: white;
  border: 1px solid #f9b233;
  border-radius: 100px;
  text-decoration: none;
  color: #f9b233 !important;
}

.safety-contact__button i {
  font-size: 1.563rem;
}

.safety-contact__form a {
  text-decoration: none;
  margin: 0;
}

/******************
  Blog-Details CSS
*******************/
.details-category-toggle {
  background: #fbbf24;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  border: none;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.details-category-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgb(251 191 36 / 0.5);
}

.details-category-header {
  /* background: linear-gradient(to bottom, #F9DC0B, #D76A28); */
  background: linear-gradient(to right, rgb(240, 171, 50) 0%, rgb(249, 109, 48) 100%);
  /* background-color: #f37e20; */
  /* background-image: linear-gradient(0deg, rgb(250, 225, 182) 0%, rgb(255, 250, 244) 100%); */

  color: white;
  font-weight: 600;
  font-size: 20px;
  padding: 8px 20px;
  border-radius: 0.375rem;
  user-select: none;

}

.details-tag-badge {
  color: #000000;
  font-size: 1rem;
  border: 0.063rem solid #cbcbcb;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
}

.details-category-list a {
  text-decoration: none;
  border: none !important;
  color: black !important;
}

.details-category-list li {
  padding: 5px !important;
}


.details-category-list li:hover {
  /* background-color: #fef3c7; */
  cursor: pointer;
}

.details-recent-post-title:hover {
  text-decoration: none;
  cursor: pointer;
}

.details-recent-post-title a {
  color: rgb(52, 52, 52) !important;
  text-decoration: none;
  font-size: 1rem;

}

.details-social-icons i {
  color: #D76A28;
  font-size: 0.9rem;
  margin-left: 0.75rem;
  cursor: pointer;
}

.details-social-icons i:hover {
  color: #d97706;
}

.social-img:hover .fa-facebook-f {
  color: white !important;
}

/* Blog Details  */
.blogMain {
  padding: 50px;

  .blogMainLeft {

    img {
      /* width: 100%; */
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      height: 450px;
      object-fit: cover;
    }

    .blogDate {
      display: flex;
      align-items: center;
      gap: 15px;
      margin: 15px 0 15px 0;

      div {
        display: flex;
        align-items: center;
        gap: 4px;

        i {
          font-size: 14px;
        }
      }
    }

    .blog-title {
      background: #ecf7ff;
      background: linear-gradient(90deg, #f0b381 0, #fff);
      border-left: 5px solid #D76A28;
      color: black;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ecf7ff", endColorstr="#ffffff", GradientType=1);
      line-height: 1.2em;
      margin: 20px 0;
      padding: 10px 20px;
      text-transform: capitalize;
    }

    h2 {
      font-size: 22px;
      margin-bottom: 5px;
    }

    p {
      text-align: justify;
    }

    h3 {
      margin-top: 10px;
      margin-bottom: 5px;
      font-size: 20px;
    }

    ul {
      margin: 0px 0 0 0;
      padding: 0 0 0 16px;

      li {
        margin-top: 8px;
        list-style: decimal;
        text-align: justify;
      }
    }
  }

  .blogMainRight {
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 5px;

    .blogHum {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      /* line-height: 40px; */
      /* padding: 5px 20px; */
      background: linear-gradient(to bottom, #F9DC0B, #D76A28);

      h4 {
        color: white;
        font-size: 20px;
        padding: 8px;
      }

      i {
        display: none;
      }
    }

    .blogSide {
      background-color: #ffffff;

      a {
        margin: 0;
        padding: 0 20px 0 12px;
        line-height: 35px;
        font-size: 15px;
        border-top: 1px solid #e9eef6;
        display: inline-block;
        width: 100%;
        color: var(--colorOne);
        cursor: pointer !important;
        border-bottom: 1px solid #eee;
        /* box-shadow: 1px 0 5px #b0e3fa; */
        transition: all ease-in-out 0.4s;

        &:hover {
          padding-left: 8px;
        }
      }

      li {
        border-bottom: 1px solid rgb(214, 214, 214);
      }


    }
  }

  .latestBlog {
    border-radius: 5px;
    overflow: hidden;
    /* padding-bottom: 5px; */
    background-color: #F4FCFF;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-top: 20px;
    position: sticky;
    top: 80px;

    h4 {
      background-color: var(--colorOne);
      color: white;
      font-size: 20px;
      line-height: 40px;
      padding: 0 20px;
    }

    .blogCard {
      background-color: white;
      padding: 15px;
      border-radius: 15px;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      -ms-border-radius: 15px;
      -o-border-radius: 15px;

      &:hover .blogImg img {
        scale: 1.05;
      }

      .blogImg {
        overflow: hidden;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;

        img {
          width: 100%;
          transition: all 0.5s linear;
          -webkit-transition: all 0.5s linear;
          -moz-transition: all 0.5s linear;
          -ms-transition: all 0.5s linear;
          -o-transition: all 0.5s linear;
          border-radius: 15px;
          -webkit-border-radius: 15px;
          -moz-border-radius: 15px;
          -ms-border-radius: 15px;
          -o-border-radius: 15px;
        }
      }

      .blogCardContent {
        padding-top: 10px;

        .blogPerson {
          display: flex;
          align-items: center;
          gap: 15px;
          margin-bottom: 10px;

          a {
            font-size: 14px;
          }

          div {
            display: flex;
            align-items: center;
            gap: 5px;

            i {
              font-size: 12px;
            }

            p {
              font-size: 14px;
            }
          }
        }

        h5 {
          font-size: 16px;
          line-height: normal;
          margin-bottom: 5px;
        }

        p {
          font-size: 16px;
          margin-bottom: 0;
          /* font-family: 500; */
        }

        .blogLink {
          display: inline-block;
          margin-top: 15px;
          color: white;
          background-color: var(--colorOne);
          padding: 6px 15px;
          font-weight: 500;
          font-size: 15px;
          position: relative;
          border-radius: 5px;
          -webkit-border-radius: 5px;
          -moz-border-radius: 5px;
          -ms-border-radius: 5px;
          -o-border-radius: 5px;
        }
      }
    }
  }
}

@media (max-width:992px) {

  .blogMain {
    padding: 12px 0px;

    .blogMainLeft {

      img {
        height: auto;
      }

      h2 {
        font-size: 20px;
        margin-bottom: 5px;
      }

      p {
        text-align: justify;
      }

      h3 {
        margin-top: 10px;
        margin-bottom: 5px;
        font-size: 20px;
      }

      ul {
        margin: 0px 0 0 0;
        padding: 0 0 0 16px;

        li {
          margin-top: 8px;
          list-style: decimal;
          text-align: justify;
        }
      }
    }

    .blogMainRight {
      border-radius: 5px;
      overflow: hidden;
      padding-bottom: 0px;
      background-color: #F4FCFF;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

      .blogHum {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--colorOne);
        color: white;
        line-height: 40px;
        padding: 0px 20px;

        h4 {
          color: white;
          font-size: 20px;
        }

        i {
          display: block;
        }
      }

      .blogSide {
        background-color: #F4FCFF;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;

        &.open {
          max-height: 500px;
        }

        a {
          margin: 0;
          padding: 0 20px 0 20px;
          line-height: 35px;
          font-size: 18px;
          border-top: 1px solid #e9eef6;
          display: inline-block;
          width: 100%;
        }

      }
    }

    .latestBlog {
      border-radius: 5px;
      overflow: hidden;
      /* padding-bottom: 5px; */
      background-color: #F4FCFF;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      margin-top: 20px;

      h4 {
        background-color: var(--colorOne);
        color: white;
        font-size: 20px;
        line-height: 40px;
        padding: 0 20px;
      }

      .blogCard {
        background-color: white;
        padding: 15px;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;

        &:hover .blogImg img {
          scale: 1.05;
        }

        .blogImg {
          overflow: hidden;
          border-radius: 15px;
          -webkit-border-radius: 15px;
          -moz-border-radius: 15px;
          -ms-border-radius: 15px;
          -o-border-radius: 15px;

          img {
            width: 100%;
            transition: all 0.5s linear;
            -webkit-transition: all 0.5s linear;
            -moz-transition: all 0.5s linear;
            -ms-transition: all 0.5s linear;
            -o-transition: all 0.5s linear;
            border-radius: 15px;
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            -ms-border-radius: 15px;
            -o-border-radius: 15px;
          }
        }

        .blogCardContent {
          padding-top: 10px;

          .blogPerson {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;

            a {
              font-size: 14px;
            }

            div {
              display: flex;
              align-items: center;
              gap: 5px;

              i {
                font-size: 12px;
              }

              p {
                font-size: 14px;
              }
            }
          }

          h5 {
            font-size: 16px;
            line-height: normal;
            margin-bottom: 5px;
          }

          p {
            font-size: 16px;
            margin-bottom: 0;
            /* font-family: 500; */
          }

          .blogLink {
            display: inline-block;
            margin-top: 15px;
            color: white;
            background-color: var(--colorOne);
            padding: 6px 15px;
            font-weight: 500;
            font-size: 15px;
            position: relative;
            border-radius: 5px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
          }
        }
      }
    }
  }
}

@media (max-width:768px) {

  .blogMain {

    .latestBlog {
      display: none;
    }
  }

  .blogRecentPost {
    display: none;
  }
  .dot-grid {
    display: none;
  }
}


/***** End Blog Details Section *****/

/* customize index */
.horizontal-wrapper {
  display: flex;
  width: 100vw;
  height: 90vh;

  img {
    width: 80%;
  }
}

.panel {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.slider1 {
  background-image: linear-gradient(to right, #FFF2EA, #EEFAFF);

}

.slider3 {
  background-image: linear-gradient(to right, #FFF2EA, #EEFAFF);
}

@media screen and (max-width:768px) {
  .horizontal-wrapper {
    display: none;
  }
}

.banner-form {
  position: relative;
  z-index: 2;
}

@media screen and (max-width:600px) {
  .swiper-slide .bannerText p {
    display: none;

  }
}


.heroBanner {
  position: relative;
  width: 100%;
  height: 100vh;
}

.heroBanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: cover;
}

.bannerOverlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

.bannerText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  color: white;
  z-index: 2;
}

.bannerText h2 {
  font-size: 4rem;
  /* padding-bottom: 3.5rem; */
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}

.bannerText p {
  font-size: 1.5rem;
  /* line-height: 35px; */
  /* margin-bottom: 20px; */
}

.banner-button {
  display: inline-block;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid #f9b233;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.banner-button:hover {
  background: #d76a28;
}

@media (max-width: 768px) {
  .heroBanner {
    position: relative;
    width: 100%;
    height: auto;
  }

  .bannerText {
    width: 80%;
  }

  .bannerText h2 {
    font-size: 1.6rem;
  }

  .bannerText p {
    font-size: 0.95rem;
  }

  .bannerOverlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
  }
}

.nav-wrapper {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 0px;
  background-color: transparent !important;
  z-index: 100;
  background-color: white !important;
}

.navbar {
  padding: 0px;
}

/* .nav-item a.active{ */
/* background-color:rgb(255, 149, 0); */
/* background: linear-gradient(to bottom, #f9dc0b, #d17e00); */
/* border-radius:10px; */
/* color:white !important; */
/* color:#d17e00 !important;
border-bottom: 5px solid #d17e00; */
/* } */

.nav-item a {
  position: relative;
  /* Required for ::after positioning */
  text-decoration: none;
  color: inherit;
}

/* Style for active nav item */
.nav-item a.active {
  color: #d17e00 !important;
}

/* Add the bottom line using ::after */
.nav-item a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  /* Position just below the text */
  width: 100%;
  height: 4px;
  background-color: #d17e00;
  border-radius: 2px;
}

.navbar-brand {
  height: 67px;

  img {
    width: 50px;
  }

}

.popular-tag {
  border: 1px solid rgb(212, 211, 211);
  padding: 10px !important;
}

.popular-tag a {
  text-decoration: none;
}

.blog-desc img {
  max-width: 100%;
}




/* //// */

.toc-box {
  font-family: "Noto Sans", sans-serif;
  width: 30%;
  background-color: rgb(243, 243, 243) !important;
}

.toc-box.expanded {
  width: 80% !important;
}

.toc-list {
  list-style: none;
  padding-left: 0.5rem;
  margin: 0;
}

.toc-list>li {
  position: relative;
  /* padding-left: 0.5rem; */
}

.toc-number {
  font-weight: bold;
  color: #444;
  font-size: 0.95rem;
}

.toc-link {
  color: #333;
  font-size: 0.95rem;
  display: block;
  transition: all 0.2s;
}

.toc-link:hover {
  color: #ff9800;
  text-decoration: underline;
}

.toggle-icon i {
  font-size: 1.2rem;
  color: #666;
  transition: transform 0.3s ease;
}

.btn[aria-expanded="true"] i {
  transform: rotate(90deg);
}

.contact-bg {
  background-color: #f7f7f7;
}

.contact-map iframe {
  border: 10px solid white !important;
  width: 100% !important
}


.hover-shadow:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}



/* banner bottom */

.insurance-card {
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
}

.left-section {
  background: #ffffff;
  padding: 2rem;
}

.right-section {
  h4 {
    color: #c96a2a
  }

  padding: 2rem;
}

.btn-gradient:hover {
  opacity: 0.9;
}

.form-control,
.form-select {
  border-radius: 2rem;
  padding: 0.6rem 1rem;
}

@media (max-width: 768px) {

  .left-section,
  .right-section {
    text-align: center;
    padding: 20px !important;
  }

  .btn-gradient {
    height: 100% !important;
  }
}

.btn-gradient {
  background: linear-gradient(to right, #f9dc0b, #d76a28);
  border: none;
  color: white;
  font-weight: bold;
  margin-top: 0px !important;
  border-radius: 30px;
  white-space: nowrap;

  height: 70%;
  /* ensures consistent height with inputs */
}


.triangle-cut-image {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0% 0%,
      90% 0%,
      100% 10%,
      100% 100%,
      10% 100%,
      0% 90%);
}


.elegant-feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elegant-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.blog-social-share img {
  width: 25px !important;
  height: 25px !important;
}

#scroll-progress-bar-top {
  position: fixed;
  top: 63px;
  /* height of your navbar */
  left: 0;
  height: 4px;
  width: 0%;
  background-color: #d17e00;
  /* Bootstrap primary color */
  z-index: 1050;
  transition: width 0.2s ease;
}


.custom-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
}

.custom-select-beauty {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  padding: 9px 20px;
  padding-right: 45px;
  font-size: 16px;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%236c757d' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  border: 1px solid #ced4da;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.custom-input-style {
  border: 1px solid #ced4da;
  border-radius: 10px;
  padding: 20px 16px;
  font-size: 16px;
  color: #495057;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}

#top-bar-quote {
  text-decoration: none;
  color: black;
}

.pagination {
  margin-left: 20px;
}

.page-link {
  color: black;
}

.active>.page-link,
.page-link.active {
  border: yellow;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
}

.product-view .btn.active {
  border: 1px solid #d76a28;
  background: linear-gradient(to bottom, #f9dc0b, #d76a28);
  color: white;
}

.product-view .btn {
  border: 1px solid #d76a28;
  color: #d76a28;
}

.product-view .btn:hover {
  background-color: white;
}

.bond-desc img {
  width: 100% !important;
  height: 100% !important;
}

.bond-image img {
  height: auto !important;
}



.navbar-nav .dropdown-menu {
  position: absolute;
  left: 2vw;
  top: 80%;
  background-color: white;
  z-index: 999;
  box-shadow: 0 0px 0px px #000;
  border: none;
}

.dropdown-item:hover {
  background-color: #E76a28;
  color: white;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.offcanvas-drop {
  margin-left: 20px;

}

.dropdown-menu {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;

}

.smooth-toggle {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
}
#detail-sticky{
  position: sticky;
  top:100px;
}



.card-custom {
  border-radius: 1.5rem;
  width: 100%;
  min-width: 230px;
  min-height: 240px !important;
  padding: 1.0rem;
  display: flex;                                                                                                                                                                                                  
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  flex-shrink: 0;
}



  @media screen and (max-width:768px) {
    .offcanvas .collapse {
      transition: height 0.3s ease;
    }

    .nav-item #offcanvasCommercial,
    .nav-item #offcanvasPersonal {

      border-radius: 6px;
    }

    #offcanvasCommercial .nav-link:hover,
    #offcanvasPersonal .nav-link:hover {
      background-color: #E76a28;
      color: white;
      overflow: hidden;
    }

    #offcanvasCommercial .nav-link,
    #offcanvasPersonal .nav-link {
      padding: 10px;
    }
  }

  @media screen and (max-width:567px) {
    .work-card-section {
      overflow: auto;
      flex-wrap: nowrap;
      padding: 0px 36px;
    }

    .service .service-cards .row {
      flex-wrap: nowrap !important;
      overflow: auto;
    }

    .service-view {
      margin-top: 3px;
    }

  }

  @media screen and (min-width:1200px) and (max-width:1400px) {
    .service .service-cards {
      flex-wrap: nowrap !important;
    }

    .card-custom {
      min-width: 203px;
    }

  }


