.fz14 {
  font-size: 14px !important;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz25 {
  font-size: 25px !important;
}

.bg-red {
  background-color: #F81D1D;
}

.bg-gray {
  background: #ECECEC !important;
}

.text-red {
  color: #F81D1D;
}

.text-black {
  color: #120F0D;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #120F0D;
}

::-webkit-scrollbar-thumb {
  background: #F81D1D;
}

::-moz-selection {
  background: #F81D1D;
  color: white;
}

::selection {
  background: #F81D1D;
  color: white;
}

body {
  font-weight: 400;
  font-family: "Cairo", sans-serif;
  background: #FAFAFA;
  position: relative;
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1152px;
  }
}

a {
  text-decoration: none;
  transition: 0.3s;
}

.bg-none {
  background-image: none !important;
  background: none !important;
}

.mb-100 {
  margin-bottom: 100px;
}

.py-64 {
  padding-block: 64px;
}

@media only screen and (max-width: 600px) {
  .py-64 {
    padding-block: 40px;
  }
}

.btn-1,
.wpforms-page-button {
  border-radius: 10px;
  background: #F81D1D;
  color: white;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
  font-size: 16px;
  border: none;
  font-weight: bold;
}

@media (max-width: 767px) {
  .btn-1 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .btn-1 {
    flex-shrink: 0;
  }
}

.btn-1:hover,
.wpforms-page-button:hover {
  color: #F81D1D;
  box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background: white;
}

.btn-white-outlined {
  border: 1px solid white !important;
  color: white;
  padding: 13px 25px;
  display: inline-block;
  transition: 0.3s;
  font-size: 18px;
  border: none;
  font-weight: bold;
}

.btn-white-outlined:hover {
  color: white;
  box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background: #F81D1D;
}

.btn-red-outlined {
  border: 1px solid #F81D1D !important;
  color: #F81D1D;
  padding: 13px 25px;
  display: inline-block;
  transition: 0.3s;
  font-size: 18px;
  border: none;
  font-weight: 500;
}

.btn-red-outlined:hover {
  color: white;
  box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background: #F81D1D;
}

.btn-2 {
  border-radius: 5px;
  background: white;
  color: #F81D1D;
  padding: 13px 25px;
  display: inline-block;
  transition: 0.3s;
  font-size: 18px;
  border: none;
  font-weight: bold;
}

.btn-2:hover {
  color: #F81D1D;
  box-shadow: 0px 9px 19px 1px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
  background: #F81D1D;
  color: white;
}

@media only screen and (max-width: 600px) {
  .btn {
    padding: 9px 11px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .header-icons {
    .btn {
      padding: 9px 10px;
      font-size: 12px;
    }
  }
}

.btn-3 {
  font-size: 16px;
  font-weight: bold;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-3 i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: #F81D1D;
  box-shadow: 0 4px 10px rgba(248, 29, 29, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.btn-3:hover {
  color: white;
  background: #F81D1D;
}

.btn-3:hover i {
  background: #F81D1D !important;
  color: white !important;
  filter: none;
  margin-inline-end: -10px !important;
}

.btn-3.reverse {
  color: #F81D1D;
}

.btn-3.reverse i {
  background: #F81D1D;
  color: white;
}

.btn-3.reverse:hover {
  color: white;
}

.btn-3.reverse:hover i {
  background: white;
  color: #F81D1D;
  margin-inline-end: 0;
}

.btn-3-outlined {
  font-size: 16px;
  font-weight: bold;
  color: #F81D1D;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  border: 1px solid #F81D1D;
}

.btn-3-outlined i {
  transition: 0.3s;
}

.btn-3-outlined:hover {
  color: white;
  background: #F81D1D;
}

.btn-3-outlined:hover i {
  color: white !important;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  z-index: 20;
  background: white;
  padding-block: 10px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

header:has(.search-form-wrapper.active) {
  padding-bottom: 10px;
}

header .header-main-content {
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo-img img {
  max-height: 39px;
  transition: 0.3s;
}

@media only screen and (max-width: 1024px) {
  header .logo-img img {
    max-height: 42px;
  }
}

.search-form-wrapper {
  background-color: #f3f3f3;
  border-radius: 30px;
  padding: 0 25px 0 15px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: 0.3s;
}

.search-form-wrapper:focus-within {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.438);
}

.search-form-wrapper .search-form {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.search-form-wrapper .search-form .search-btn {
  border: none !important;
  color: #120F0D;
  font-size: 20px;
  transition: 0.3s;
  padding-top: 8px;
}

.search-form-wrapper .search-form .search-btn:hover {
  color: #F81D1D;
}

.search-form-wrapper .search-form .form-control {
  padding-block: 10px;
  width: 100%;
  background-color: transparent;
  border: none;
  color: #120F0D;
  font-size: 18px;
  box-shadow: none;
}

.search-form-wrapper .search-form .form-control::-moz-placeholder {
  color: #120F0D;
  font-size: 14px;
  opacity: 0.5;
}

.search-form-wrapper .search-form .form-control::placeholder {
  color: #120F0D;
  font-size: 14px;
  opacity: 0.5;
}

.search-form-wrapper.active {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  max-height: 100px;
  margin-top: 5px;
}

.top-bar {
  background: #FFEDED;
  padding-block: 0.7rem;
}

.top-bar ul {
  display: flex;
  align-items: center;
  margin: 0;
}

.top-bar ul li {
  line-height: 1;
}

.top-bar ul a {
  color: #000;
  display: block;
  font-size: 14px;
  transition: 0.3s;
  padding-inline: 10px;
}

.top-bar ul a:hover {
  color: #F81D1D;
  transition: 0.3s;
}

.top-bar ul li:not(:last-child) a {
  border-inline-end: 1px solid #000;
}

.trp-language-item {
  padding: 0 !important;
}

.trp-shortcode-switcher {
  padding: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.top-bar .language-switcher a {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  color: #000;
  font-size: 14px;
  transition: 0.3s;
}

.top-bar .language-switcher a i {
  color: #F81D1D;
}

.top-bar .language-switcher a:hover {
  color: #F81D1D;
  transition: 0.3s;
}

@media only screen and (max-width: 600px) {
  .top-bar li {
    margin-top: 5px;
  }

  .top-bar li a {
    font-size: 12px;
    padding-inline: 5px;
  }
}

.header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu {
  display: flex;
  align-items: center;
  margin-bottom: 0;

  .special a {
    color: #F81D1D !important;

  }
}



.main-menu a {
  text-transform: capitalize;
  transition: 0.3s;
}

.main-menu>li {
  margin-inline-end: 30px;
  position: relative;
}

.main-menu>li:hover:after {
  bottom: -35px;
  transition: 0.3s;
}

.main-menu>li>a {
  color: #120F0D;
  font-size: 15px;
  transition: 0.3s;
  display: block;
  position: relative;
}

.main-menu>li>a:before {
  content: "";
  background: #F81D1D;
  width: 0%;
  height: 1.5px;
  opacity: 0;
  display: block;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  z-index: -1;
}

.main-menu>li:hover>a {
  color: #F81D1D;
}

.main-menu>li:hover>a:before {
  width: 100%;
  transition: 0.3s;
  opacity: 1;
}

.main-menu>li:last-of-type {
  margin: 0;
}

.show-submenu,
.show-overlay {
  opacity: 1;
  visibility: visible;
}

.main-menu .menu-item-has-children {
  position: relative;
  padding: 0;
}

.main-menu .menu-item-has-children>a {
  color: #120F0D;
  -moz-column-gap: 5px;
  column-gap: 5px;
  display: flex;
  align-items: baseline;
}

.main-menu .menu-item-has-children>a::after {
  content: "\f078";
  position: relative;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 10px;
  color: #120F0D;
  transition: 0.3s;
}

.main-menu .menu-item-has-children>a {
  position: relative;
}

.main-menu .menu-item-has-children:hover>a {
  color: #F81D1D;
}

.main-menu .menu-item-has-children:hover>a::after {
  color: #F81D1D;
}

.main-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: auto;
}

.main-menu .menu-item-has-children .sub-menu {
  width: 230px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
  border-radius: 8px;
  z-index: 12;
  background-color: #fff;
  position: absolute;
  top: 80px;
  right: -22px;
  list-style: none;
  box-shadow: 0px 2px 13px 9px rgba(0, 0, 0, 0.02);
  padding: 12px;
  transition: 0.3s;
}

.main-menu .menu-item-has-children .sub-menu li {
  transition: 0.3s;
}

.main-menu .menu-item-has-children .sub-menu a {
  padding: 10px;
  align-items: center;
  font-size: 15px;
  border-radius: 4px;
  line-height: 1.5;
  color: #120F0D;
  justify-content: flex-start;
  font-weight: 400;
  display: flex;
  width: 100%;
  -moz-column-gap: 10px;
  column-gap: 10px;
  transition: color linear 0.2s;
}

.main-menu .menu-item-has-children .sub-menu a:hover {
  color: #F81D1D;
}

.main-menu .mega-menu {
  position: static;
}

.main-menu .mega-menu .sub-menu {
  width: 100%;
  right: 0;
  left: 0;
}

.main-menu .mega-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.main-menu .mega-menu .sub-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.bars {
  z-index: 21;
  display: none;
  flex-direction: column;
  align-items: center;
  row-gap: 6px;
  background: none;
  border: 0;
}

.bars .line {
  flex-shrink: 0;
  width: 25px;
  display: block;
  height: 1.5px;
  background-color: #F81D1D;
  transition: 0.3s;
}

.rotate-line1 {
  transform: rotate(45deg) translateX(-2px) translateY(-2px);
  transform-origin: 0% 0%;
}

.rotate-line3 {
  transform: rotate(-45deg) translateX(0px) translateY(0px);
  transform-origin: 0 100%;
}

.bars .hide-line2 {
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
}

.header-icons {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.header-icons .header-icon {
  font-size: 20px;
  color: #F81D1D;
  cursor: pointer;
  transition: all 0.3s;
}

.header-icons .header-icon:hover {
  color: #111;
}

.search-icon {
  width: 25px;
}

.search-icon.active i:before {
  content: "\e59b";
  font-family: "Font Awesome 6 Pro";
}

.dropdown-parent {
  position: relative;
  display: inline-block;
}

.dropdown-parent .dropdown-list {
  width: 230px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
  border-radius: 8px;
  z-index: 12;
  background-color: #F8F4EC;
  position: absolute;
  top: 80px;
  inset-inline-end: -22px;
  list-style: none;
  box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 12px;
  transition: all 0.4s;
}

.dropdown-parent .dropdown-list li {
  text-align: center;
  transition: 0.3s;
}

.dropdown-parent .dropdown-list a {
  padding: 10px;
  align-items: center;
  font-size: 18px;
  color: #120F0D;
  text-align: center;
  justify-content: flex-start;
  display: flex;
  width: 100%;
  -moz-column-gap: 10px;
  column-gap: 10px;
  transition: 0.3s;
}

.dropdown-parent .dropdown-list a:hover {
  color: #F81D1D;
}

.dropdown-parent:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: auto;
}

@media only screen and (max-width: 1200px) {
  .menu-item-has-children .sub-menu {
    inset-inline-start: 0;
    transform: unset;
  }

  .main-menu>li {
    margin-inline-end: 25px;
  }
}

@media only screen and (max-width: 992px) {
  .navigation .container {
    padding-inline: 12px;
  }

  .rotate-line3 {
    transform: -45deg translateX(-1px) translateY(0px);
  }

  .logo-img {
    margin-inline-end: auto;
  }

  .header-main-content {
    height: auto;
    justify-content: flex-end;
    column-gap: 20px;
  }

  .main-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .main-menu>li {
    margin-inline-end: 0;
    margin-bottom: 25px;
  }

  .main-menu>li:nth-child(5) {
    margin-inline-start: unset;
  }

  .main-menu>li>a {
    font-size: 18px;
    font-weight: 500;
  }

  .main-menu>li:nth-child(4) {
    margin-inline-start: 0;
  }

  .bars {
    display: flex;
  }

  .navigation {
    overflow-y: auto;
    position: fixed;
    opacity: 0;
    transition-duration: 1s;
    visibility: hidden;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100vh;
    padding: 40px;
    padding-top: 3rem;
    background-color: #fff;
    transition: 0.3s;
    z-index: 20;
    clip-path: circle(0.5% at 0 0);
  }

  .open-sidebar {
    opacity: 1;
    visibility: visible;
    clip-path: circle(140.9% at 0 0);
    transition: 0.3s;
  }



  .main-menu .menu-item-has-children>a::after {
    font-size: 14px;
    transition: 0.3s;
    color: #F81D1D;
  }

  .main-menu .menu-item-has-children>a.icon-rotate::after {
    transform: rotate(180deg);
  }

  .main-menu .menu-item-has-children>a::after {
    font-size: 15px;
  }

  .main-menu .menu-item-has-children .sub-menu {
    position: static;
    background-color: unset;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: unset;
    padding: 0;
    display: none;
    transition: none;
    width: 100%;
    padding-top: 18px;
  }

  .main-menu .menu-item-has-children .sub-menu li {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding-inline-start: 14px;
  }

  .main-menu .menu-item-has-children .sub-menu li:before {
    content: "\e404";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: #F81D1D;
    font-size: 14px;
    transition: 0.3s;
  }

  .main-menu .menu-item-has-children .sub-menu li:not(:last-of-type) {
    margin-bottom: 17px;
  }

  .main-menu .menu-item-has-children .sub-menu li {
    text-align: start;
  }

  .main-menu .menu-item-has-children:hover .sub-menu {
    transform: unset;
  }

  .main-menu .menu-item-has-children .sub-menu a {
    display: flex;
    padding: 0;
    gap: 8px;
    width: -moz-max-content;
    width: max-content;
    color: #120F0D;
  }

  .main-menu .menu-item-has-children {
    width: auto;
    padding: 0;
  }

  .main-menu .menu-item-has-children>a {
    justify-content: space-between;
    cursor: pointer;
  }

  .main-menu .menu-item-has-children {
    line-height: normal;
  }
}

@media only screen and (max-width: 768px) {
  .navigation .container {
    padding-inline: 20px;
  }

  .main-menu .menu-item-has-children .sub-menu li a:hover {
    background-color: transparent;
    color: #F81D1D;
  }

  .main-menu .menu-item-has-children {
    padding: 0;
  }
}

.hero-section {
  animation: zoomBackground 30s linear infinite alternate;
  transition: 0.3s;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .hero-section {
    animation: none;
    height: auto;
    background-size: cover !important;
    background-position: center center !important;
  }
}

.hero-section .hero-main-content {
  position: relative;
  width: 100%;
  max-height: 688px;
  height: 88vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

@media only screen and (max-width: 768px) {
  .hero-section .hero-main-content {
    height: auto;
    padding-block: 3rem;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-section .hero-main-content {
    width: 100%;
  }
}

.hero-section .hero-main-content .hero-content {
  width: 85%;
  position: relative;
  text-align: center;
  margin-inline: auto;
}

@media only screen and (max-width: 600px) {
  .hero-section .hero-main-content .hero-content {
    width: 100%;
  }
}

.hero-section .hero-main-content .hero-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 35px;
}

@media only screen and (max-width: 1024px) {
  .hero-section .hero-main-content .hero-title {
    font-size: 25px;
  }
}

.hero-section .hero-main-content .hero-text {
  font-size: 25px;
  margin-bottom: 40px;
  font-weight: 500;
  padding-inline-end: 2rem;
}

@media only screen and (max-width: 1024px) {
  .hero-section .hero-main-content .hero-text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .hero-section .hero-main-content .hero-text {
    font-size: 15px;
    padding-inline-end: 0;
  }
}

.hero-section .hero-btn {
  display: flex;
  justify-content: center;
  gap: 24px;
}

@media only screen and (max-width: 600px) {
  .hero-section .hero-btn {
    justify-content: center;
  }
}

@keyframes zoomBackground {
  0% {
    background-size: 100%;
  }

  100% {
    background-size: 120%;
  }
}

.section-title {
  font-weight: bold;
  font-size: 24px;
  color: #000;
  position: relative;
  margin-bottom: 50px;
  text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
  .section-title {
    margin-bottom: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .section-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .section-title {
    font-size: 18px;
  }
}

.section-description {
  font-size: 20px;
  color: #120F0D;
  font-weight: 500;
  width: 70%;
  margin-inline: auto;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .section-description {
    font-size: 16px;
  }
}

/* Departments Section */
.departments-section {
  padding-block: 64px;
}

.single-department-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.single-department-card a {
  display: block;
  height: 100%;
  width: 100%;
}

.single-department-card .dept-img {
  height: 100%;
  width: 100%;
}

.single-department-card .dept-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}

.single-department-card .dept-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F81D1D;
  padding: 20px;
  text-align: center;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.single-department-card .dept-content .dept-title {
  color: #fff;
  font-size: 20px;
  margin: 35px 0 0;
  transition: 0.4s;
}

@media (max-width: 768px) {
  .single-department-card .dept-content .dept-title {
    font-size: 18px;
  }
}

.single-department-card .dept-content .read-more {
  opacity: 0;
  visibility: hidden;
  color: #fff;
  font-size: 16px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.4s;
  transform: translateY(10px);
}

.single-department-card .dept-content .read-more i {
  font-size: 14px;
}

.single-department-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.single-department-card:hover .dept-title {
  margin-top: 0;
}

.single-department-card:hover .dept-img img {
  transform: scale(1.1);
}

.single-department-card:hover .dept-content {
  height: 100px;
}

.single-department-card:hover .dept-content .read-more {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.offer-card {
  height: 265px;
}

.offer-card .dept-content {
  height: 50px;
  padding: 15px 20px;
}

.offer-card .dept-content .dept-title {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.offer-card .dept-content .read-more {
  margin-top: 10px;
}

.offer-card:hover .dept-content {
  height: 90px;
}

.offer-card:hover .dept-title {
  margin-top: 0;
}

.about-us-section {
  position: relative;
}

.about-us-section .about-title {
  font-size: 24px;
  color: #C6000F;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-us-section .description {
  font-size: 20px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .about-us-section .description {
    font-size: 16px;
    text-align: center;
  }
}

.about-us-section .about-img {
  position: relative;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .about-us-section .about-img {
    margin-bottom: 40px;
  }
}

.about-us-section .about-video .custom-video-player {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  aspect-ratio: 16/9;
}

.about-us-section .about-video .custom-video-player .video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.5s ease;
}

.about-us-section .about-video .custom-video-player .video-poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-us-section .about-video .custom-video-player .video-poster .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 2px solid white;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: 0.3s ease;
  box-shadow: 0 0 0 0 rgba(248, 29, 29, 0.4);
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .about-us-section .about-video .custom-video-player .video-poster .play-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

.about-us-section .about-video .custom-video-player .video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transition: 0.5s ease;
  z-index: 1;
}

.about-us-section .about-video .custom-video-player.playing .video-poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about-us-section .about-video .custom-video-player.playing .video-element {
  opacity: 1;
}

.about-us-section .about-video .custom-video-player:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
  color: #F81D1D;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(248, 29, 29, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(248, 29, 29, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(248, 29, 29, 0);
  }
}

.single-vm-wrapper {
  background: url("../images/grad-bg.jpg") no-repeat center center;
  background-size: 100% auto;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #F81D1D;
  position: relative;
  overflow: hidden;
}

.single-vm-wrapper .bg {
  background: linear-gradient(#0074f1 0%, #dbe0e1 100%);
  height: 100%;
  transition: 0.5s;
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: circle(0% at 100% 0);
}

.single-vm-wrapper .icon {
  border-radius: 5px 0px 34px 0px;
  background: rgba(0, 116, 241, 0.46);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.single-vm-wrapper .icon img {
  max-width: 33px;
}

.single-vm-wrapper .title {
  font-size: 20px;
  font-weight: bold;
  color: #F81D1D;
  margin-bottom: 32px;
  text-align: center;
  z-index: 1;
  position: relative;
  padding-top: 20px;
  transition: 0.3s;
}

.single-vm-wrapper .description {
  font-weight: 500;
  font-size: 18px;
  color: #120f0d;
  padding: 10px;
  z-index: 1;
  position: relative;
  transition: 0.3s;
  line-height: 1.7;
}

.single-vm-wrapper .description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-vm-wrapper .description ul li {
  display: flex;
  gap: 10px;
}

.single-vm-wrapper .description ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  color: #F81D1D;
  transition: 0.3s;
}

.single-vm-wrapper:hover .title,
.single-vm-wrapper:hover .description {
  color: white;
}

.single-vm-wrapper:hover ul li:before {
  color: white;
}

.single-vm-wrapper:hover .bg {
  clip-path: circle(200% at 100% 0);
}

.swiper-pagination-bullet {
  opacity: 1;
  background: #B4B4B4;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #120F0D;
}

.testimonials-section .swiper-slide {
  height: auto;
  padding-bottom: 20px;
}

.testimonials-section .single-testimonial-card {
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #FEE2E2;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.testimonials-section .single-testimonial-card .testimonials-text {
  font-size: 16px;
  line-height: 1.8;
  color: #120F0D;
  margin-bottom: 40px;
}

.testimonials-section .single-testimonial-card .card-footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.testimonials-section .single-testimonial-card .user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  direction: rtl;
}

.testimonials-section .single-testimonial-card .user-info .user-meta .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
  justify-content: flex-start;
}

.testimonials-section .single-testimonial-card .user-info .user-meta .stars i {
  color: #FFC107;
  font-size: 12px;
}

.testimonials-section .single-testimonial-card .user-info .user-meta .name {
  font-size: 16px;
  font-weight: 700;
  color: #120F0D;
  display: block;
}

.testimonials-section .single-testimonial-card .user-info .user-meta .role {
  font-size: 12px;
  color: #999;
  display: block;
}

.testimonials-section .single-testimonial-card .user-info .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F81D1D;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials-section .single-testimonial-card .user-info .user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonials-section .single-testimonial-card .quote-icon {
  color: #F81D1D;
  font-size: 28px;
  line-height: 1;
  opacity: 0.9;
}

.testimonials-section .single-testimonial-card.active,
.testimonials-section .single-testimonial-card:hover {
  border-color: #F81D1D;
  border-bottom-width: 3px;
  box-shadow: 0 15px 40px rgba(248, 29, 29, 0.08);
  transform: translateY(-5px);
}

.testimonials-swiper {
  padding-bottom: 40px;
  padding-inline: 10px;
}

footer {
  position: relative;
  background: #4A0006;
  padding-top: 50px;
  margin-top: 50px;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  footer {
    padding-top: 40px;
    margin-top: 50px;
  }
}

footer .footer-about img {
  max-height: 80px;
  margin-bottom: 25px;
  display: block;
}

footer .footer-about .footer-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 320px;
}

footer .footer-about .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

footer .footer-about .social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: 0.3s;
}

footer .footer-about .social-icons a:hover {
  background: white;
  color: #4A0006;
  border-color: white;
  transform: translateY(-3px);
}

footer .footer-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
}

footer .footer-menu .footer-links-grid {
  display: block;
  -moz-columns: 2;
  columns: 2;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

footer .footer-menu .footer-links-grid li {
  margin-bottom: 12px;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

footer .footer-menu a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  text-decoration: none;
  display: block;
}

footer .footer-menu a:hover {
  color: #fff;
  padding-inline-start: 5px;
}

footer .footer-newsletter .newsletter-form .wpforms-submit-container {
  display: flex;
}

footer .footer-newsletter .newsletter-form .wpforms-field {
  padding: 0 !important;
}

footer .footer-newsletter .newsletter-form .input-group,
footer .footer-newsletter .newsletter-form .wpforms-form {
  background: #fff;
  border-radius: 10px !important;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

footer .footer-newsletter .newsletter-form .input-group .form-control,
footer .footer-newsletter .newsletter-form .input-group .wpforms-field-large,
footer .footer-newsletter .newsletter-form .wpforms-form .form-control,
footer .footer-newsletter .newsletter-form .wpforms-form .wpforms-field-large {
  background: transparent;
  border: none;
  color: #120F0D;
  font-size: 14px;
  height: 48px;
  padding-inline: 15px;
  box-shadow: none !important;
  flex-grow: 1;
  direction: rtl;
  outline: 0 !important;
}

footer .footer-newsletter .newsletter-form .input-group .form-control::-moz-placeholder,
footer .footer-newsletter .newsletter-form .input-group .wpforms-field-large::-moz-placeholder,
footer .footer-newsletter .newsletter-form .wpforms-form .form-control::-moz-placeholder,
footer .footer-newsletter .newsletter-form .wpforms-form .wpforms-field-large::-moz-placeholder {
  color: #999;
}

footer .footer-newsletter .newsletter-form .input-group .form-control::placeholder,
footer .footer-newsletter .newsletter-form .input-group .wpforms-field-large::placeholder,
footer .footer-newsletter .newsletter-form .wpforms-form .form-control::placeholder,
footer .footer-newsletter .newsletter-form .wpforms-form .wpforms-field-large::placeholder {
  color: #999;
}

footer .footer-newsletter .newsletter-form .input-group .btn-red,
footer .footer-newsletter .newsletter-form .input-group .wpforms-submit,
footer .footer-newsletter .newsletter-form .wpforms-form .btn-red,
footer .footer-newsletter .newsletter-form .wpforms-form .wpforms-submit {
  background: #F81D1D;
  color: #fff;
  border: none;
  border-radius: 10px !important;
  padding: 0 30px;
  height: 48px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
  flex-shrink: 0;
  margin-inline-end: -2px;
}

footer .footer-newsletter .newsletter-form .input-group .btn-red:hover,
footer .footer-newsletter .newsletter-form .input-group .wpforms-submit:hover,
footer .footer-newsletter .newsletter-form .wpforms-form .btn-red:hover,
footer .footer-newsletter .newsletter-form .wpforms-form .wpforms-submit:hover {
  background: rgb(194.4763948498, 6.0236051502, 6.0236051502) !important;
  box-shadow: 0 4px 12px rgba(248, 29, 29, 0.2) !important;
}

footer .copyrights {
  padding-block: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .copyrights p,
footer .copyrights a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

footer .copyrights a:hover {
  color: #F81D1D;
}

@media only screen and (max-width: 991px) {

  footer .footer-about,
  footer .footer-menu,
  footer .footer-newsletter {
    margin-bottom: 40px;
    text-align: center;
  }

  footer .footer-about .social-icons,
  footer .footer-menu .social-icons,
  footer .footer-newsletter .social-icons {
    justify-content: center;
  }

  footer .footer-about img,
  footer .footer-menu img,
  footer .footer-newsletter img {
    margin-inline: auto;
  }

  footer .footer-about .footer-desc,
  footer .footer-menu .footer-desc,
  footer .footer-newsletter .footer-desc {
    margin-inline: auto;
  }

  footer .footer-menu .footer-links-grid {
    justify-items: center;
  }
}

.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 18;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.floating-icons .up-btn {
  background-color: #F81D1D;
  filter: drop-shadow(0px 3px 6px rgba(209, 65, 75, 0.47));
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
}

.floating-icons .up-btn.show {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.floating-icons .up-btn:hover {
  background-color: white;
  color: #120F0D;
}

.floating-icons .whatsapp-icon {
  background-color: #2AA81A;
  color: white;
  padding: 10px;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 20px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pulse-green 2s infinite;
}

.floating-icons .whatsapp-icon:hover {
  background-color: #F81D1D;
  color: white;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 168, 26, 0.93);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(225, 78, 29, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(225, 78, 29, 0);
  }
}

.breadcrumb-section {
  background-size: cover !important;
  padding-block: 2rem;
}

@media only screen and (max-width: 600px) {
  .breadcrumb-section {
    padding-block: 2rem;
  }
}

.breadcrumb-section ul {
  padding: 0;
  margin: 0;
}

.breadcrumb-section ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-section ul li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #D2D2D2;
  margin-inline: 10px;
}

.breadcrumb-section ul li a {
  color: #D2D2D2;
  transition: 0.3s;
  font-size: 20px;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .breadcrumb-section ul li a {
    font-size: 16px;
  }
}

.breadcrumb-section ul li a:hover {
  color: #F81D1D;
}

.breadcrumb-section .main-title {
  color: white;
  font-size: 35px;
  margin: 10px 0 0;
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .breadcrumb-section .main-title {
    font-size: 25px;
  }
}

.share-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #F81D1D;
}

.share-btn .front {
  position: absolute;
  inset: 0;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F81D1D;
  transition: 0.3s;
  font-weight: bold;
}

.share-btn .back {
  display: flex;
  gap: 15px;
}

.share-btn .back a {
  color: #F81D1D;
}

.share-btn .back a:hover {
  color: #120F0D;
}

.share-btn:hover .front {
  transform: translateX(-90%);
}

.post-content {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination .page-link {
  color: #120F0D;
  background-color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex;
  font-size: 20px;
  box-shadow: none !important;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-family: Arial, Helvetica, sans-serif;
}

.pagination .page-link:hover,
.pagination .page-link.active {
  background-color: #F81D1D;
  color: white;
}

.contact-form {
  background: #DBE0E1;
  padding: 24px;
  border-radius: 5px;
}

@media only screen and (min-width: 900px) {
  .contact-form {
    padding-inline-end: 100px;
  }
}

.contact-form label {
  font-size: 20px;
  margin-bottom: 10px;
  color: #120F0D;
  font-weight: bold;
}

.contact-form .form-control {
  border-radius: 0;
  background-color: transparent !important;
  border: none;
  opacity: 0.8;
  color: #120F0D;
  font-size: 20px;
  margin-bottom: 16px;
  padding: 10px;
  transition: 0.3s;
  direction: rtl;
  box-shadow: 0 1px 0 0 rgba(248, 29, 29, 0.5);
}

.contact-form .form-control::-moz-placeholder {
  font-size: 16px;
}

.contact-form .form-control::placeholder {
  font-size: 16px;
}

.contact-form .form-control:focus {
  box-shadow: 0 1px 0 0 #F81D1D;
  outline: none;
  transition: 0.3s;
  background-color: #fff;
  opacity: 1;
}

.contact-form .btn {
  padding-inline: 3rem;
  margin-top: 1rem;
}

.contact-form-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-info {
  padding: 4rem 2rem;
  border-radius: 5px;
  background: #120F0D;
  position: relative;
  filter: drop-shadow(0px 3px 6px rgba(18, 15, 13, 0.44));
}

@media only screen and (min-width: 900px) {
  .contact-info {
    margin-inline-start: -100px;
  }
}

.contact-info ul {
  line-height: 2.5;
}

.contact-info li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.contact-info li a:hover {
  color: #F81D1D;
}

.contact-info li a:hover i {
  background: white;
  color: #F81D1D;
}

.contact-info li i {
  width: 23px;
  height: 23px;
  background: #fff;
  color: #120F0D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 10px;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 15px;
}

.map-wrapper {
  width: 100%;
  margin-top: 3rem;
}

.map-wrapper iframe {
  width: 100%;
  display: block;
  max-height: 240px;
}

@media only screen and (max-width: 600px) {
  .about-content {
    text-align: center;
  }
}

.contact-info-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #F81D1D;
  padding-top: 40px;
}

.contact-info-content .contact-info-item:last-child {
  flex-grow: 1;
  flex-basis: 100%;
}

.contact-info-content .contact-info-item i {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: #F81D1D;
  color: #120F0D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-info-content .contact-info-item p {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
}

.contact-info-content .contact-info-item a {
  font-size: 18px;
  color: white;
  font-weight: 400;
  transition: 0.3s;
}

.contact-info-content .contact-info-item a:hover {
  color: #F81D1D;
}

.quotation-form {
  padding: 50px;
  background: #ECECEC;
  border: 0;
  border-radius: 10px;
}

.quotation-form .form-control {
  background-color: #ECECEC;
}

.book-page-wrapper {
  background: url("../images/book-bg.jpg") no-repeat;
  padding-block: 50px;
  background-size: 100% auto;
}

@media only screen and (max-width: 600px) {
  .book-page-wrapper {
    background-size: cover;
  }
}

.book-form {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 50px 20%;
}

.book-form label {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}

.book-form .form-control {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(13, 33, 50, 0.6117647059);
  border-radius: 5px;
  color: #120F0D;
  padding: 10px;
  transition: 0.3s;
  direction: rtl;
  margin-bottom: 16px;
}

.book-form .form-control:focus {
  border-color: #F81D1D;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  outline: none;
  transition: 0.3s;
  background: #fff;
}

.book-appointment-section {
  background-size: cover;
  background-position: center;
  position: relative;
}

.book-appointment-section .appointment-text {
  font-size: 18px;
  color: #120F0D;
  opacity: 0.8;
}

.book-appointment-section .appointment-form .form-control,
.book-appointment-section .appointment-form .form-select {
  background-color: rgba(224, 224, 224, 0.8);
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 16px;
  color: #120F0D;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  height: auto;
}

.book-appointment-section .appointment-form .form-control::-moz-placeholder,
.book-appointment-section .appointment-form .form-select::-moz-placeholder {
  color: #120F0D;
  opacity: 0.6;
}

.book-appointment-section .appointment-form .form-control::placeholder,
.book-appointment-section .appointment-form .form-select::placeholder {
  color: #120F0D;
  opacity: 0.6;
}

.book-appointment-section .appointment-form .form-control:disabled,
.book-appointment-section .appointment-form .form-select:disabled {
  background-color: rgb(224, 224, 224) !important;
  color: #120F0D;
  opacity: 0.6;
}

.book-appointment-section .appointment-form .form-control:focus,
.book-appointment-section .appointment-form .form-select:focus {
  background: white;
  border-color: #F81D1D;
  box-shadow: 0 0 0 0.25rem rgba(248, 29, 29, 0.25);
}

.book-appointment-section .appointment-form .input-group .input-group-text {
  background: rgba(224, 224, 224, 0.8);
  border: 1px solid #D9D9D9;
  border-inline-end: none;
  border-radius: 0 10px 10px 0;
  color: #120F0D;
  font-weight: 500;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.book-appointment-section .appointment-form .input-group .form-control {
  border-radius: 10px 0 0 10px;
  border-inline-start: none;
}

.book-appointment-section .appointment-form .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline-start: 0;
}

.book-appointment-section .appointment-form .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border: 1.5px solid #F81D1D;
  margin-top: 0;
  margin-inline-start: 0;
  flex-shrink: 0;
}

.book-appointment-section .appointment-form .form-check .form-check-input:checked {
  background-color: transparent;
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23F81D1D'/%3e%3c/svg%3e"); */
  border-color: #F81D1D;
}

.book-appointment-section .appointment-form .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 29, 29, 0.25);
  border-color: #F81D1D;
}

.book-appointment-section .appointment-form .form-check .form-check-label {
  font-size: 16px;
  font-weight: 600;
  color: #120F0D;
}

.branches-section {
  padding-block: 64px;
}

.single-branch {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);

  .show-map {
    color: #F81D1D;
    font-weight: 600;
    font-size: 14px;
    margin-top: 14px;
    display: block;

    i {
      margin-inline-end: 5px;
      color: #fff;
    }

    &:hover {
      color: #fff;
    }
  }
}

.single-branch .branch-img {
  width: 100%;
  height: 100%;
}

.single-branch .branch-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  filter: brightness(0.85);
}

.single-branch .branch-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.single-branch .branch-info {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  padding: 30px 25px;
  z-index: 2;
  color: white;
  transition: all 0.4s ease-in-out;
}

.single-branch .branch-info .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  transition: 0.3s;
}

.single-branch .branch-info .description {
  font-size: 16px;
  opacity: 0.85;
  font-weight: 400;
}

.single-branch:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.3);
}

.single-branch:hover .branch-img img {
  transform: scale(1.08);
  filter: brightness(1);
}

.single-branch:hover .branch-img::after {
  height: 65%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
}

.single-branch:hover .branch-info {
  padding-bottom: 35px;
}

.why-us-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid #F5F5F5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-us-card .icon {
  font-size: 45px;
  color: #F81D1D;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.why-us-card .title {
  font-size: 16px;
  font-weight: 700;
  color: #120F0D;
  margin-bottom: 15px;
}

.why-us-card .description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.why-us-card:hover {
  border-color: #F81D1D;
  border-bottom-width: 3px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.why-us-card:hover .icon {
  transform: scale(1.1);
}

.award-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid #F5F5F5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-card .award-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.award-card .award-logo img {
  max-height: 100%;
  width: auto;
}

.award-card .award-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 0;
}

.award-card:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
  border-color: #eee;
}

.vision-mission-section {
  background-size: cover;
  background-position: center;
}

.vision-mission-section .vm-card .icon {
  font-size: 28px;
  color: #F81D1D;
}

.vision-mission-section .vm-card .title {
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.vision-mission-section .vm-card .description {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  opacity: 0.9;
}

.vision-mission-section .vm-card .values-list {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.vision-mission-section .vm-card .values-list span {
  padding-inline: 5px;
}

.vision-mission-section .legacy-section .legacy-img img {
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}

.vision-mission-section .legacy-section .legacy-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.vision-mission-section .legacy-section .legacy-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.vision-mission-section .legacy-section .quote-wrapper .quote-title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.vision-mission-section .legacy-section .quote-wrapper .quote-text {
  font-size: 16px;
  font-weight: bold;
  color: #4A0006;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .vision-mission-section .vm-card {
    text-align: center;
  }

  .vision-mission-section .vm-card .d-flex {
    justify-content: center !important;
  }

  .vision-mission-section .legacy-content {
    text-align: center !important;
  }
}

/* News Card Global Styles */
.news-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.news-card .news-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 15px;
}

.news-card .news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}

.news-card .news-img .news-date {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #120F0D;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.news-card .news-img .news-date i {
  color: #F81D1D;
}

.news-card .news-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-card .news-content .news-title {
  font-size: 16px;
  font-weight: 500;
  color: #120F0D;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.news-card .news-content .read-more-btn {
  margin-top: auto;
  /* color: #F81D1D; */
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  transition: 0.3s;
  padding: 8px 20px;
}



.news-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-card:hover .news-title {
  color: #F81D1D;
}

.news-card:hover .read-more-btn {
  gap: 15px;
}

.news-card:hover .read-more-btn i {
  transform: translateX(-5px);
}

/* Blogs Section - inherits from global news-card styles */
.blogs-section .news-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blogs-section .news-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blogs-section .news-card .news-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 15px;
}

.blogs-section .news-card .news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s;
}

.blogs-section .news-card .news-img .news-date {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #120F0D;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.blogs-section .news-card .news-img .news-date i {
  color: #F81D1D;
}

.blogs-section .news-card .news-content {
  padding: 20px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blogs-section .news-card .news-content .news-title {
  font-size: 16px;
  font-weight: 500;
  color: #120F0D;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

/* .blogs-section .news-card .news-content .read-more-btn {
  margin-top: auto;
  color: #F81D1D;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  transition: 0.3s;
}
*/
.blogs-section .news-card .news-content .read-more-btn i {
  /* width: 35px;
  height: 35px;
  background: #F81D1D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(248, 29, 29, 0.3); */
  transition: 0.3s;
}

.blogs-section .news-card:hover .news-img img {
  transform: scale(1.1);
}

.blogs-section .news-card:hover .news-title {
  color: #F81D1D;
}

.blogs-section .news-card:hover .read-more-btn {
  gap: 15px;
}

.blogs-section .news-card:hover .read-more-btn i {
  transform: translateX(-5px);
}

/* App Download Section */
.app-download-section {
  padding-block: 64px;
}

.app-download-section .app-download-wrapper {
  background: linear-gradient(87.08deg, rgba(248, 29, 29, 0.8) 0%, rgba(198, 0, 15, 0.8) 100%);
  padding: 20px 90px;
  position: relative;
}

@media (max-width: 991px) {
  .app-download-section .app-download-wrapper {
    padding: 40px 20px;
  }
}

.app-download-section .app-download-wrapper .shapes {
  position: absolute;
  top: 10%;
  inset-inline-end: 6%;
  width: 35%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.app-download-section .app-download-wrapper .shapes img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.app-download-section .app-download-wrapper .section-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;

  &:after {
    display: none;
  }
}

@media (max-width: 767px) {
  .app-download-section .app-download-wrapper .section-title {
    font-size: 24px;
  }
}

.app-download-section .app-download-wrapper .description {
  font-size: 18px;
  line-height: 1.7;

}

@media (max-width: 991px) {
  .app-download-section .app-download-wrapper .description {
    margin-inline: auto;
  }
}

.app-download-section .app-download-wrapper .download-buttons .download-btn {
  transition: 0.3s;
}

.app-download-section .app-download-wrapper .download-buttons .download-btn img {
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}

.app-download-section .app-download-wrapper .download-buttons .download-btn:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.app-download-section .app-download-wrapper .app-mockup {
  text-align: center;
  position: absolute;
  top: -11%;
  inset-inline-end: 10%;
}

@media (max-width: 991px) {
  .app-download-section .app-download-wrapper .app-mockup {
    display: none;
  }
}

.app-download-section .app-download-wrapper .app-mockup img {
  max-height: 400px;
}

@media only screen and (max-width: 767px) {
  .top-bar .row {
    flex-wrap: nowrap;
  }

  .top-bar ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .top-bar ul::-webkit-scrollbar {
    display: none;
  }

  .top-bar ul a {
    white-space: nowrap;
    font-size: 12px;
    padding-inline: 6px;
  }

  .top-bar .language-switcher a {
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-section .hero-main-content {
    padding-block: 2.5rem 3rem;
  }

  .hero-section .hero-main-content .hero-title {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .hero-section .hero-main-content .hero-text {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.8;
  }

  .about-us-section {
    padding-block: 40px 0;
  }

  .about-us-section .about-title {
    text-align: center;
    font-size: 20px;
  }

  .about-us-section .about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-us-section .about-video .custom-video-player {
    border-radius: 12px;
  }

  .departments-section {
    padding-block: 40px;
  }

  .book-appointment-section {
    padding-block: 40px;
  }

  .book-appointment-section .appointment-content {
    text-align: center;
    margin-bottom: 10px;
  }

  .book-appointment-section .appointment-title {
    font-size: 20px !important;
  }

  .book-appointment-section .appointment-text {
    font-size: 15px;
  }

  .book-appointment-section .appointment-form .form-control,
  .book-appointment-section .appointment-form .form-select {
    padding: 10px 15px;
    font-size: 14px;
  }

  .book-appointment-section .appointment-form .form-check-label {
    font-size: 14px !important;
  }

  .branches-section {
    padding-block: 40px;
  }

  .single-branch {
    height: 200px;
    margin-bottom: 16px;
  }

  .single-branch .branch-info {
    padding: 20px 18px;
  }

  .single-branch .branch-info .title {
    font-size: 17px;
  }

  .single-branch .branch-info .description {
    font-size: 14px;
  }

  .why-us {
    padding-block: 40px;
  }

  .why-us-card {
    padding: 18px 14px;
  }

  .why-us-card .icon {
    font-size: 34px;
    margin-bottom: 15px;
  }

  .why-us-card .title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .why-us-card .description {
    font-size: 13px;
    line-height: 1.6;
  }

  .offers-section {
    padding-block: 40px;
  }

  .awards-section {
    padding-block: 40px;
  }

  .award-card {
    padding: 20px 16px;
  }

  .award-card .award-logo {
    height: 90px;
    margin-bottom: 18px;
  }

  .award-card .award-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .vision-mission-section {
    padding-block: 40px !important;
  }

  .vision-mission-section .vm-card .title {
    font-size: 18px;
  }

  .vision-mission-section .vm-card .description {
    font-size: 14px;
  }

  .vision-mission-section .vm-card .values-list {
    font-size: 14px;
  }

  .vision-mission-section .legacy-section {
    margin-top: 20px !important;
    padding-top: 20px !important;
  }

  .vision-mission-section .legacy-section .legacy-title {
    font-size: 20px;
  }

  .vision-mission-section .legacy-section .legacy-desc {
    font-size: 14px;
  }

  .vision-mission-section .legacy-section .legacy-img {
    order: -1;
    margin-bottom: 25px;
  }

  .vision-mission-section .legacy-section .legacy-img img {
    max-width: 160px;
  }

  .vision-mission-section .legacy-section .quote-wrapper {
    margin-top: 20px !important;
  }

  .vision-mission-section .legacy-section .quote-wrapper .quote-title {
    font-size: 14px;
  }

  .vision-mission-section .legacy-section .quote-wrapper .quote-text {
    font-size: 14px;
  }

  .blogs-section {
    padding-block: 40px;
  }

  .app-download-section {
    padding-block: 40px;
  }

  .app-download-section .app-download-wrapper {
    padding: 30px 20px;
    border-radius: 12px;
    overflow: hidden;
  }

  .app-download-section .app-download-wrapper .section-title {
    font-size: 20px;
  }

  .app-download-section .app-download-wrapper .description {
    font-size: 15px;
  }

  .app-download-section .app-download-wrapper .shapes {
    opacity: 0.15;
  }

  .testimonials-section {
    padding-block: 40px;
  }

  .testimonials-section .single-testimonial-card {
    padding: 14px 16px;
  }

  .testimonials-section .single-testimonial-card .testimonials-text {
    font-size: 14px;
    margin-bottom: 25px;
  }

  footer {
    padding-top: 35px;
    margin-top: 30px;
  }

  footer .footer-about img {
    max-height: 60px;
  }

  footer .footer-about .footer-desc {
    font-size: 14px;
  }

  footer .footer-title {
    font-size: 16px;
    margin-bottom: 18px;
  }

  footer .footer-menu a {
    font-size: 14px;
  }

  footer .footer-newsletter .newsletter-form .input-group .form-control {
    font-size: 13px;
    height: 44px;
  }

  footer .footer-newsletter .newsletter-form .input-group .btn-red {
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
  }

  footer .copyrights p {
    font-size: 12px;
  }

  .floating-icons {
    bottom: 14px;
    right: 14px;
    gap: 8px;
  }

  .floating-icons .whatsapp-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .floating-icons .up-btn {
    width: 34px;
    height: 34px;
    padding: 7px;
    font-size: 13px;
    line-height: 18px;
  }

  .py-64 {
    padding-block: 35px;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

/* ============================================
   Our History Timeline Section
============================================ */

.history-swiper-outer {
  position: relative;
  padding: 0 70px;
}

.history-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #F81D1D;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(36px + 28px);
  transform: translateY(-50%);
  transition: background 0.3s;
  z-index: 10;
}

.history-btn:hover {
  background: #c91717;
}

.history-btn.swiper-button-disabled {
  background: rgba(248, 29, 29, 0.4);
  cursor: not-allowed;
}

.history-btn-next {
  left: 0;
}

.history-btn-prev {
  right: 0;
}

.history-swiper {
  position: relative;
  overflow: hidden;
}

.history-timeline-line {
  position: absolute;
  top: calc(36px + 28px);
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
  pointer-events: none;
}

.swiper-slide .history-year {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #120F0D;
  margin-bottom: 8px;
  height: 36px;
  line-height: 36px;
}

.history-dot-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.history-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F81D1D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.history-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0f0f0;
  text-align: center;
}

.history-card-img {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  margin-bottom: 16px;
}

.history-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #120F0D;
  margin-bottom: 10px;
}

.history-card-desc {
  font-size: 13px;
  /* color: #F81D1D; */
  line-height: 1.9;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .history-swiper-outer {
    padding: 0 55px;
  }
}

@media (max-width: 576px) {
  .history-swiper-outer {
    padding: 0 48px;
  }

  .history-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .history-card-img {
    height: 160px;
  }
}



.page-head {
  background: linear-gradient(rgba(0, 0, 0, 0.7), lch(0% 0 0 / 0.7)), url("../images/slider.webp") no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px;
  position: relative;
  text-align: center;
  color: #fff;

  .head-title {
    font-size: 28px;

  }

  @media (max-width: 991px) {
    padding-block: 35px;

    .head-title {
      font-size: 22px;
    }
  }
}

.department-services {
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 3;


    @media screen and (max-width:991px) {
      columns: 1;
    }

    li {
      padding-block: 10px;

      &:before {
        content: "✓";
        color: #F81D1D;
        margin-inline-end: 8px;
      }
    }
  }
}

/* ── Departments Filter (archive-depart) ────────────────────────── */
.departments-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
}

.departments-filter .form-label {
  margin-bottom: 0;
  font-weight: 600;
  white-space: nowrap;
}

.departments-filter .form-select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.departments-filter .form-select:focus {
  border-color: #F81D1D;
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 29, 29, 0.1);
}

#departments-container {
  transition: opacity 0.3s ease;
}

/* ── Doctors Filter (archive-doctors) ────────────────────────── */
.doctors-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.doctors-filter .form-label {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
}

.doctors-filter .form-select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.doctors-filter .form-select:focus {
  border-color: #F81D1D;
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 29, 29, 0.1);
}

#doctors-container {
  transition: opacity 0.3s ease;
}

/* ── Load More Button ──────────────────────────────────────────── */
.btn-load-more {
  background-color: #F81D1D;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
}

.btn-load-more:hover {
  background-color: #d41515;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 29, 29, 0.2);
}

.btn-load-more:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-load-more.loading {
  position: relative;
  pointer-events: none;
}

.btn-load-more.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 20px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Related Doctors Swiper (single-depart) ─────────────────────── */
.related-doctors .doctors-swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 48px;
}

.related-doctors .swiper-button-next,
.related-doctors .swiper-button-prev {
  color: #F81D1D;

  width: 36px;
  height: 36px;
}

.related-doctors .swiper-button-next::after,
.related-doctors .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.doctor-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.doctor-card-link:hover {
  transform: translateY(-8px);
  opacity: 0.95;
}

.doctor-card {
  text-align: center;
  padding: 8px 12px 16px;
}

.doctor-img-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
}

.doctor-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fde8e8;
  border-radius: 50%;
  transform: scale(1.12);
  z-index: 0;
}

.doctor-img-wrap img {
  position: relative;
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  z-index: 1;
}

.doctor-card .doctor-name {
  color: #F81D1D;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
}

.doctor-card .doctor-specialty {
  color: #888;
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 767px) {

  .doctor-img-wrap,
  .doctor-img-wrap img {
    width: 130px;
    height: 130px;
  }
}

/* ── Related Departments Swiper (single-depart) ─────────────────────── */
.related-departments .related-departments-swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 48px;
}

.related-departments .swiper-button-next,
.related-departments .swiper-button-prev {
  color: #F81D1D;
  width: 36px;
  height: 36px;
}

.related-departments .swiper-button-next::after,
.related-departments .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

/* Doctor Page Styles */
.single-doctor-section {
  background: #FAFAFA;
}

.doctor-header-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.doctor-image-wrap {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(248, 29, 29, 0.15);
}

.doctor-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.doctor-image-wrap:hover img {
  transform: scale(1.05);
}

.doctor-header-info {
  padding-right: 20px;
}

.doctor-title {
  font-size: 32px;
  font-weight: 700;
  color: #120F0D;
}

.specialty-badge {
  display: inline-block;
  background: #F81D1D;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.experience-item,
.languages-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #120F0D;
}

.doctor-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #120F0D;
  position: relative;
  padding-bottom: 15px;

  &.text-center {
    &::after {
      right: 50%;
      transform: translateX(50%);
    }
  }
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 60px;
  height: 4px;
  background: #F81D1D;
  border-radius: 2px;
}

.section-content {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.section-content h4 {
  color: #F81D1D;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-content p {
  margin-bottom: 10px;
}

.section-content ul,
.section-content ol {
  margin: 15px 0;
  padding-right: 20px;
}

.section-content li {
  margin-bottom: 8px;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.skill-item {
  display: flex;
  align-items: center;
}

.skill-badge {
  width: 100%;
  background: #F5F5F5;
  border-inline-start: 4px solid #F81D1D;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.skill-badge:hover {
  background: #FFF1F1;
  box-shadow: 0 2px 8px rgba(248, 29, 29, 0.1);
}

.skill-badge i {
  color: #F81D1D;
  font-size: 14px;
}

.skill-badge span {
  color: #120F0D;
  font-weight: 500;
  font-size: 14px;
}

/* Journey Timeline */
.journey-timeline {
  position: relative;
  padding: 20px 0;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ECECEC;
}

.journey-item {
  position: relative;
  padding: 20px;
  padding-right: 40px;
  margin-bottom: 20px;
  background: #F5F5F5;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.journey-item:hover {
  background: #FFF1F1;
}

.journey-dot {
  position: absolute;
  right: 0;
  top: 25px;
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid #F81D1D;
  border-radius: 50%;
  z-index: 2;
}

.journey-year {
  display: inline-block;
  background: #F81D1D;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.journey-job {
  margin: 0;
  color: #120F0D;
  font-weight: 600;
  font-size: 15px;
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Sidebar */
.sidebar-sticky {
  position: sticky;
  top: 80px;
}

.doctor-form-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #F81D1D;
}

.form-header {
  border-bottom: 2px solid #ECECEC;
  padding-bottom: 20px;
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  color: #120F0D;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.form-wrapper {
  margin-top: 20px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #120F0D;
}

.contact-item {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .doctor-header-card {
    padding: 30px 20px;
  }

  .doctor-header-info {
    padding-right: 0;
    padding-top: 20px;
  }

  .doctor-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }

  .doctor-section {
    padding: 25px 20px;
  }

  .sidebar-sticky {
    position: static;
    top: auto;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .doctor-form-card,
  .contact-card {
    padding: 25px 20px;
  }
}

.doctor-form-card #hospital-department-doctor-form {

  .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }

}

/* ======================================================================
   SINGLE OFFER PAGE STYLES
   ====================================================================== */

.single-offer-section {
  background: #FAFAFA;
}

/* Gallery Styles */
.offer-gallery-wrap {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.gallery-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 15px;
  display: block;
  cursor: pointer;
  position: relative;
}

.gallery-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 29, 29, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.gallery-image:hover::after {
  background: rgba(248, 29, 29, 0.15);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 0;
}

.gallery-image:hover img {
  transform: scale(1.08);
}

/* Main Swiper Navigation */
.offer-main-swiper {
  position: relative;
}

.offer-main-swiper .swiper-button-next,
.offer-main-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(248, 29, 29, 0.9);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.offer-main-swiper .swiper-button-next:hover,
.offer-main-swiper .swiper-button-prev:hover {
  background: #F81D1D;
  box-shadow: 0 4px 15px rgba(248, 29, 29, 0.3);
}

.offer-main-swiper .swiper-button-next::after,
.offer-main-swiper .swiper-button-prev::after {
  font-size: 20px;
}

/* .offer-main-swiper .swiper-button-prev {
  left: 10px;
  right: auto;
}

.offer-main-swiper .swiper-button-next {
  right: 10px;
  left: auto;
} */

/* Thumbnails */
.offer-thumbs-swiper {
  margin-top: 15px;
}

.thumbnail-item {
  cursor: pointer;
  border: 3px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-thumbs-swiper .swiper-slide-thumb-active .thumbnail-item {
  border-color: #F81D1D;
  box-shadow: 0 2px 10px rgba(248, 29, 29, 0.2);
}

.thumbnail-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Single Image Fallback */
.single-image-wrap {
  overflow: hidden;
  border-radius: 20px;
}

.single-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content Styles */
.offer-content {
  padding: 20px;
}

.offer-title {
  font-size: 32px;
  font-weight: 700;
  color: #120F0D;
  line-height: 1.3;
}

.offer-price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(248, 29, 29, 0.1) 0%, rgba(248, 29, 29, 0.05) 100%);
  border-right: 4px solid #F81D1D;
  border-radius: 10px;
}

.price-label {
  font-weight: 700;
  color: #120F0D;
  font-size: 16px;
}

.price-value {
  font-size: 28px;
  font-weight: 700;
  color: #F81D1D;
}

.offer-city-section {
  padding: 15px 0;
}

.city-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.offer-description {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.offer-services {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #F5F5F5;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #FFF1F1;
  transform: translateX(-5px);
}

.service-item i {
  color: #F81D1D;
  font-size: 16px;
  flex-shrink: 0;
}

.service-item span {
  color: #120F0D;
  font-weight: 500;
  font-size: 15px;
}

/* CTA Button */
.offer-cta {
  display: flex;
  gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .offer-gallery-wrap {
    padding: 15px;
  }

  .offer-title {
    font-size: 24px;
  }

  .price-value {
    font-size: 24px;
  }

  .offer-main-swiper .swiper-button-next,
  .offer-main-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .offer-main-swiper .swiper-button-next::after,
  .offer-main-swiper .swiper-button-prev::after {
    font-size: 16px;
  }

  .offer-description,
  .offer-services {
    padding: 20px;
  }

  .offer-content {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .offer-title {
    font-size: 20px;
  }

  .offer-main-swiper .swiper-button-next,
  .offer-main-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .offer-thumbs-swiper .swiper-slide {
    width: 80px !important;
  }
}

/* ======================================================================
   SINGLE PODCAST PAGE STYLES
   ====================================================================== */

.single-podcast-section {
  background: #FAFAFA;
}

/* Podcast Sidebar Card (Single Page) */
.podcast-sidebar-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 80px;
}

.podcast-thumbnail-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1/1;
}

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

/* Play Button Overlay */
.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.play-button {
  width: 80px;
  height: 80px;
  background: #F81D1D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(248, 29, 29, 0.4);
}

/* Podcast Meta */
.podcast-meta {
  border-top: 2px solid #ECECEC;
  padding-top: 20px;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.meta-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #120F0D;
  font-weight: 600;
  min-width: 100px;
}

.meta-value {
  color: #666;
}

/* Podcast Content */
.podcast-content {
  padding: 0;
}

.podcast-title {
  font-size: 36px;
  font-weight: 700;
  color: #120F0D;
  line-height: 1.3;
  margin-bottom: 25px;
}

.podcast-excerpt {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 20px;
  background: linear-gradient(135deg, rgba(248, 29, 29, 0.05) 0%, rgba(248, 29, 29, 0.02) 100%);
  border-right: 4px solid #F81D1D;
  border-radius: 10px;
}

.podcast-excerpt p {
  margin: 0;
}

.podcast-body {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.podcast-body h2,
.podcast-body h3 {
  color: #F81D1D;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.podcast-body p {
  margin-bottom: 15px;
}

.podcast-body ul,
.podcast-body ol {
  margin: 20px 0;
  padding-right: 20px;
}

.podcast-body li {
  margin-bottom: 10px;
}

/* Podcast Details Card */
.podcast-details-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #F81D1D;

  iframe {
    width: 100%;
    /* height: 200px; */
    border: none;
    border-radius: 10px;
  }
}

.podcast-details-card .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #120F0D;
  display: flex;
  align-items: center;
  gap: 10px;
}






/* Related Podcasts */
.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: #120F0D;
  display: flex;
  align-items: center;
  gap: 15px;
}

.heading-accent {
  width: 60px;
  height: 4px;
  background: #F81D1D;
  border-radius: 2px;
}

.related-podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.related-podcast-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.related-podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.card-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 4/3;
  margin: 12px;
  margin-bottom: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-podcast-card:hover .card-image img {
  transform: scale(1.1);
}

/* Play Overlay for Related Cards */
.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.related-podcast-card:hover .play-overlay {
  opacity: 1;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: #F81D1D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(248, 29, 29, 0.4);
}

.play-overlay:hover .play-btn {
  transform: scale(1.15);
}

.card-content {
  padding: 20px;
}

.related-podcast-card .card-title {
  font-size: 17px;
  font-weight: 700;
  color: #120F0D;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.related-podcast-card:hover .card-title {
  color: #F81D1D;
}

.card-excerpt {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ECECEC;
  padding-top: 15px;
}

.date {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

.mt-100 {
  margin-top: 100px;
}

/* Responsive */
@media (max-width: 992px) {
  .podcast-sidebar-card {
    position: static;
  }

  .podcast-title {
    font-size: 28px;
  }

  .related-podcasts-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .podcast-sidebar-card {
    padding: 20px;
  }

  .podcast-title {
    font-size: 24px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .podcast-actions {
    flex-direction: column;
  }

  .btn-share,
  .btn-save {
    width: 100%;
    justify-content: center;
  }

  .play-button {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .mt-100 {
    margin-top: 60px;
  }

  .section-heading {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .podcast-thumbnail-wrap {
    aspect-ratio: auto;
  }

  .podcast-title {
    font-size: 20px;
  }

  .related-podcasts-grid {
    grid-template-columns: 1fr;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* ======================================================================
   PODCAST ARCHIVE PAGE STYLES
   ====================================================================== */

.podcasts-archive-section {
  background: #FAFAFA;
}

.archive-header {
  text-align: center;
  margin-bottom: 50px;
}

.archive-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Podcasts Grid */
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.podcast-grid-item {
  height: 100%;
}

.podcast-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.podcast-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
}

.podcast-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Podcast Card Image */
.podcast-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}

.podcast-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-card-image img {
  transform: scale(1.1);
}

/* Play Overlay */
.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.podcast-card:hover .play-overlay {
  opacity: 1;
}

.play-icon {
  width: 70px;
  height: 70px;
  background: #F81D1D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(248, 29, 29, 0.5);
}

.play-overlay:hover .play-icon {
  transform: scale(1.15);
}

/* Podcast Card Content */
.podcast-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.podcast-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #120F0D;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.podcast-card:hover .podcast-card-title {
  color: #F81D1D;
}

.podcast-card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Podcast Card Footer */
.podcast-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid #ECECEC;
  font-size: 13px;
  flex-wrap: wrap;
}

.podcast-date,
.podcast-doctor {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #999;
  transition: color 0.3s ease;
}

.podcast-card:hover .podcast-date,
.podcast-card:hover .podcast-doctor {
  color: #F81D1D;
}

.podcast-date i,
.podcast-doctor i {
  font-size: 12px;
}

/* Read More Link */
.podcast-read-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #F81D1D;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.podcast-read-more i {
  transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-read-more {
  gap: 12px;
}

.podcast-card:hover .podcast-read-more i {
  transform: translateX(-4px);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 50px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #ECECEC;
  border-radius: 8px;
  color: #120F0D;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
}

.page-numbers:hover,
.page-numbers.current {
  background: #F81D1D;
  color: white;
  border-color: #F81D1D;
}

.page-numbers i {
  font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .podcasts-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }

  .podcast-card-title {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .podcasts-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .archive-description {
    font-size: 16px;
  }

  .podcast-card-content {
    padding: 20px;
  }

  .podcast-card-title {
    font-size: 15px;
  }

  .podcast-card-excerpt {
    font-size: 13px;
  }

  .podcast-card-footer {
    font-size: 12px;
  }

  .play-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .podcasts-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .archive-header {
    margin-bottom: 30px;
  }

  .podcast-card-content {
    padding: 18px;
  }

  .podcast-card-title {
    font-size: 14px;
  }

  .play-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Swiper Custom Styles */
.swiper-slide {
  height: auto;
}

.offer-thumbs-swiper .swiper-slide {
  width: 100px;
  height: 100px;
}

/* Job Categories Section */
.jobs-categories-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #dedede 100%);
  position: relative;
}

/* Media Hub Sections Navigation */
.sections {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 0;

  .nav-item {
    flex-basis: auto;
  }
}

.sections a {
  font-size: 15px;
  font-weight: 600;
  color: #120F0D;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
  padding: 12px 28px;
  background: #E8E8E8;
  border-radius: 25px;
  display: inline-block;
}

.sections a:hover {
  background: #F81D1D;
  color: white;
  box-shadow: 0 4px 12px rgba(248, 29, 29, 0.2);
}

@media (max-width: 768px) {
  .sections {
    gap: 15px;
  }

  .sections a {
    font-size: 14px;
    padding: 10px 24px;
  }
}

@media (max-width: 576px) {
  .sections {
    gap: 12px;
  }

  .sections a {
    font-size: 13px;
    padding: 9px 20px;
    border-radius: 20px;
  }
}

/* Sections Tabs */
.sections-tabs {
  border: none !important;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.sections-tab {
  font-size: 15px;
  font-weight: 600;
  color: #120F0D;
  position: relative;
  transition: 0.3s;
  padding: 12px 28px !important;
  background: #E8E8E8;
  border-radius: 25px;
  border: none !important;
  display: inline-block;
}

.sections-tab:hover {
  background: #F81D1D;
  color: white;
  box-shadow: 0 4px 12px rgba(248, 29, 29, 0.2);
}

.sections-tab.active {
  background: #F81D1D !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(248, 29, 29, 0.2);
}

@media (max-width: 768px) {
  .sections-tabs {
    gap: 15px;
  }

  .sections-tab {
    font-size: 14px;
    padding: 10px 24px !important;
  }
}

@media (max-width: 576px) {
  .sections-tabs {
    gap: 12px;
  }

  .sections-tab {
    font-size: 13px;
    padding: 9px 20px !important;
    border-radius: 20px;
  }
}

/* Accordion Styles */
.accordion-button {
  font-weight: 600;
  color: #120F0D;
  padding: 16px 20px;
  background-color: #F5F5F5;
  border: 1px solid #E0E0E0;
  transition: 0.3s;
}

.accordion-button:not(.collapsed) {
  background-color: #F81D1D;
  color: white;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:hover:not(.collapsed) {
  background-color: #e01818;
}

.accordion-button:focus {
  border-color: #F81D1D;
  box-shadow: 0 0 0 0.25rem rgba(248, 29, 29, 0.25);
}

.accordion-body {
  padding: 16px 20px;
  background-color: #FFFFFF;
  border-top: 1px solid #E0E0E0;
}

.accordion-item {
  border: 1px solid #E0E0E0;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

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

.accordion-header {
  margin: 0;
}

.single-text {
  padding: 10px 0;
  border-bottom: 1px solid #E0E0E0;

  &:before {
    content: '\f0c8';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-inline-end: 10px;
    color: #F81D1D;


  }
}

/* Featured Posts Section */
.featured-posts-section {
  position: relative;
  padding: 0;
  margin-bottom: 60px;
}

.featured-posts-swiper {
  width: 100%;
  position: relative;
}

.featured-post-slide {
  width: 100%;
  height: 500px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  align-items: flex-end;
}

.featured-post-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.featured-post-slide .slide-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  color: white;
  width: 100%;
}

.featured-post-slide .post-category {
  display: inline-block;
  background: #F81D1D;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.featured-post-slide .slide-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  color: white;
  transition: 0.3s;
}

.featured-post-slide .slide-excerpt {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-post-slide .slide-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 8px;
  transition: 0.3s;
}

.featured-post-slide .slide-link:hover {
  background: white;
  color: #F81D1D;
}

.featured-post-slide .slide-link i {
  transition: 0.3s;
}

.featured-post-slide:hover .slide-link i {
  transform: translateX(-5px);
}

.featured-post-slide .slide-meta {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: #120F0D;
  font-size: 13px;
}

.featured-post-slide .slide-meta i {
  color: #F81D1D;
}

/* Navigation Buttons */
.featured-posts-prev,
.featured-posts-next {
  width: 50px;
  height: 50px;
  background: rgba(248, 29, 29, 0.9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

.featured-posts-prev:hover,
.featured-posts-next:hover {
  background: #F81D1D;
  box-shadow: 0 6px 20px rgba(248, 29, 29, 0.4);
}

.featured-posts-prev {
  right: 70px;
}

.featured-posts-next {
  right: 10px;
}

.featured-posts-prev::after,
.featured-posts-next::after {
  content: none;
}

.featured-posts-prev i,
.featured-posts-next i {
  font-size: 20px;
}

/* Pagination */
.featured-posts-pagination {
  bottom: 30px;
  left: 30px;
  right: auto;
}

.featured-posts-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 8px;
  border-radius: 50%;
  transition: 0.3s;
}

.featured-posts-pagination .swiper-pagination-bullet-active {
  background: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .featured-post-slide {
    height: 400px;
  }

  .featured-post-slide .slide-content {
    padding: 40px;
  }

  .featured-post-slide .slide-title {
    font-size: 28px;
  }

  .featured-post-slide .slide-excerpt {
    font-size: 14px;
  }

  .featured-posts-prev {
    right: 60px;
  }

  .featured-posts-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .featured-post-slide {
    height: 350px;
    border-radius: 10px;
  }

  .featured-post-slide .slide-content {
    padding: 30px;
  }

  .featured-post-slide .slide-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .featured-post-slide .slide-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    margin-bottom: 15px;
  }

  .featured-post-slide .slide-meta {
    bottom: 20px;
    left: 20px;
    font-size: 12px;
    padding: 8px 15px;
  }

  .featured-posts-prev {
    width: 45px;
    height: 45px;
    right: 55px;
  }

  .featured-posts-next {
    width: 45px;
    height: 45px;
    right: 8px;
  }

  .featured-posts-prev i,
  .featured-posts-next i {
    font-size: 18px;
  }

  .featured-posts-pagination {
    bottom: 20px;
    left: 20px;
  }

  .featured-posts-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
  }
}

@media (max-width: 576px) {
  .featured-posts-section {
    margin-bottom: 40px;
  }

  .featured-post-slide {
    height: 280px;
    border-radius: 8px;
  }

  .featured-post-slide .slide-content {
    padding: 20px;
  }

  .featured-post-slide .post-category {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 10px;
  }

  .featured-post-slide .slide-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .featured-post-slide .slide-excerpt {
    display: none;
  }

  .featured-post-slide .slide-link {
    font-size: 14px;
    padding: 8px 15px;
    gap: 8px;
  }

  .featured-post-slide .slide-meta {
    bottom: 15px;
    left: 15px;
    font-size: 11px;
    padding: 6px 12px;
  }

  .featured-posts-prev {
    width: 40px;
    height: 40px;
    right: 50px;
  }

  .featured-posts-next {
    width: 40px;
    height: 40px;
    right: 6px;
  }

  .featured-posts-prev i,
  .featured-posts-next i {
    font-size: 16px;
  }

  .featured-posts-pagination {
    bottom: 15px;
    left: 15px;
  }

  .featured-posts-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}





.jobs-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 35px;
}

.job-category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.category-image {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #e8eef5;
  position: relative;
  flex-shrink: 0;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.category-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  transition: background 0.3s ease;
  pointer-events: none;
}

.job-category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-content {
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: 40px 25px 25px;
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-content h3 {
  margin: 0 0 15px 0;
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.category-content .apply-btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #e53e3e;
  text-transform: capitalize;
  align-self: center;
}

.category-content .apply-btn:hover {
  background: linear-gradient(135deg, #c53030 0%, #a30000 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 62, 62, 0.3);
}

/* Jobs Listing Section */
.jobs-listing-section {
  padding: 80px 0;
  background: white;
}



.jobs-list {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.job-item {
  background: white;
  border: 2px solid #f0f3f7;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.job-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to bottom, #e53e3e, #c53030);
  transition: width 0.3s ease;
}

.job-item:hover {
  border-color: #e53e3e;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(5px);
}



.job-header {
  margin-bottom: 18px;
}

.job-title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  color: #1a2332;
  letter-spacing: -0.3px;
}

.job-title a {
  color: #1a2332;
  text-decoration: none;
  transition: color 0.3s ease;
}

.job-title a:hover {
  color: #e53e3e;
}

.job-excerpt {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.job-meta {
  display: flex;
  /* justify-content: flex-end; */
}

.read-more-btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #c53030 0%, #a30000 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 62, 62, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .jobs-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .jobs-categories-section {
    padding: 50px 0;
  }

  .jobs-listing-section {
    padding: 50px 0;
  }

  .jobs-categories-section .section-title,
  .jobs-listing-section .section-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .jobs-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .category-image {
    height: 280px;
  }

  .category-content {
    padding: 30px 15px 15px;
    min-height: 120px;
  }

  .category-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .category-content .apply-btn {
    padding: 10px 25px;
    font-size: 13px;
  }

  .job-item {
    padding: 20px;
  }

  .job-title {
    font-size: 20px;
  }

  .job-excerpt {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .jobs-categories-grid {
    grid-template-columns: 1fr;
  }

  .jobs-categories-section .section-title,
  .jobs-listing-section .section-title {
    font-size: 24px;
  }

  .category-image {
    height: 250px;
  }

  .job-item {
    padding: 18px;
  }

  .job-title {
    font-size: 18px;
  }

  .category-content h3 {
    font-size: 16px;
  }
}

/* Single Job Page Styles */
.single-job-container {
  padding: 60px 0;
  background: #f8f9fb;
}

.job-description-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-title-main {
  font-size: 28px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}

.job-description {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.job-description p {
  margin-bottom: 15px;
}

/* Job Section Styles */
.job-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.section-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}






.skill-name {
  font-weight: 600;
  color: #1a2332;
  font-size: 14px;
}

/* Responsibilities List */
.responsibilities-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.responsibility-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.item-marker {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.responsibility-text {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Languages Grid */
.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.language-badge {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border: 2px solid #e53e3e;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.language-badge:hover {
  background: linear-gradient(135deg, #ffeded 0%, #ffe0e0 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 62, 62, 0.15);
}

.lang-name {
  font-weight: 600;
  color: #1a2332;
  font-size: 15px;
  display: block;
}

/* Apply Section */
.job-apply-section {
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  border-radius: 15px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(229, 62, 62, 0.2);
  margin-bottom: 40px;
}

.apply-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0 0 15px 0;
  letter-spacing: -0.3px;
}

.apply-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 25px 0;
}

.apply-btn-main {
  display: inline-block;
  background: white;
  color: #e53e3e;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 16px;
}

.apply-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Single Job Responsive Design */
@media (max-width: 768px) {
  .single-job-container {
    padding: 40px 0;
  }

  .job-section,
  .job-description-section {
    padding: 25px;
    margin-bottom: 25px;
  }

  .section-title-main,
  .section-title {
    font-size: 20px;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .skill-badge {
    padding: 10px 16px;
  }

  .skill-name {
    font-size: 13px;
  }

  .responsibilities-list {
    gap: 15px;
  }

  .responsibility-text {
    font-size: 14px;
  }

  .languages-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }

  .language-badge {
    padding: 12px 16px;
  }

  .lang-name {
    font-size: 13px;
  }

  .job-apply-section {
    padding: 35px 25px;
  }

  .apply-content h3 {
    font-size: 20px;
  }

  .apply-content p {
    font-size: 14px;
  }

  .apply-btn-main {
    padding: 12px 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .languages-grid {
    grid-template-columns: 1fr;
  }

  .section-icon {
    width: 40px;
    height: 40px;
  }

  .section-title {
    font-size: 18px;
  }

  .section-title-main {
    font-size: 18px;
  }
}

/* Job Page Sidebar Layout */
.job-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.job-main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.job-sidebar {
  position: sticky;
  top: 30px;
  height: fit-content;
}

.sidebar-widget {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-widget {
  border-top: 4px solid #e53e3e;
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 25px 0;
  text-align: center;
  letter-spacing: -0.3px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* WPForms Styling */

.form-wrapper {
  .wpforms-container-full {
    padding: 0 !important;
  }

  .wpforms-container .wpforms-page-indicator.circles .wpforms-page-indicator-page {
    margin: 0 0px 0 20px;
  }

  .wpforms-container .wpforms-page-indicator.circles .wpforms-page-indicator-page-number {
    margin: 0 0px 0 10px;
  }

  .wpforms-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .wpforms-field {
    margin-bottom: 0 !important;
  }

  .wpforms-field-label {
    font-weight: 600;
    color: #1a2332;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
  }

  .wpforms-field input[type="text"],
  .wpforms-field input[type="email"],
  .wpforms-field input[type="tel"],
  .wpforms-field input[type="number"],
  .wpforms-field textarea,
  .wpforms-field select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f3f7;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
  }

  .wpforms-field input[type="text"]:focus,
  .wpforms-field input[type="email"]:focus,
  .wpforms-field input[type="tel"]:focus,
  .wpforms-field input[type="number"]:focus,
  .wpforms-field textarea:focus,
  .wpforms-field select:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
  }

  .wpforms-field textarea {
    resize: vertical;
    min-height: 100px;
  }

  .wpforms-submit {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%) !important;
    border: none !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
    width: 100% !important;
  }

  .wpforms-submit:hover {
    background: linear-gradient(135deg, #c53030 0%, #a30000 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.3) !important;
  }
}

/* Responsive Sidebar */
@media (max-width: 1200px) {
  .job-content-wrapper {
    grid-template-columns: 1fr 320px;
    gap: 30px;
  }

  .sidebar-widget {
    padding: 25px;
  }

  .widget-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .job-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .job-sidebar {
    position: static;
  }

  .sidebar-widget {
    padding: 25px;
  }

  .wpforms-submit {
    padding: 11px 20px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .job-content-wrapper {
    gap: 20px;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .widget-title {
    font-size: 16px;
  }

  .wpforms-field input[type="text"],
  .wpforms-field input[type="email"],
  .wpforms-field input[type="tel"],
  .wpforms-field input[type="number"],
  .wpforms-field textarea,
  .wpforms-field select {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* Job Form Section */
.job-form-section {
  background: white;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 60px;
}

.form-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a2332;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.form-wrapper {
  /* max-width: 600px; */
  margin: 0 auto;

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

/* Responsive Form */
@media (max-width: 768px) {
  .job-form-section {
    padding: 35px 25px;
    margin-top: 40px;
  }

  .form-section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .job-form-section {
    padding: 25px 15px;
  }

  .form-section-title {
    font-size: 18px;
  }
}

/* Job Info Cards */
.job-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border: 2px solid #e53e3e;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 62, 62, 0.15);
  background: linear-gradient(135deg, #ffeded 0%, #ffe0e0 100%);
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 15px;
  font-weight: 700;
  color: #1a2332;
}

/* Requirements Section */
.job-requirements-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.requirement-box {
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f3f7 100%);
  border-inline-start: 4px solid #e53e3e;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.requirement-box:hover {
  background: linear-gradient(135deg, #f0f3f7 0%, #e8eef5 100%);
  transform: translateX(5px);
}

.requirement-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 12px 0;
}

.requirement-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Job Info Cards */
@media (max-width: 768px) {
  .job-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }

  .info-card {
    padding: 15px;
  }

  .info-label {
    font-size: 11px;
  }

  .info-value {
    font-size: 13px;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .job-info-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card {
    padding: 12px;
  }

  .info-icon {
    width: 35px;
    height: 35px;
  }

  .info-value {
    font-size: 12px;
  }

  .requirement-box {
    padding: 15px;
  }

  .requirement-title {
    font-size: 14px;
  }

  .requirement-text {
    font-size: 13px;
  }
}

.white-wrapper {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Multimedia Gallery Section */
.multimedia-section {
  padding-bottom: 60px;
}

.multimedia-gallery-wrap {
  max-width: 100%;
}

.multimedia-main-swiper {
  width: 100%;
  margin-bottom: 30px;
}

.multimedia-main-swiper .swiper-slide {
  height: auto;
}

.multimedia-main-swiper .gallery-image {
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.multimedia-main-swiper .gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s;
}

.multimedia-main-swiper .gallery-image:hover img {
  transform: scale(1.05);
}

.multimedia-button-next,
.multimedia-button-prev {
  width: 50px;
  height: 50px;
  background: #F81D1D;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);

  &:after {
    font-size: 15px;
  }
}

.multimedia-button-next:hover,
.multimedia-button-prev:hover {
  background: #c00;
  box-shadow: 0 6px 20px rgba(248, 29, 29, 0.4);
}

.multimedia-button-next::after,
.multimedia-button-prev::after {
  content: none;
}

.multimedia-button-prev {
  right: 70px;
}

.multimedia-button-next {
  right: 10px;
}

.multimedia-thumbs-swiper {
  width: 100%;
  height: 120px;
}

.multimedia-thumbs-swiper .swiper-slide {
  width: 100px;
  height: 100px;
  cursor: pointer;
}

.multimedia-thumbs-swiper .thumbnail-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: 0.3s;
  cursor: pointer;
}

.multimedia-thumbs-swiper .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.multimedia-thumbs-swiper .swiper-slide-thumb-active .thumbnail-item {
  border-color: #F81D1D;
  box-shadow: 0 4px 12px rgba(248, 29, 29, 0.3);
}

.multimedia-thumbs-swiper .thumbnail-item:hover {
  transform: scale(1.05);
  border-color: #F81D1D;
}

@media (max-width: 768px) {
  .multimedia-button-prev {
    right: 60px;
  }

  .multimedia-button-next {
    right: 10px;
  }

  .multimedia-thumbs-swiper {
    height: 100px;
  }

  .multimedia-thumbs-swiper .swiper-slide {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {

  .multimedia-button-prev,
  .multimedia-button-next {
    width: 40px;
    height: 40px;
  }

  .multimedia-button-prev {
    right: 50px;
  }

  .multimedia-button-next {
    right: 8px;
  }

  .multimedia-thumbs-swiper {
    height: 80px;
  }

  .multimedia-thumbs-swiper .swiper-slide {
    width: 70px;
    height: 70px;
  }
}

/* ======================================================================
   RELATED POSTS SECTION
====================================================================== */
.related-posts-wrapper {
  margin-top: 40px;
}

.related-posts-title {
  font-size: 18px;
  font-weight: 700;
  color: #120F0D;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #F81D1D;
  display: inline-block;
}

.related-posts-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.related-post-card {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 12px;
  border: 1px solid #f0f0f0;
}

.related-post-card:hover {
  transform: translateX(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.related-post-image {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.1);
}

.related-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.related-post-title {
  font-size: 14px;
  font-weight: 600;
  color: #120F0D;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.related-post-card:hover .related-post-title {
  color: #F81D1D;
}

.related-post-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #999;
}

.related-post-date i {
  font-size: 11px;
  color: #F81D1D;
}

@media (max-width: 768px) {
  .related-posts-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .related-posts-grid {
    gap: 15px;
  }

  .related-post-card {
    padding: 10px;
  }

  .related-post-image {
    width: 90px;
    height: 70px;
  }

  .related-post-title {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .related-posts-wrapper {
    margin-top: 30px;
  }

  .related-posts-title {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .related-post-card {
    padding: 8px;
    gap: 12px;
  }

  .related-post-image {
    width: 80px;
    height: 65px;
  }

  .related-post-title {
    font-size: 12px;
  }

  .related-post-date {
    font-size: 11px;
  }
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5px;
  margin-top: 2rem;

  .gallery-item {
    margin-bottom: 0;
  }

  a {
    display: block;
    border: 1px solid #dedede;
    padding: 10px;

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

/* ==============================
   Contact Page Styles
   ============================== */

.contact-page-wrapper {
  position: relative;
}

.contact-main-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.section-header {
  margin-bottom: 50px;
  display: block;
}

.section-header-center {
  text-align: center;
}

/* .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #120F0D;
  margin-bottom: 15px;
  line-height: 1.3;
} */

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
  font-weight: 300;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-area {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Info Blocks */
.info-block {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.info-title {
  font-size: 20px;
  font-weight: 700;
  color: #120F0D;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 50px;
  height: 3px;
  background: #F81D1D;
  border-radius: 2px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ececec;
  align-items: flex-start;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-item i {
  font-size: 24px;
  color: #F81D1D;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 5px;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
  font-weight: 600;
}

.info-content a {
  font-size: 16px;
  color: #120F0D;
  font-weight: 500;
  transition: color 0.3s;
}

.info-content a:hover {
  color: #F81D1D;
}

.info-content p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Social Links */
.social-block {
  border: 2px solid #f0f0f0;
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #120F0D;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  transform: translateY(-3px);
  background: #F81D1D;
  color: white;
  border-color: #F81D1D;
}

.social-link[data-platform="twitter"]:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
}

.social-link[data-platform="snapchat"]:hover {
  background: #FFFC00;
  border-color: #FFFC00;
  color: #000;
}

.social-link[data-platform="instagram"]:hover {
  background: #E1306C;
  border-color: #E1306C;
}

.social-link[data-platform="whatsapp"]:hover {
  background: #25D366;
  border-color: #25D366;
}

/* Branches Section */
.branches-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.branch-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.branch-map-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: #eee;
}

.branch-map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.branch-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.branch-title {
  font-size: 20px;
  font-weight: 700;
  color: #120F0D;
  margin-bottom: 10px;
}

.branch-address {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.branch-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F81D1D;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}

.branch-map-link:hover {
  border-bottom-color: #F81D1D;
  transform: translateX(5px);
}

.branch-map-link i {
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .contact-main-section {
    padding: 50px 0;
  }

  .branches-section {
    padding: 50px 0;
  }

  .contact-form-area,
  .info-block {
    padding: 25px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .contact-info-area {
    gap: 25px;
  }

  .branches-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .branch-map-container {
    height: 220px;
  }

  .info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .info-title::after {
    width: 40px;
  }

  .social-links {
    gap: 15px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .contact-form-area,
  .info-block {
    padding: 20px;
  }

  .info-item {
    gap: 12px;
  }

  .info-item i {
    font-size: 20px;
  }

  .info-content a,
  .info-content p {
    font-size: 14px;
  }

  .branch-content {
    padding: 20px;
  }

  .branch-title {
    font-size: 18px;
  }

  .branch-address {
    font-size: 13px;
  }
}

/* ==============================
   Contact Page Animations
   ============================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wpforms-image-choices {
  display: flex;
  flex-wrap: wrap;
}

.app-page-wrapper {
  .app-download-wrapper .app-mockup {
    position: static;
  }
}

.app-mockup-container {
  position: relative;
  display: inline-block;
  /* width: 100%; */
}

.mobile-frame {
  /* width: 100%; */
  /* max-height: 500px; */
  display: block;
  position: relative;
  z-index: 1;
}

.app-gallery-swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px;
  pointer-events: auto;
}

.app-gallery-swiper {
  width: 89%;
  height: 95%;
  max-width: 280px;
  max-height: 550px;
}

.app-gallery-swiper .swiper-wrapper {
  height: 100%;
}

.app-gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

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

.app-gallery-pagination {
  bottom: 15px;
  z-index: 10;
}

.app-gallery-pagination.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
}

.app-gallery-pagination.swiper-pagination-bullet-active {
  background-color: white;
}

/* App Features Section */
.app-features {
  background: #f5f5f5;
  padding: 60px 0;
}

.app-features .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #120F0D;
  margin-bottom: 15px;
}

.app-features .section-subtitle {
  font-size: 16px;
  font-weight: 400;
}

.app-feature-card {
  background: white;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.app-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon-box {
  font-size: 48px;
  color: #F81D1D;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(248, 29, 29, 0.1);
  border-radius: 12px;
  margin: 0 auto;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #120F0D;
}

.feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 768px) {
  .app-features {
    padding: 40px 0;
  }

  .app-features .section-title {
    font-size: 28px;
  }

  .app-feature-card {
    padding: 30px 20px;
  }

  .feature-icon-box {
    font-size: 36px;
    width: 70px;
    height: 70px;
  }

  .feature-title {
    font-size: 16px;
  }
}