/*

TemplateMo 566 Medic Care

https://templatemo.com/tm-566-medic-care

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #d04f0f;
  --section-bg-color:             #F9F9F9;
  --dark-color:                   #000000;
  --title-color:                  #565758;
  --p-color:                      #717275;
  --border-color:                 #eaeaea;

  --body-font-family:             'Open Sans', sans-serif;

  --h1-font-size:                 48px;
  --h2-font-size:                 36px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               16px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
    padding-top: 94px;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

/* ---------------------------------------
   CONTACT DIRECT SECTION
----------------------------------------- */

.contact-section {
  background: linear-gradient(160deg, #fdf6f2 0%, #f9f9f9 100%);
}

.contact-card {
  background: var(--white-color);
  padding: 52px 48px;
  border-radius: 20px;
  max-width: 560px;
  border: 1px solid rgba(208, 79, 15, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(208, 79, 15, 0.06);
  position: relative;
  overflow: hidden;
}

/* decorative background blob */
.contact-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(208,79,15,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  margin-bottom: 22px;
  color: var(--p-color);
  padding: 18px 20px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid var(--border-color);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-line:last-child {
  margin-bottom: 0;
}

.contact-line:hover {
  border-color: rgba(208, 79, 15, 0.3);
  box-shadow: 0 4px 14px rgba(208, 79, 15, 0.08);
}

.contact-line strong {
  color: var(--dark-color);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 90px;
}

.contact-line a {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  font-size: 17px;
  transition: color 0.2s ease;
}

.contact-line a:hover {
  color: #a83d0b;
  text-decoration: none;
}

/* mobile polish */
@media (max-width: 767px) {
  .contact-card {
    padding: 36px 28px;
  }

  .contact-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 15px;
  }

  .contact-line a {
    font-size: 16px;
  }
}


/*---------------------------------------
  WHY US – ACCORDION
-----------------------------------------*/

.why-us-section {
  background: var(--section-bg-color);
}

.why-us-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,.12);
}

.why-us-header {
  width: 100%;
  background: var(--section-bg-color);
  border: none;
  padding: 30px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.why-us-header h3 {
  margin-bottom: 5px;
  font-size: 22px;
  color: var(--dark-color);
}

.why-us-header p {
  margin: 0;
  font-size: 15px;
  color: var(--p-color);
}

.toggle-icon {
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  transition: transform 0.7s ease;
}

/* CONTENT */
.why-us-content {
  max-height: 0;
  overflow: hidden;
  background: var(--white-color);
  transition: max-height 0.7s ease;
}

.why-us-content p {
  padding: 25px 35px 30px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* ACTIVE STATE */
.why-us-item.active .why-us-content {
  max-height: 300px;
}

.why-us-item.active .toggle-icon {
  transform: rotate(45deg);
}

/* ---------------------------------------
   WHY US – ROOF COLOR STATES
----------------------------------------- */

/* default (closed) roof */
.why-us-item {
  position: relative;
  border-top: 6px solid #b7b7b7; /* grey roof */
  transition: border-top-color 0.3s ease, transform 0.3s ease;
}

/* active (open) roof */
.why-us-item.active {
  border-top-color: var(--primary-color); /* orange roof */
}

/* optional subtle lift for active item */
.why-us-item.active {
  transform: translateY(-4px);
}

/* hover effect */
.why-us-item:hover {
  border-top-color: var(--primary-color); /* orange roof on hover */
}


/* MOBILE */
@media (max-width: 767px) {
  .why-us-header {
    padding: 25px 25px;
  }

  .why-us-content p {
    padding: 20px 25px 25px;
  }
}



/*---------------------------------------
  GALLERY SECTION – REDESIGN
-----------------------------------------*/

.gallery-section {
  background: var(--section-bg-color);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Slight overlay on hover */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Mobile polish */
@media (max-width: 767px) {
  .gallery-item {
    border-radius: 10px;
  }
}





/*---------------------------------------
  OFFER CARDS – POLISHED DESIGN
-----------------------------------------*/

.offer-card {
  background: var(--white-color);
  padding: 45px 35px;
  border-radius: 12px;
  border-top: 6px solid var(--primary-color);
  text-align: left;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}

/* subtle background accent */
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(208,79,15,0.06),
    transparent 60%
  );
  border-radius: 12px;
  z-index: 0;
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

/* TITLE */
.offer-card h3 {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 14px;
  line-height: 1.3;
}

/* DESCRIPTION */
.offer-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--p-color);
  margin-bottom: 0;
}

/* HOVER EFFECT */
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1.8rem 3.5rem rgba(0,0,0,.18);
}

/* subtle accent line on hover */
.offer-card:hover h3 {
  color: var(--primary-color);
}

/* MOBILE POLISH */
@media (max-width: 767px) {
  .offer-card {
    padding: 35px 25px;
  }

  .offer-card h3 {
    font-size: 22px;
  }

  .offer-card p {
    font-size: 15px;
  }
}





h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1,
h2 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/*---------------------------------------
  CUSTOM LINK (modernised)
-----------------------------------------*/
.custom-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(208, 79, 15, 0.28);
  transition: background 0.28s ease, color 0.28s ease,
              box-shadow 0.28s ease, transform 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
}

/* subtle inner shine sweep */
.custom-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.custom-link:hover::before {
  left: 130%;
}

.custom-link:hover {
  background: transparent;
  color: var(--primary-color);
  box-shadow: 0 6px 24px rgba(208, 79, 15, 0.18);
  transform: translateY(-2px);
}

.custom-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(208, 79, 15, 0.2);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  LIST GROUP               
-----------------------------------------*/
.list-group-item {
  background-color: transparent;
  color: var(--p-color);
  font-size: var(--p-font-size);
  padding: 1rem 0;
}

.list-group-item:first-child {
  padding-top: 0;
}

.list-group-item span {
  font-weight: var(--font-weight-semibold);
  margin-left: auto;
}

/*---------------------------------------
  ANIMATED TEXT              
-----------------------------------------*/
.animated {
  position: relative;
}

.animated-info {
  display: inline-block;
  vertical-align: top;
  min-width: 220px;
  position: relative;
}

.animated-item {
  color: var(--primary-color);
}

.animated-item {
  display: block;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  animation: BottomTotop 6s linear infinite 0s;
}

.animated-item:nth-child(2n+2) {
  animation-delay: 2s;
}

.animated-item:nth-child(3n+3) {
  animation-delay: 4s;
}

@keyframes BottomTotop {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    transform: translateY(5px);
  }
  10% {
    opacity: 1;
    transform: translateY(0px);
  }
  25% {
    opacity: 1;
    transform: translateY(0px);
  }
  30% {
    opacity: 0;
    transform: translateY(5px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {  
  padding-top: 0rem;
}

.hero .container {
  position: relative;
  overflow: hidden;
  height: 580px;
}

.heroText {
  background: var(--white-color);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  padding: 1.5rem 2.5rem;
  width: 50%;
}

.contact-phone {
  font-weight: var(--font-weight-semibold);
}

/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-circle {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-text {
  font-size: var(--h6-font-size);
  line-height: 2rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 0;
}

.featured-number {
  color: var(--primary-color);
  font-size: 8rem;
  margin: 0 10px;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  margin: 0 30px;
  padding: 0;
  text-align: center;
}

.navbar-brand strong {
  color: var(--p-color);
  font-size: 12px;
  position: relative;
  bottom: 5px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--p-color);
  font-weight: var(--font-weight-semibold);
  font-size: var(--menu-font-size);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-item.active .nav-link, 
.nav-link:focus, 
.nav-link:hover {
  color: var(--dark-color);
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  TIMELINE               
-----------------------------------------*/
.timeline,
.timeline-nodes {
  position: relative;
}

.timeline-nodes:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline h3, 
.timeline p {
  padding: 10px 30px;
} 

.timeline h3 {
  background: var(--dark-color);
}

.timeline::before {
  content: "";
  display: block;
  position: absolute;
  top: 37px;
  left: 50%;
  width: 0;
  border-left: 1px solid var(--border-color);
  height: 85%;
  z-index: 1;
  transform: translateX(-50%);
}

.timeline-content {
  position: relative;
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0;
}

.timeline-nodes:nth-child(odd) h3,
.timeline-nodes:nth-child(odd) p {
  text-align: right;
}

.timeline-nodes:nth-child(odd) .timeline-date {
  text-align: left;
}
 
.timeline-nodes:nth-child(even) .timeline-date {
  text-align: right;
}

.timeline-nodes:nth-child(odd) h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0, -50%);
  width: 0;
  border-left: 10px solid var(--dark-color);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.timeline-nodes h3 {
  position: relative;
  border-radius: 0.25rem 0.25rem 0 0;
}

.timeline-nodes:nth-child(even) h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
  width: 0;
  border-right: 10px solid var(--dark-color);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.timeline-icons {
  position: relative;
  z-index: 100;
}

.timeline-icons::before {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  z-index: 1;
}

.timeline-icon {
  position: relative;
  z-index: 100;
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  display: block;
  text-align: center;
  line-height: 80px;
}

@media (max-width: 767px) {
  .timeline-nodes:nth-child(odd) h3,
  .timeline-nodes:nth-child(odd) p {
    text-align: left;
  }

  .timeline-nodes:nth-child(even) {
    flex-direction: row;
  }

  .timeline::before {
    content: "";
    display: block;
    position: absolute;
    top: 60px;
    left: 33px;
    width: 0;
    height: 90%;
    z-index: 1;
    transform: translateX(-50%);
  }

  .timeline-icons {
    position: absolute;
    left: 0%;
    top: 60px;
  }

  .timeline-nodes:nth-child(odd) h3::after {
    left: auto;
    right: 100%;
    border-left: 0;
    border-right: 10px solid var(--dark-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  .timeline-nodes:nth-child(even) h3::after {
    right: 100%;
    width: 0;
    border-right: 10px solid var(--dark-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  .timeline-nodes:nth-child(even) .timeline-date {
    text-align: left;
  }

  .timeline-icons::before {
    width: 75px;
    height: 75px;
  }

  .timeline-icon {
    line-height: 75px;
  }
}

@media (max-width: 575px) {
  .timeline::before {
    content: "";
    display: block;
    top: 60px;
    left: 57px;
    height: 87%;
  }

  .timeline-icons {
    position: absolute;
    left: -10px;
  }

  .timeline-icons::before {
    width: 70px;
    height: 70px;
  }

  .timeline-icon {
    line-height: 70px;
  }
}

/*---------------------------------------
  REVIEWS               
-----------------------------------------*/
.reviews-thumb {
  margin-bottom: 0;
  padding: 32px;
}

.reviews-text {
  margin-top: 10px;
  margin-bottom: 25px;
}

.reviews-image {
  border-radius: 100px;
  width: 70px !important;
  height: 70px !important;
}

.reviews-carousel .owl-item {
  opacity: 0.45;
}

.reviews-carousel .owl-item.active.center {
  opacity: 1;
}

.reviews-carousel .owl-item.active.center .reviews-thumb {
  background: var(--dark-color);
}

.reviews-carousel .owl-item.active.center .reviews-thumb,
.reviews-carousel .owl-item.active.center .reviews-text {
  color: var(--white-color);
}

.reviews-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  margin: auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reviews-carousel .owl-nav span {
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
}

.reviews-carousel .owl-nav .owl-prev {
  position: relative;
  left: -80px;
}

.reviews-carousel .owl-nav .owl-next {
  position: relative;
  right: -80px;
}

.reviews-carousel .owl-prev span,
.reviews-carousel .owl-next span {
  color: transparent;
}

.reviews-carousel .owl-prev span::before,
.reviews-carousel .owl-next span::before {
  font-family: bootstrap-icons;
  display: block;
  font-size: var(--h3-font-size);
  color: var(--p-color);
  width: 35px;
  height: 35px;
}

.reviews-carousel .owl-prev span::before {
  content: "\f12f";
}

.reviews-carousel .owl-next span::before {
  content: "\f138";
}

/*---------------------------------------
  BOOKING FORM            
-----------------------------------------*/

.booking-form .form-control {
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  color: #6c757d;
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 15px;
  transition: all 0.3s;
}

.booking-form #submit-button {
  background: var(--dark-color);
  border-bottom: 0;
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 35px;
}

.booking-form #submit-button:hover {
  background: var(--primary-color);
}

/*---------------------------------------
  FOOTER              
-----------------------------------------*/

/*---------------------------------------
  FOOTER – RICH ORANGE
-----------------------------------------*/

.site-footer {
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

/* decorative background texture */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255,255,255,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(0,0,0,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

/* top content block */
.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

/* brand column */
.footer-brand-name {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: 6px;
  display: block;
}

.footer-brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 22px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  font-weight: var(--font-weight-normal);
}

/* social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 17px;
  transition: background 0.25s ease, transform 0.2s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.32);
  transform: translateY(-3px);
  color: #fff;
}

/* column headings */
.footer-heading {
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}

/* nav links column */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  font-weight: var(--font-weight-normal);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* contact details column */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact-item i {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #fff;
}

/* divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin: 0;
}

/* bottom bar */
.footer-bottom {
  padding: 22px 0;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-weight: var(--font-weight-normal);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .footer-top {
    padding: 55px 0 40px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 8px;
  }
}

@media (max-width: 767px) {
  .footer-top [class*="col-"] {
    margin-bottom: 40px;
  }

  .footer-top [class*="col-"]:last-child {
    margin-bottom: 0;
  }

  .footer-bottom .col-12:first-child {
    margin-bottom: 6px;
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .hero .container {
    height: 740px;
  }
}

@media screen and (max-width: 991px) {
  body {
    padding-top: 74px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav .nav-link {
    padding-top: 5px;
    padding-bottom: 10px;
  }

  .hero .container {
    height: inherit;
  }

  .heroText {
    position: relative;
    bottom: 100px;
    left: 0;
    width: auto;
    margin-bottom: -100px;
    padding: 2rem;
  }

  .featured-circle {
    width: 320px;
    height: 320px;
  }
}

@media screen and (max-width: 767px) {
  .heroText {
    padding: 1.5rem;
  }

  .animated-info {
    min-width: 100px;
  }

  .featured-circle {
    margin-top: 20px;
  }

  .reviews-carousel .owl-nav {
    position: relative;
    width: auto !important;
    transform: inherit;
    top: 0;
    bottom: 0;
    left: 0;
    max-width: 100px;
    margin: 20px auto;
  }

  .reviews-carousel .owl-nav .owl-prev,
  .reviews-carousel .owl-nav .owl-next {
    right: 0;
    left: 0;
  }
}

@media screen and (max-width: 480px) {
  .heroText {
    padding: 1rem;
  }

  .heroLinks .custom-link {
    font-size: 12px;
    line-height: 30px;
    margin-right: 12px !important;
    padding: 0 25px;
  }

  .contact-phone {
    font-size: 12px;
  }
}

@media screen and (max-width: 360px) {
  .featured-number {
    font-size: 5rem;
  }

  .featured-circle {
    width: 235px;
    height: 235px;
  }

  .reviews-image {
    width: 55px !important;
    height: 55px !important;
  }

  .reviews-thumb figcaption {
    font-size: var(--menu-font-size);
  }

  .timeline::before {
    left: 42px;
  }
}