:root {
  --primary-color: #002B45;
  --secondary-color: #59af3a;
  --tertiary-color: #C9A227;

  --primary-blue: #3A47FF;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  text-align: left;
  color: #3e5066;
}

p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  transition: 0.5s;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-style: normal;
  margin: 20px 0 5px;
  line-height: 1.2;
  font-weight: 600;
  transition: 0.5s;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.25rem; margin-bottom: 20px; }
h6 { font-size: 0.875rem; }

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease-out;
}

a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  color: var(--tertiary-color);
  text-decoration: none;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  transition: 0.5s;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a, i, ol, li, ul {
  font-style: normal;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

*::-moz-selection {
  background: var(--tertiary-color);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--tertiary-color);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--tertiary-color);
  color: #fff;
  text-shadow: none;
}

.btn, .main-menu .btn.active {
  background: color-mix(in srgb, var(--secondary-color) 80%, black);
  color: white !important;
  border-radius: 1.5rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: color-mix(in srgb, var(--secondary-color) 65%, black);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: white !important;
}


.nav-header {
  position: relative;
  top: 0;
  z-index: 8;
}

.sticky-wrapper {
  transition: 0.4s ease-in-out;
}
.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  animation: stickyAni 0.4s ease-in-out;
}

@keyframes stickyAni {
  0% {
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

/****header-top*****/
.main-menu a {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: #262626;
}
.main-menu a i {
  font-size: 14px;
  margin-left: 5px;
  color: rgba(0, 0, 0, 0.70);
}
.main-menu a.active, .main-menu a:hover, .main-menu a.active i, .main-menu a:hover > i {
  color: var(--tertiary-color);
}
.main-menu > ul > li {
  margin: 0 15px;
}
.main-menu > ul > li > a {
  padding: 20px 0;
}
.main-menu > ul > li > a:hover {
  color: var(--tertiary-color);
}
.main-menu > ul > li > a[title]:before {
  content: "";
  padding: 3px;
  top: 16px;
  position: absolute;
  left: auto;
  right: 0px;
  width: 0;
  height: 0;
  border-bottom: 12px solid transparent;
  border-left: 22px solid #be3649;
  border-top: 0 solid transparent;
}
.main-menu > ul > li > a[title]:after {
  content: attr(title);
  position: absolute;
  top: 5px;
  left: auto;
  z-index: 99999;
  visibility: visible;
  white-space: nowrap;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 10px;
  opacity: 1;
  right: 0px;
  padding: 0 7px;
  border-radius: 4px;
  font-weight: 400;
  line-height: 22px;
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li:last-child {
  margin-right: 0 !important;
}
.main-menu ul li:first-child {
  margin-left: 0 !important;
}
.main-menu ul li .btn-contact {
  padding: 0.5rem 1.2rem !important;
}
.main-menu ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  z-index: 9;
}
.main-menu ul.sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  min-width: 230px;
  max-width: 250px;
  width: max-content;
  padding: 0px;
  left: -27px;
  opacity: 0;
  z-index: 100;
  border: 0;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.4s ease 0s;
}
.main-menu ul.mega-menu li,
.main-menu ul.sub-menu li {
  border-bottom: 1px solid #E3E3E3;
  display: block;
  margin: 0 0;
  padding: 0px;
}
.main-menu ul.sub-menu a {
  color: #24231D;
  font-size: 14px;
  font-weight: 450;
  padding: 6px 20px;
  line-height: 22px;
  position: relative;
}
.main-menu ul.sub-menu a:hover {
  background: #5dbc34;
  color: #fff;
}
.main-menu ul.sub-menu ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 0px;
}
.main-menu ul.sub-menu ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.social-links .social-title {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin: 0 15px 0 0;
  color: #fff;
}

.social-links a i {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  padding-left: 0;
  transition: 0.5s;
  margin-left: 9px;
}
.social-links a i:hover {
  color: var(--tertiary-color);
}

.header-logo {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-logo img {
  max-height: 55px;
}

.header-links > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.header-links li {
  display: inline-block;
  position: relative;
  font-size: 13px;
  font-weight: 500;
}
.header-links li:not(:last-child) {
  margin: 0 40px 0 0;
}
.header-links li > i {
  margin-right: 8px;
}
.header-links li .header-sub-links li:not(:last-child) {
  margin: 0 30px 0 0;
}
.header-links li .header-sub-links li:not(:last-child):before {
  content: "/";
  position: absolute;
  right: -20px;
  top: 0;
  color: #24231D;
}
.header-links li,
.header-links span,
.header-links p,
.header-links a {
  color: #fff;
  display: inline-flex;
  align-items: center;
}
.header-links a:hover {
  color: #fdd63a;
}
.header-links b,
.header-links strong {
  font-weight: 600;
  margin-right: 6px;
}
.header-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Header 1 ---------------------------------- */
.nav-header {
  position: relative;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.nav-header .header-top {
  background-color: var(--primary-color);
  padding: 8px 0;
  position: relative;
}
.nav-header .main-menu {
  margin-left: 150px;
}
.nav-header .sticky-wrapper.sticky {
  background: #fff;
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1700px) {
  .nav-header .main-menu {
    margin-left: 30px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .nav-header .main-menu {
    margin-left: 0;
  }
}

@media (max-width: 800px) {
  .header-logo img {
    max-width: 250px;
  }
  .header-top .container {
    padding: 0;
  }
  .header-links li {
    font-size: 12px;
  }
  .header-links li:not(:last-child){
    margin: 0 15px 0 0;
  }
}


.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu-wrapper .mobile-logo {
  padding-bottom: 20px;
  padding-top: 20px;
  display: block;
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #E3E3E3;
}
.mobile-menu-wrapper .mobile-logo img {
  max-width: 230px !important;
}
.mobile-menu-wrapper .menu-toggle {
  border: none;
  font-size: 18px !important;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 36px;
  font-size: 14px;
  z-index: 1;
  background-color: var(--secondary-color) !important;
  color: #fff;
  border-radius: 50%;
}
.icon-btn {
  display: inline-block;
  font-size: 30px;
  background-color: transparent;
  color: var(--secondary-color);
  text-align: center;
  border: none;
  transition: 0.4s ease-in-out;
}

.mobile-menu-wrapper .mobile-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--secondary-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.mobile-menu-wrapper.body-visible {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-wrapper.body-visible .mobile-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 15px;
  text-align: left;
}
.mobile-menu::-webkscrollbar {
  display: none;
}
.mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.mobile-menu ul li {
  border-bottom: 1px solid #E3E3E3;
  list-style-type: none;
}
.mobile-menu ul li li:first-child {
  border-top: 1px solid #E3E3E3;
}
.mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  color: #24231D;
}
.mobile-menu ul li.active-class > a {
  color: var(--tertiary-color);
}
.mobile-menu ul li.active-class > a:before {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}
.mobile-menu ul li ul li {
  padding-left: 20px;
}
.mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.mobile-menu ul .submenu-item-has-children > a .mean-expand-class {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 10px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: #F8F7F0;
  color: #262626;
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}
.mobile-menu ul .submenu-item-has-children > a .mean-expand-class:before {
  content: "\f067";
  font-family: "Font Awesome 7 Free";
  font-weight: 700;
}
.mobile-menu ul .submenu-item-has-children.active-class > a .mean-expand-class:before {
  content: "\f068";
}
.mobile-menu > ul {
  padding: 0 40px;
}
.mobile-menu > ul > li:last-child {
  border-bottom: none;
}

@media (max-width: 400px) {
  .mobile-menu-wrapper .mobile-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .mobile-menu > ul {
    padding: 0 20px;
  }
}


.main-menu ul.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background-color: var(--white-color);
  visibility: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 999;
}

.main-menu ul li:hover > ul.mega-menu {
  transform: scaleY(1) translateX(-37.7%);
  left: 0;
  visibility: visible;
  opacity: 1;
}

.main-menu ul.mega-menu li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 6px;
  min-width: 250px;
}
.main-menu ul.mega-menu li:hover {
  background-color: #f8f9fa;
}

.main-menu ul.mega-menu li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.main-menu ul.mega-menu li img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.main-menu ul.mega-menu li span {
  flex: 1;
  font-size: 14px;
  line-height: 1.2;
}



/*=======================================
   Hero Slider
========================================*/
.hero-section {
  padding: 2rem 0;
  text-align: center;
  position: relative;
  background-image: url("../images/bg/medicine.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(170, 176, 171, 0.55), rgba(163, 163, 163, 0.70));
}

.hero-section > * {
  position: relative;
  z-index: 2;
}

.hero-section .container {
  max-width: 1200px;
  position: relative;
}

.carousel-item-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (min-width: 992px) {
  .carousel-item-custom {
    flex-direction: row;
  }
}

.hero-content {
  text-align: left;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 650;
  margin-bottom: 2rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.1);
}

.btn-hero {
  padding: 0.9rem 2rem;
}

.btn-hero:hover {
  transform: translateY(-2px);
}

.btn-hero i {
  margin-left: 0.75rem;
}

.btn-hero:hover i {
  transform: translateX(5px);
}

.carousel-indicators {
  position: static;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  display: none;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: #B0BEC5;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--secondary-color);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  position: absolute;
  z-index: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #f1f1f1;
  opacity: 1;
}

@media (min-width: 992px) {
  .carousel-control-prev {
    left: -60px;
  }

  .carousel-control-next {
    right: -60px;
  }
}

@media (max-width: 991.98px) {
  .carousel-control-prev, .carousel-control-next {
    display: none;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  color: #121621;
  font-size: 1rem;
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.carousel-control-prev-icon::before {
  content: "\f053";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.carousel-control-next-icon::before {
  content: "\f054";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .carousel-control-prev, .carousel-control-next {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    padding: 4rem 0;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-image {
    margin-top: 2rem;
  }
}




/*=======================================
   Breadcrumb Section
========================================*/
.header-section {
  position: relative;
  background: url("../images/bg/breadcrumb4.webp") center center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.header-content h1 {
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 1.3rem;
  color: white;
}
.header-content p {
  font-size: 1rem;
  font-weight: 400;
  color: #e6e6e6;
  margin-bottom: 20px;
}
.breadcrumb-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 22px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.breadcrumb-box a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb-box a:hover {
  color: var(--tertiary-color);
}

.breadcrumb-box .active {
  color: var(--tertiary-color);
  font-weight: 600;
}

.breadcrumb-box i {
  font-size: 0.8rem;
  margin: 0 8px;
  color: #bbb;
}

@media (max-width: 768px) {
  .header-content h1 {
    font-size: 1.9rem;
  }
  .header-section {
    height: 300px;
  }
}



.feature-section {
  background-color: var(--tertiary-color);
  padding: 3rem 0;
}
.feature-card {
  background-color: color-mix(in srgb, var(--tertiary-color) 90%, black);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  color: white;
}
.feature-card .icon-circle {
  background-color: color-mix(in srgb, var(--tertiary-color) 80%, white);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.feature-card .icon-circle i {
  color: white;
  font-size: 24px;
}
.feature-card .card-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.feature-card .card-text {
  font-size: 14px;
}


/*=======================================
   Whyus Section
========================================*/
.whyus-section {
  background-image: url("../images/bg/pattern-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}

.whyus-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.35);
}
.whyus-section > * {
  position: relative;
  z-index: 2;
}

.whyus-content {
  padding: 1rem;
}

.whyus-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.whyus-content p {
  color: #6c757d;
}

.whyus-content .btn {
  padding: 0.7rem 1.5rem;
}

.whyus-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}




/*=======================================
   About Section
========================================*/
.about-overview {
  background-image: url("../images/bg/pattern-7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}

.about-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.65);
}
.about-overview > * {
  position: relative;
  z-index: 2;
}

.about-content {
  padding: 1rem;
}

.about-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-content p {
  /*color: #6c757d;*/
}

.about-content li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}
.about-content li::before {
  content: '\f058' !important;
  font-family: 'Font Awesome 7 Free' !important;
  font-weight: 900 !important;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}




/*=======================================
   About Section
========================================*/
.team-section {
  margin-top: 2rem;
  padding: 5rem 0;
}
.team-section .team-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: visible;
    text-align: center;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.15) !important;
}
.team-section .team-card:hover {
    box-shadow: 1px 7px 20px rgba(0, 0, 0, 0.20) !important;
}

.team-section .team-img-wrap {
    width: 130px;
    height: 130px;
    position: absolute;
    top: -65px;
    left: 0;
    right: 0;
    margin: auto;
}

.team-section .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.team-section .team-card-body {
    margin-top: 80px;
}

.team-section .read-more {
    font-weight: 600;
    text-decoration: none;
}
.team-section .read-more:hover {
    text-decoration: underline;
}


#teamModal .team-modal-img-wrap {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -75px;
    left: 0;
    right: 0;
    margin: auto;
}

#teamModal .team-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

#teamModal .team-linkedin {
    color: #0A66C2;
}

#teamModal .team-modal-description {
    text-align: justify;
}




/*=======================================
   Services Section
========================================*/
.services {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.services .main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.services .subtitle {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: white;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.3s ease;
  height: 100%;
}
.services .icon-circle {
  width: 70px; 
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.services .icon-circle i {
  color: white;
  font-size: 2rem;
}

.service-card:hover > .icon-circle {
  background-color: var(--tertiary-color);
}
.service-card:hover {
  border: 1px solid var(--secondary-color);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);; 
}
.service-card:hover .read-more-link {
  color: var(--tertiary-color); 
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.services .read-more-link {
  color: var(--primary-blue);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.read-more-link .fa-arrow-right {
  margin-left: 0.5rem;
  font-size: 0.9rem;
}




.service-page {
  background-image: url("../images/bg/pattern-7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 4rem 0;
  position: relative;
}

.service-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.35);
}
.service-page > * {
  position: relative;
  z-index: 2;
}

.service-page .service-link {
  display: block;
  background: white;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 12px;
  text-align: left;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-weight: 500;
  font-size: 15px;
  color: #212529;
  text-decoration: none;
  transition: all 0.2s;
}
.service-page .service-link:hover {
  background-color: #e3f2fd;
  transform: translateY(-2px);
  color: #212529;
}
.service-page .service-link.active {
  /*background: linear-gradient(135deg, #029be5, #0277bd);*/
  background: linear-gradient(135deg, var(--secondary-color), color-mix(in srgb, var(--secondary-color) 65%, black));
  color: white;
}
.service-page .service-link i {
  margin-right: 12px;
  width: 20px;
}
.service-page .contact-card {
  background: linear-gradient(135deg, var(--primary-color), color-mix(in srgb, var(--primary-color) 65%, black));
  color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(81, 165, 51, 0.3);
  margin-top: 1.5rem;
  padding: 0;
}
.service-page .contact-card img {
  width: 100%;
  object-fit: cover;
}
.service-page .contact-info h5 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.service-page .contact-info small {
  opacity: 0.85;
  font-size: 0.85rem;
}
.service-page .call-to-action {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.5rem 0;
}
.service-page .phone-line {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.service-page li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}
.service-page li::before {
  content: '\f058' !important;
  font-family: 'Font Awesome 7 Free' !important;
  font-weight: 900 !important;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}


.accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 10px;
}

.accordion-button {
  background-color: #ffffff;
  border-radius: 12px !important;
  font-weight: 500;
  color: #0b132b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background-color: transparent;
  color: #6c757d;
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
}




/*=======================================
   Careers
========================================*/
.careers-page .job-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all .25s ease;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.06);
}

.careers-page .job-card:hover {
    box-shadow: 0px 4px 18px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.careers-page .job-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.careers-page .job-read-more {
    font-weight: 600;
    text-decoration: none;
}

.careers-page .job-read-more:hover {
    text-decoration: underline;
}

/* No jobs state */
.careers-page .no-jobs {
    color: #666;
}

/* Job Detail Page */
.job-detail-page .job-detail-card,
.job-detail-page .application-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.08);
}

.job-detail-page .form-label {
    font-size: 0.95rem;
}

.job-detail-page .form-control {
    border-radius: 8px;
    padding: 10px 12px;
}

#drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.drop-text {
    margin: 0;
    margin-bottom: 15px;
}

#drop-area.highlight {
    border-color: #2196F3;
}

#file-input {
    display: none;
}

.upload-btn {
    border: 1px solid #555;
    padding: 4px 10px;
    border-radius: 10px;
    color: #555;
    font-size: 15px;
}



/*=======================================
   Contact Page
========================================*/
.contact-card {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
#contact-form .form-control, .form-select {
  border: 1px solid rgba(0, 43, 69, 0.35);
  box-shadow: none; 
  border-width: 1.5px;
  font-size: 14px;
  padding: 0.7rem;
  border-radius: 7px;
}
#contact-form .form-control:focus, .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(5, 150, 105, 0.25), 0 0 8px rgba(5, 150, 105, 0.1); 
}
#contact-form .form-control::placeholder {
  color: #777;
}
.select2-selection__rendered {
  line-height: 40px !important;
}

.select2-container .select2-selection--single {
  height: 40px !important;
}

.select2-selection__arrow {
  height: 40px !important;
}
#contact-form .btn {
  padding: 0.8rem 1.2rem;
}
.info-column {
  background: linear-gradient(135deg, #f3f8fe 0%, #e0f2fe 100%); 
  padding: 2.5rem !important;
  border-right: 2px solid rgba(0, 0, 0, 0.05) !important; 
}
.info-column .info-icon {
  color: var(--tertiary-color);
  font-size: 2rem; 
  min-width: 40px;
}
.info-column .social-icon-link {
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}
.info-column .social-icon-link:hover {
  color: var(--secondary-color);
  transform: translateY(-3px) scale(1.1);
}




/*==============================================
 Blog Page
==============================================*/
.blog-section {
  position: relative;
  background-color: #F8F9FA;
  padding: 60px 0;
}

.blog-section .blog-content {
  position: relative;
  z-index: 2;
}

.blog-section .blog-content .row {
  margin-left: 0;
  margin-right: 0;
}

.blog-section .blog-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-section .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.blog-section .blog-card-img {
  height: 200px;
  object-fit: cover;
}

.blog-section .blog-card-meta {
  font-size: 0.875rem;
  color: var(--tertiary-color);
}

.blog-section .blog-card-meta a {
  color: var(--tertiary-color);
  text-decoration: none;
}

.blog-section .blog-card-meta a:hover {
  text-decoration: underline;
}

.blog-section .blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #21292C;
}

.blog-section .blog-card-btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.blog-section .blog-card-btn:hover {
  background-color: #007C2B;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .blog-section .blog-card-title {
    font-size: 1rem;
  }

  .blog-section .blog-card-img {
    height: 150px;
  }
}


.pagination .page-item {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  background: var(--secondary-color);
  color: #333;
  transition: all 0.3s ease;
}
.pagination .page-item.active {
  background: #82878E;
  color: white;
}
.pagination .page-item:hover {
  background: #007C2B;
  color: white;
}

.show-more-button {
  background-color: #fff;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-weight: bold;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

.show-more-button i {
  margin-right: 0.5rem;
}




/*==============================================
 Blog Post Page
==============================================*/
.blog-post-section {
  background-color: #F8F9FA;
  padding: 40px 0;
}

.blog-post-section .blog-post-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post-section .breadcrumb {
  background: transparent;
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.blog-post-section .breadcrumb a {
  color: var(--secondary-color);
  text-decoration: none;
}

.blog-post-section .breadcrumb a:hover {
  text-decoration: underline;
}

.blog-post-section .blog-post-hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-post-section .blog-post-meta {
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.blog-post-section .blog-post-meta a {
  color: var(--secondary-color);
  text-decoration: none;
}

.blog-post-section .blog-post-meta a:hover {
  text-decoration: underline;
}

.blog-post-section .blog-post-meta span {
  margin-right: 15px;
}

.blog-post-section .blog-post-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #21292C;
  margin-bottom: 1.5rem;
}

.blog-post-section .blog-post-text {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}
.blog-post-section .blog-post-text ul, .blog-post-section .blog-post-text ol {
  padding-left: 20px;
  margin-bottom: 10px;
}
.blog-post-section .blog-post-text ul li {
  list-style: disc;
}

.blog-post-section .blog-post-sidebar .sidebar-widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.blog-post-section .blog-post-sidebar .sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #21292C;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 5px;
}

.blog-post-section .blog-post-sidebar .sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.blog-post-section .blog-post-sidebar .search-form {
  position: relative;
}

.blog-post-section .blog-post-sidebar .search-input {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 40px 8px 12px;
  width: 100%;
  font-size: 0.9rem;
}

.blog-post-section .blog-post-sidebar .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}

.blog-post-section .blog-post-sidebar .search-btn:hover {
  background-color: #007C2B;
}

.blog-post-section .blog-post-sidebar .recent-posts-list {
  list-style: none;
  padding: 0;
}

.blog-post-section .blog-post-sidebar .recent-posts-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.blog-post-section .blog-post-sidebar .recent-posts-list .recent-post-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.blog-post-section .blog-post-sidebar .recent-posts-list .recent-post-content {
  flex: 1;
}

.blog-post-section .blog-post-sidebar .recent-posts-list .recent-post-title {
  font-size: 0.9rem;
  color: #666;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.blog-post-section .blog-post-sidebar .recent-posts-list .recent-post-title:hover {
  color: var(--secondary-color);
}

.blog-post-section .blog-post-sidebar .recent-posts-list .recent-post-date {
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 991.98px) {
  .blog-post-section .blog-post-hero-img {
    height: 250px;
  }

  .blog-post-section .blog-post-title {
    font-size: 1.25rem;
  }

  .blog-post-section .blog-post-text {
    font-size: 0.95rem;
  }
}




/*=======================================
   Privacy Policy
========================================*/
.privacy-policy .content {
  background-color: white;
  padding: 4rem 0;
}

.privacy-policy h2 {
  font-size: 1.2rem;
}

.privacy-policy ul {
  margin: 15px 0 15px 12px;
  list-style: disc;
}

.privacy-policy li {
  margin-bottom: 10px;
}

.privacy-policy .highlight {
  background-color: #f0f9f7;
  border-left: 4px solid #007A5A;
  padding: 15px 20px;
  margin: 20px 0;
}

.privacy-policy .contact-info {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
}



/*=======================================
   Footer
========================================*/
.footer {
  background-color: var(--primary-color);
  padding-top: 5rem;
  position: relative;
  z-index: 0;
}

.footer img {
  max-height: 55px;
}

.footer h5 {
  font-weight: 600;
  color: #ffffff;
  position: relative;
  margin-bottom: 1.5rem;
  margin-top: 0;
  padding-top: 0;
}

.footer .footer-heading {
  color: #ffffff;
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer .text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer .list-unstyled li {
  margin-bottom: 0.7rem;
}

.footer .list-unstyled a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer .list-unstyled a:hover {
  color: var(--tertiary-color) !important;
}

.footer .list-unstyled a .fa-chevron-right {
  font-size: 0.75rem;
  margin-right: 0.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer .list-unstyled a:hover .fa-chevron-right {
  transform: translateX(5px);
  color: var(--tertiary-color);
}

.footer .social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer .social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: color-mix(in srgb, var(--primary-color) 90%, white);
  color: #ffffff;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer .social-icons a:hover {
  background-color: var(--tertiary-color);
  color: #ffffff;
}

.footer .contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer .contact-info i {
  color: #ffffff;
  font-size: 1.1rem;
  margin-right: 0.75rem;
  padding-top: 3px;
}

.footer .contact-info span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.copyright-bar {
  background-color: color-mix(in srgb, var(--primary-color) 75%, black);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .footer {
    padding-top: 3rem;
  }
  .footer .footer-heading {
    margin-top: 1.5rem;
  }
}

.scroll-to-top,
.whatsapp-button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #46105B;
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover,
.whatsapp-button:hover {
  background-color: #ffffff;
}

.whatsapp-button {
  bottom: 60px;
  background-color: var(--secondary-color);
  color: white;
}

.whatsapp-button:hover {
  background-color: color-mix(in srgb, var(--secondary-color) 95%, black);
}


/*=======================================
   Loader
========================================*/
.loader {
  display: none;
}

.spinner {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 40px;
}

.spinner div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 7px;
  background: var(--primary-color);
  color: #007C2B;
  -webkanimation: spinner 1.2s infinite ease-in-out;
  animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.spinner div:nth-child(1) {
  left: 6px;
  animation-delay: -0.16s;
}

.spinner div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}

.spinner div:nth-child(3) {
  left: 45px;
  animation-delay: -0.8s;
}

.spinner div:nth-child(4) {
  left: 65px;
  animation-delay: -0.4s;
}

.spinner div:nth-child(5) {
  left: 85px;
  animation-delay: 0;
}

@keyframes spinner {
  0% {
    top: 6px;
    height: 51px;
  }

  50%,
  100% {
    top: 19px;
    height: 26px;
  }
}

@-webkkeyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webktransform: scaleY(0.4)
  }

  20% {
    -webktransform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webktransform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webktransform: scaleY(1.0);
  }
}