/* body {
  scroll-behavior: smooth;
} */

* {
  padding: 0;
  margin: 0;
  --primary-font: "Playfair Display", serif;
  --outfit-font: "Outfit", sans-serif;

  --bg-primary-color: #102947;
  --bg-secondary-color: #eebe7c;
  --bg-star-color: #ea9d57;
  --bg-green-whtsapp: #22ce58;
  --bg-black: #000000;
  --bg-white: #ffffff;
  --dark-blue: #09182a;
  --card-bg: #ffefd9;
  box-sizing: border-box;
}

body {
  font-family: var(--outfit-font);
  max-width: 1920px;
}

h1,
h2 {
  font-size: 50px;
  line-height: 54px;
  font-weight: 700;
  color: var(--bg-primary-color);
  font-family: var(--primary-font);
}

p {
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  color: var(--bg-primary-color);
}

ul,
a {
  list-style-type: none;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  padding: 0;
  margin: 0;
}

sub {
  bottom: 0;
}

a {
  transition: all 0.4s ease;
  text-decoration: none;
}

span {
  display: inline-block;
}

button {
  transition: all 0.4s ease-in;
  border: none;
  outline: none;
}

textarea {
  resize: none;
  overflow: hidden;
}

/* Input:number inc/dec Button Remover   */
input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  /* Chrome, Safari, Edge */
  margin: 0;
}

.transition {
  transition: all 0.3s ease;
}

.form-control {
  border: none;
  outline: none;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none !important;
}

/* Removing Accordion custom Styling --s */

/* Remove background, borders, and icon styles */
.accordion-button {
  border: none !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 0;
  font-weight: 400;
  border-radius: 15px;
}

/* Remove the chevron icon */
.accordion-button::after {
  background: var(--bg-secondary-color);
  content: url(/assets/images/arrow-up.png);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 13px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  transform: rotate(180deg);
}

/* Remove border and background from accordion items */
.accordion-item {
  border: 1px solid #eee;
  /* background: transparent !important; */
}

/* Remove border and padding from accordion body */
.accordion-body {
  border: none !important;
  /* background: transparent !important; */
  padding: 0;
}

/* Prevent hover/focus color change */
.accordion-button:not(.collapsed) {
  background: none !important;
  color: inherit !important;
}

.accordion-button:not(.collapsed)::after {
  background: var(--bg-primary-color);
  transform: rotate(0deg);
}

/* Removing Accordion custom Styling --e */

/* check box styling s */
.form-input .checkbox input {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  opacity: 0;
}

.checkmark {
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: var(--bg-white);
  border-radius: 4px;
  position: relative;
  transition: 0.2s;
}

.checkbox input:checked ~ .checkmark::after {
  content: url(/assets/images/check-mark.webp);
  filter: invert(1);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 55%;
}

.checkbox input:checked ~ .checkmark {
  background-color: var(--bg-secondary-color);
}

.form label.checkbox {
  padding-right: 13px;
  top: 3px;
}

/* check box styling e */

/* Scroll bar s */

.scrollbar-track .scrollbar-thumb {
  background-color: var(--bg-primary-color);
}

.scrollbar-track {
  background-color: #868686;
}

/* Scroll bar e */

/* form-validation s */

.form-control.error::placeholder {
  color: rgba(255, 0, 0, 0.5);
}

.form-control.error::placeholder,
.form-control.error,
.form-check-input.error {
  /* border-color: rgba(255, 0, 0, 0.5) ; */
  color: rgba(255, 0, 0, 0.5) !important;
}

label.error {
  display: none !important;
}

.checkbox:has(#check.error) ~ label[for="check"] {
  color: rgba(255, 0, 0, 0.5) !important;
}

#check.error ~ .checkmark {
  border-color: rgba(255, 0, 0, 0.5) !important;
}

/* form-validation e*/

/* For All Swipers... rating stars */
.stars span {
  clip-path: polygon(
    50% 0,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  width: 11px;
  height: 11px;
  background-color: #dedede;
}

.stars span.active {
  background-color: var(--bg-star-color);
}

/* page-content s */

.page-content.home {
  padding-bottom: 34px;
}

.page-content.content {
  padding-bottom: 20px;
}

.page-content.content h1 {
  margin-top: 0;
}

.page-content h1,
.page-content h2,
.page-content h3 {
  font-weight: 700;
  margin: 25px 0;
  text-transform: capitalize;
}

.page-content h1,
.page-content h2 {
  color: var(--text-color);
}

.page-content h1 {
  font-size: 36px;
  line-height: 45px;
}

.page-content h2 {
  font-size: 30px;
  line-height: 40px;
}

.page-content h3 {
  font-size: 28px;
  line-height: 35px;
}

.page-content h4,
.page-content h5,
.page-content h6 {
  font-weight: 500;
  margin: 20px 0;
  text-transform: capitalize;
}

.page-content h3,
.page-content h4 {
  color: var(--text-color);
}

.page-content h4 {
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
}

.page-content h5 {
  font-size: 20px;
  line-height: 25px;
}

.page-content h6 {
  font-size: 18px;
  line-height: 22px;
}

.page-content h5,
.page-content h6 {
  color: var(--text-color);
}

.page-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 25px;
  margin: 15px 0;
}

.page-content strong {
  font-weight: 600;
}

.page-content a {
  color: var(--bg-primary-color);
  font-weight: 500;
  text-decoration: underline;
}

.page-content p a:hover {
  color: var(--bg-secondary-color);
}

.page-content blockquote {
  text-align: center;
  max-width: 80%;
  margin: 25px auto;
  padding: 20px 30px;
  border-radius: 10px;
  border-right: 10px solid var(--bg-secondary-color);
  border-left: 10px solid var(--bg-secondary-color);
  box-shadow: 0 0 5px 0 var(--bg-secondary-color);
  font-style: italic;
}

.page-content ul,
.page-content ol {
  padding: 15px 27.6px;
}

.page-content ul ul,
.page-content ol ol {
  padding: 15px;
  margin: 15px;
}

.page-content ol {
  list-style-type: decimal;
}

.page-content ul li,
.page-content ol li {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 35px;
  margin-bottom: 5px;
  padding-left: 24.6px;
  position: relative;
}

.page-content ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  border-left: 8px solid var(--text-color);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.page-content table {
  width: 100%;
  max-width: 100%;
  margin: 30px 0;
}

.page-content table thead {
  background-color: var(--bg-primary-color);
}

.page-content table th,
.page-content table td {
  padding: 10px 10px;
  color: var(--bg-white);
}

.page-content table tbody tr:nth-of-type(odd) td {
  background-color: #ee2966aa;
}

.page-content table tbody tr:nth-of-type(odd) {
  transition: all 0.2s ease-in-out;
}

.page-content table tbody tr:nth-of-type(odd):hover {
  background-color: #ee2966ee;
}

.page-content table tbody tr:nth-of-type(even) td {
  background-color: #2b2273cc;
}

.page-content table tbody tr:nth-of-type(even) {
  transition: all 0.2s ease-in-out;
}

.page-content table tbody tr:nth-of-type(even):hover {
  background-color: #2b2273dd;
}

/* page-content e */

/* saudi arabia visa service page s */
.visa-services-section {
  padding: 50px 0;
}

.main-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 52px;
  color: #102947;
  margin-bottom: 35px;
}

.heading p {
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
  color: #102947;
  margin-bottom: 48px;
}

/* visa types */
.visa-types {
  margin-bottom: 50px;
}

.nav-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.nav-pills .nav-link {
  border-radius: 50px;
  border: none;
  background-color: #faebd7;
  color: #102947;
  font-size: 15px;
  line-height: 17px;
  font-weight: 800;
}
.nav-pills .nav-link.active {
  background-color: var(--bg-secondary-color);
}

.visa-type {
  padding: 15px 25px;
}

.visa-type:hover {
  background-color: #eebe7c;
  color: #102947;
}

/* Cards */
.card-box {
  background: #ffefd9;
  padding: 35px 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.card-box h3 {
  font-size: 25px;
  line-height: 27px;
  font-weight: 800;
  color: #102947;
  margin-bottom: 15px;
}

.card-box p {
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  color: #102947;
  margin-bottom: 35px;
}

.card-box h4 {
  font-size: 16px;
  line-height: 18px;
  font-weight: 800;
  color: #102947;
  margin-bottom: 12px;
}

.overview p {
  font-size: 15px;
  line-height: 17px;
  font-weight: 600;
  color: #33302b;
}

.overview .first-row {
  margin-bottom: 40px;
}

.overview .last-row {
  margin-bottom: 0;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
}

.card-box .document {
  margin-bottom: 30px;
}

.card-box ul li img {
  margin-right: 15px;
}

.card-box ul li {
  font-size: 15px;
  line-height: 17px;
  font-weight: 600;
  color: #33302b;
  margin-bottom: 30px;
}

.card-box .processing {
  margin-bottom: 25px;
}

.card-box .last-row {
  margin-bottom: 0;
}

/* Steps */
/* Steps */
.steps {
  list-style: none;
  padding-left: 0;
  margin: 0;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 50px;
  font-size: 15px;
  line-height: 17px;
  font-weight: 600;
  color: #33302b;
  margin-bottom: 20px;
  min-height: 35px;
  display: flex;
  align-items: center;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #08254d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* service page e */

/* Contact Box */
.contact-box {
  background: #102947;
  color: white;
  padding: 59px 52px 50px;
  border-radius: 20px;
}

.contact-box h2 {
  font-size: 35px;
  line-height: 37px;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--bg-white);
}

.contact-box p {
  font-size: 16px;
  line-height: 18px;
  font-weight: 800;
  color: #eebe7c;
  margin-bottom: 48px;
}

.btn-main {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: #102947;
  background: #eebe7c;
  border: none;
  padding: 18px 0;
  margin: 0 0 12px;
  border-radius: 25px;
  width: 100%;
}

.btn-outline {
  font-size: 14px;
  line-height: 16px;
  font-weight: 800;
  background: transparent;
  border: 2px solid #e6b980;
  color: #e6b980;
  padding: 15px 0;
  border-radius: 25px;
  width: 100%;
  margin-bottom: 46px;
}

.help-text {
  font-size: 16px;
  line-height: 18px;
  font-weight: 800;
  color: #eebe7c;
  margin-bottom: 34px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 18.58px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  transition: 0.3s;
}

.contact-link:hover {
  color: #eebe7c;
}

.contact-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* contact page s */
.contact-section {
  padding: 70px 0;
  background: #f1f8ff;
}

.contact-section .heading p {
  margin-bottom: 55px;
}

.custom-cards-layout {
  gap: 24px;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px 20px 70px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 calc(25% - 24px);
  min-width: 260px;
}

.card-icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.card-details h5,
.social-icons-wrapper h5 {
  font-size: 16.03px;
  line-height: 18px;
  font-weight: 700;
  color: #102947;
  margin-bottom: 28px;
}

.card-details p {
  font-size: 18px;
  color: #0f2942;
  font-weight: 600;
  margin-bottom: 17px;
  line-height: 20px;
}

.card-details .address {
  font-size: 16px;
  line-height: 25px;
  word-break: break-all;
}

.card-details p:last-child {
  margin-bottom: 0;
}

.card-details a {
  color: inherit;
  text-decoration: none;
}

/* CONTACT FORM */

.contact-form-section {
  background-color: #ffffff;
  padding: 128px 0 80px;
}

.custom-form-container {
  max-width: 1209px;
  margin: 0 auto;
}

.main-form-wrapper {
  background-color: #f1f8ff;
  border-radius: 16px;
  display: flex;
  position: relative;
  overflow: visible;
  margin-bottom: 84px;
}

.form-image-side {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.expert-man-img {
  display: block;
  position: relative;
  z-index: 5;
  margin-top: -82px;
}

.form-content-side {
  flex: 1;
  padding: 30px 24px 30px 50px;
}

.form-heading {
  font-size: 25px;
  line-height: 27px;
  color: #102947;
  font-weight: 800;
  margin-bottom: 15px;
}

.form-text {
  font-size: 15px;
  font-weight: 600;
  color: #485d75;
  line-height: 17px;
  margin-bottom: 20px;
}

.form-inputs-flex .input-field-group {
  flex: 1;
}

.form-label {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #0f2942;
  margin-bottom: 12px;
}

.textarea textarea {
  height: 95px;
}

.custom-input {
  height: 50px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  padding: 18px !important;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  background-color: #ffffff;
  margin-bottom: 10px;
}

.custom-input:focus {
  border-color: #eebe7c;
  box-shadow: 0 0 0 3px rgba(238, 190, 124, 0.15);
}

.input-group {
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  padding: 1px !important;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  background-color: #ffffff;
}

/* bottom row */
.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* captcha */

.left-bottom {
  display: flex;
  align-items: center;
  gap: 25px;
}

.captcha-input {
  position: relative;
}

.captcha-input .form-control {
  width: 174px;
}

.captcha-number {
  position: absolute;
  right: 4%;
  top: 8%;
}

/* checkbox */

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 356px;
}

.checkbox-wrapper input {
  margin-top: 5px;
  height: 16px;
  width: 16px;
  accent-color: #eebe7c;
}

.checkbox-wrapper p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #102947;
}

/* button */

.submit-btn-contact {
  min-width: 174px;
  height: 50px;
  border: none;
  border-radius: 30px;
  background: #eebe7c;
  color: #102947;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.submit-btn-contact:hover {
  background: #e53c3c;
}

/* --- Join our community Box Styles --- */
.community-section {
  padding: 40px 0 75px;
}
.community-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  color: #102947;
  font-size: 50px;
  line-height: 52px;
  margin-bottom: 24px;
}

.community-subtitle {
  color: #102947;
  font-weight: 500;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 38px;
}

/* Subscribe Box Container */
.subscribe-box {
  background-color: #eebe7c;
  border-radius: 12px;
  outline: 2px solid #0f2942;
  outline-offset: 5px;
  margin: auto;
  padding: 32px 19px;
  max-width: 638px;
}

.subscribe-box form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sub-input-container {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #0f2942;
  padding-bottom: 12px;
  margin-bottom: 25px;
  position: relative;
  width: 100%;
}

.captcha-sub-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid #0f2942;
  padding-bottom: 12px;
  margin-bottom: 25px;
  width: 100%;
}

.sub-clean-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  line-height: 15px;
  font-weight: 700;
  color: #0f2942;
  width: 100%;
  padding-left: 6px;
}

.sub-clean-input::placeholder {
  color: rgba(15, 41, 66, 0.65);
}

.sub-captcha-val {
  font-size: 13px;
  line-height: 15px;
  font-weight: 700;
  color: #0f2942;
  padding: 6px 16px;
  white-space: nowrap;
}

/* Subscribe Button */
.btn-subscribe-dark {
  background-color: #0f2942;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 16px;
  padding: 19px 65px;
  border-radius: 50px;
  border: 2px solid transparent;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 20px rgba(15, 41, 66, 0.3);
  transition: all 0.3s ease;
}

.btn-subscribe-dark:hover {
  background-color: #eebe7c;
  color: #0f2942;
  border-color: #0f2942;
}

/* Social Media Container */

.social-icons-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.bg-faint-img {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  pointer-events: none;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border-radius: 8px;
  color: white;
  font-size: 26px;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

.facebook {
  background: #1976d2;
}

.instagram {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

.youtube {
  background: #ff0000;
}

.linkedin {
  background: #2864b4;
}

.pinterest {
  background: #d42028;
}

.k-alhijaz-header-cvr {
  background-color: var(--bg-primary-color);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 5px var(--bg-primary-color);
}

.k-alhijaz-header-cvr::after {
  content: "";
  position: absolute;
  top: 55px;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.k-alhijaz-topbar {
  padding: 10px 0;
  position: relative;
}

.k-alhijaz-header-socials {
  gap: 30px;
}

.k-alhijaz-header-socials a {
  color: var(--bg-white);
  font-size: 17px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.k-alhijaz-header-socials a:hover {
  color: var(--bg-secondary-color);
}

.k-alhijaz-header-socials a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  width: 1px;
  height: 30px;
  background-color: #999;
  top: 50%;
  transform: translateY(-50%);
}

.k-alhijaz-header-contacts-sec {
  gap: 30px;
}

.k-alhijaz-header-contacts {
  gap: 30px;
}

.k-alhijaz-cont a,
.k-alhijaz-cont a span {
  transition: all 0.3s ease;
}

.k-alhijaz-cont a:hover span {
  color: var(--bg-secondary-color);
}

.k-alhijaz-cont a:hover img {
  transform: scale(1.1);
}

.k-alhijaz-cont::before {
  content: "";
  position: absolute;
  left: -15px;
  width: 1px;
  height: 30px;
  background-color: #999;
  top: 50%;
  transform: translateY(-50%);
}

.k-alhijaz-header-contacts .k-alhijaz-cont a {
  gap: 14px;
  color: var(--bg-white);
  font-size: 14px;
}

.k-alhijaz-dom {
  padding: 2px;
  border: 1px solid var(--bg-white);
  border-radius: 50%;
}

.k-alhijaz-dom.active-domain::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  background-color: var(--bg-green-whtsapp);
  border-radius: 50%;
}

/* Stellar Navigation ---s */
.stellarnav > ul {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.stellarnav > ul > li {
  padding: 24px 0;
}

.stellarnav > ul > li > a {
  padding: 0;
  color: var(--bg-white);
}

.stellarnav li.has-sub > a {
  position: relative;
}

.stellarnav li.has-sub > a::after {
  content: url(/assets/images/arrow-up.webp);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  display: block;
  transition: all 0.3s ease;
  transform: rotate(180deg);
  margin: 0;
  margin-top: 10px;
}

.stellarnav > ul > li::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2px;
  width: 36px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid var(--bg-secondary-color);
  transition: all 0.3s ease;
  opacity: 0;
}

.stellarnav > ul > li > a:hover {
  color: var(--bg-secondary-color);
}

.stellarnav > ul > li > a:hover::after {
  transform: rotate(0deg);
}

.stellarnav > ul > li:has(> a:hover)::before {
  opacity: 1;
}

/* Stellar Navigation ---e */
.k-alhijaz-header-btn {
  min-width: 130px;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--bg-primary-color);
  background-color: var(--bg-secondary-color);
  border-radius: 20px;
}

.k-alhijaz-header-btn:hover {
  background-color: var(--bg-primary-color);
  color: var(--bg-white);
  border: 1px solid var(--bg-secondary-color);
}

.stellarnav ul ul {
  top: 100%;
  background-color: var(--bg-white);
  border-radius: 15px;
  box-shadow: 0 0 10px 0 #ccc;
}

.stellarnav ul ul li a {
  padding: 10px 24px;
  padding-right: 24px;
}

.stellarnav ul ul li a:hover {
  background-color: #e4f0ff;
}
.stellarnav.desktop li.has-sub a {
  border-radius: 10px;
}
.stellarnav ul ul li a,
.stellarnav ul ul li {
  color: var(--bg-primary-color);
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 20px;
}

.stellarnav li li.has-sub > a::after {
  content: none;
}

.stellarnav li li.has-sub > a::before {
  content: url("/assets/images/down-arrow.webp");
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  transition: all 0.3s ease;
  margin: 0;
  right: 24px;
  position: absolute;
}

.stellarnav li li.has-sub.hover > a::before {
  transform: rotate(180deg);
}

.stellarnav ul ul ul {
  left: 0;
  position: relative;
  box-shadow: none;
  background-color: #f1f7ff;
  border-radius: 0;
}

.stellarnav ul ul ul > li a::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bg-primary-color);
}

.stellarnav ul ul ul > li a {
  padding-left: 40px;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: var(--bg-primary-color);
  text-transform: capitalize;
}

/* Header ---e */
/* premier travel section s */
.ut-aht-premier-travel-section {
  padding: 50px 0;
}

.ut-aht-section-content-wrapper h2 {
  margin-bottom: 27px;
}

.ut-aht-section-content-wrapper {
  margin-bottom: 45px;
  text-align: center;
}

.ut-aht-premier-travel-cards-wrapper {
  display: flex;
  gap: 0 22px;
  margin-bottom: 20px;
}

.ut-aht-premier-travel-card {
  width: 245px;
  min-height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--bg-primary-color);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.ut-aht-premier-travel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(/assets/images/premier-card-bg.webp) no-repeat center
    center/cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.65;
}

.ut-aht-premier-travel-card p {
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
  color: var(--bg-secondary-color);
}

.ut-aht-premier-travel-card span {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--bg-white);
}

.ut-aht-premier-travel-benifits-card {
  padding: 20px;
  background-color: #f2f8ff;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
}

.ut-aht-premier-travel-benifits-card-icon {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.ut-aht-premier-travel-benifits-card-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 14px;
  width: 30px;
  height: 30px;
  z-index: -1;
  background-color: var(--bg-secondary-color);
  border-radius: 50%;
}

.ut-aht-premier-travel-benifits-card p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 9px;
}

.ut-aht-premier-travel-benifits-card span {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--bg-primary-color);
  opacity: 0.7;
}

/* premier travel section e */
/* travel services section s */
.ut-aht-travel-services-main {
  background: url(/assets/images/travel-services-bg.webp) no-repeat;
  background-position: right;
  background-size: cover;
  padding: 50px 0;
}

.ut-aht-travel-services-content-wrapper h2 {
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 37px;
}

.ut-aht-travel-services-content-wrapper p {
  margin-bottom: 20px;
}

.google-img-wrapper {
  display: flex;
  justify-content: center;
  padding: 13px 0;
  background-color: var(--bg-white);
  border-radius: 8px;
  border: 1px solid #e4e4e4;
}

.ut-aht-services-card-main-wrapper {
  padding: 23px 20px 50px 20px;
  background-color: var(--bg-primary-color);
  border-radius: 8px;
  position: relative;
  z-index: 1;
  margin-bottom: 19px;
}

.ut-aht-travel-services-swiper-main {
  padding-top: 30px;
  margin-left: 25px;
}

.ut-aht-travel-services-swiper-main .swiper-button-next {
  top: 0 !important;
  right: 0 !important;
  transform: translateY(0) rotate(180deg) !important;
}

.ut-aht-travel-services-swiper-main .swiper-button-prev {
  transform: translate(0) !important;
  left: auto !important;
  right: 48px !important;
  top: 0 !important;
}

.ut-aht-services-card-main-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/assets/images/services-card-bg.webp) no-repeat;
  background-size: contain;
  opacity: 0.65;
  z-index: -1;
}

.ut-aht-services-icon-wrapper {
  z-index: 0;
  margin-bottom: 13px;
}

.ut-aht-services-icon-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 14px;
  width: 30px;
  height: 30px;
  background-color: var(--dark-blue);
  border-radius: 50%;
  z-index: -1;
}

.ut-aht-services-card-main-wrapper h5 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 18px;
}

.ut-aht-services-card-main-wrapper h6 {
  font-size: 46px;
  line-height: 50px;
  font-weight: 700;
  color: var(--bg-secondary-color);
  margin-bottom: 16px;
}

.ut-aht-services-card-main-wrapper h6 span {
  font-size: 10px;
  line-height: 13px;
  font-weight: 500;
}

.ut-aht-services-card-main-wrapper h6 sup {
  font-size: 29px;
  line-height: 32px;
  font-weight: 300;
  left: 5px;
}

.ut-aht-services-card-main-wrapper h6 sub {
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
  right: 28px;
}

.ut-aht-services-card-main-wrapper p,
.ut-aht-services-card-main-wrapper ul li {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: var(--bg-white);
  margin-bottom: 18px;
}

.ut-aht-services-card-main-wrapper ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}

.ut-aht-services-card-main-wrapper ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 13px;
  height: 13px;
  background: url("/assets/images/check-mark.webp") no-repeat center;
  background-size: contain;
}

.ut-aht-services-btn-wrapper {
  width: 100%;
  display: flex;
  gap: 0 5px;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}

.ut-aht-golden-btn {
  padding: 12px 23px;
  background-color: var(--bg-secondary-color);
  color: var(--bg-primary-color);
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  border-radius: 17px;
  display: inline-block;
  margin: 0;
  border: none;
}

.ut-aht-services-btn-wrapper .btn {
  padding: 12px 23px;
  background-color: var(--bg-secondary-color);
  color: var(--bg-primary-color);
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  border-radius: 17px;
}

.golden-btn {
  padding: 12px 23px;
  background-color: var(--bg-secondary-color);
  color: var(--bg-primary-color);
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  border-radius: 17px;
  display: inline-block;
}

/* travel services section e */
/* affordable umrah section s */
.ut-aht-affordable-umrah {
  padding-top: 50px;
}

.ut-aht-affordable-umrah-content-wrapper h2 {
  margin-bottom: 30px;
}

.ut-aht-affordable-umrah-content-wrapper {
  margin-bottom: 51px;
}

/* affordable umrah section e */

.ut-aht-umrah-card {
  background: var(--card-bg);
  border-radius: 15px;
  margin-bottom: 20px;
}

.ut-aht-card-image-wrapper {
  padding: 10px 10px 0 10px;
}

.ut-aht-card-image {
  border-radius: 15px;
  overflow: hidden;
}

.ut-aht-card-content {
  padding: 18px 20px 40px 20px;
}

.ut-aht-card-content h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: var(--bg-primary-color);
  margin-bottom: 10px;
}

.ut-aht-rating span.active {
  background-color: var(--bg-star-color);
}

.ut-aht-rating span {
  width: 12px;
  height: 12px;
  background-color: #b1b1b1;
  display: inline-block;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.ut-aht-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.ut-aht-duration {
  background: var(--bg-secondary-color);
  color: var(--bg-primary-color);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

.ut-aht-price span {
  display: block;
  text-align: center;
  font-size: 10px;
  color: var(--bg-primary-color);
}

.ut-aht-price p {
  font-size: 42px;
  line-height: 46px;
  font-weight: 700;
  color: var(--bg-primary-color);
}

.ut-aht-price p sup {
  font-size: 29px;
  line-height: 32px;
  font-weight: 300;
}

.ut-aht-price p sub {
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
}

.ut-aht-umrah-card-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 0 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
}

.ut-aht-umrah-card-buttons a {
  text-decoration: none;
  text-align: center;
  padding: 9px 28px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s ease;
}

.ut-aht-umrah-card-buttons .details {
  background: var(--bg-primary-color);
  color: var(--bg-white);
}

.ut-aht-umrah-card-buttons .details:hover {
  background: var(--dark-blue);
}

.ut-aht-umrah-card-buttons .packages {
  background: var(--bg-secondary-color);
  color: var(--bg-primary-color);
}

.ut-aht-umrah-card-buttons .packages:hover {
  opacity: 0.9;
}

/* Banner Section ---s */
/* Banner Section ---s */
.k-alhijaz-banner-swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.k-alhijaz-banner-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--bg-secondary-color);
  opacity: 1;
}

.k-alhijaz-banner-swiper
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
  position: relative;
  width: 16px !important;
  height: 16px !important;
  border: 2px solid var(--bg-primary-color);
}

.k-alhijaz-banner-swiper
  .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--bg-primary-color);
  border-radius: 50%;
}

/* Banner form  */
.k-alhijaz-banner-content {
  max-width: 648px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.k-alhijaz-banner-content .heading h1 {
  color: var(--bg-primary-color);
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
  margin-bottom: 22px;
}

.k-alhijaz-banner-content .heading p {
  color: var(--bg-primary-color);
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 30px;
}

.k-alhijaz-banner-content .heading .btn {
  padding: 16px 26px;
  background-color: var(--bg-secondary-color);
  color: var(--bg-primary-color);
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease;
}

.k-alhijaz-banner-content .heading .btn:hover {
  background-color: var(--bg-primary-color);
  color: var(--bg-white);
}

.k-alhijaz-banner-content .heading .btn:hover svg {
  transform: translateX(5px);
}

/* Banner Section ---e */
/* Form sec */
.k-banner-search-form .form-control::placeholder {
  color: var(--bg-white);
  font-size: 13px;
}

.k-banner-search-form .form-control {
  font-size: 13px;
  padding: 10px 0 9px 22px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--bg-white);
  border-radius: 0;
  color: var(--bg-white);
}

.k-banner-search-form .custom-input {
  margin-bottom: 0 !important;
}

.k-banner-search-form .row div[class*="col-"] {
  margin-bottom: 16px;
}

.k-banner-search-form {
  margin-top: 50px;
  border-radius: 10px;
  border: 1px solid var(--bg-primary-color);
  padding: 5px;
}

.k-banner-search-form .form {
  border-radius: 10px;
  background-color: var(--bg-primary-color);
  padding: 20px 20px 40px;
}

.k-banner-search-form .passenger-dropdown.passenger-contain {
  top: 100%;
  position: relative;
  transform: translateY(-100%);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bg-white);
}

.k-banner-search-form .accommodation-box {
  color: var(--bg-white);
  top: 100%;
  position: relative;
  transform: translateY(-100%);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bg-white);
}

.k-banner-search-form .passenger-dropdown label {
  font-size: 13px;
  line-height: 15px;
  color: var(--bg-white) !important;
  font-weight: 500;
}

.k-banner-search-form .accommodation-box span,
.k-banner-search-form .accommodation-box label {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}

.k-banner-search-form .passenger-dropdown .input-group {
  max-width: 53px;
  background-color: transparent;
  border: none;
}

.btn.minus,
.btn.plus {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--bg-white) !important;
  color: var(--bg-primary-color) !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px !important;
}

.btn.minus:hover,
.btn.plus:hover {
  background-color: var(--bg-secondary-color) !important;
  color: var(--bg-primary-color) !important;
}

.custom-dropdown.nights-room .btn.minus,
.custom-dropdown.nights-room .btn.plus {
  background-color: var(--bg-secondary-color) !important;
  color: var(--bg-primary-color) !important;
}

.custom-dropdown.nights-room label,
.custom-dropdown.nights-room input {
  background-color: transparent;
  color: var(--bg-primary-color) !important;
}

.custom-dropdown.nights-room .form-group:first-child {
  margin-bottom: 10px;
}

.custom-dropdown.nights-room .form-group {
  border-radius: 10px;
  background-color: #eee;
  padding: 10px;
}

.custom-dropdown.nights-room {
  box-shadow: 0 0 5px 0 #ccc;
  left: 50%;
  transform: translateX(-50%);
  width: 231px !important;
  z-index: 990;
  border-radius: 10px;
  padding: 10px;
  background-color: var(--bg-white);
}

.k-banner-search-form .form .submit-btn {
  margin: auto;
  left: 0;
  right: 0;
  transform: translateY(50%);
  padding: 12px;
  width: 200px;
  background-color: var(--bg-secondary-color);
  color: var(--bg-primary-color);
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.k-banner-search-form .form .submit-btn:hover {
  background-color: var(--bg-primary-color);
  color: var(--bg-white);
  border: 1px solid var(--bg-secondary-color);
}

/* Banner Section ---e */
/* Review sec ----s */
.k-alhijaz-review-cvr {
  padding: 50px 0;
}

.k-alhijaz-review-cvr .heading {
  margin-bottom: 20px;
}

.k-alhijaz-review .swiper-wrapper {
  padding-top: 30px;
}

.k-alhijaz-review .swiper-wrapper .review-card {
  padding: 30px 20px;
  background-color: #ffefd9;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.k-alhijaz-review .swiper-wrapper .review-card:hover {
  transform: translateY(-5px);
}

.review-head-detail p {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: var(--bg-primary-color);
}

.review-head {
  margin-bottom: 10px;
}

.review-head-detail span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: var(--bg-primary-color);
}

.review-content.scroll-content p {
  height: 168px;
  padding-right: 10px;
  color: #4b4d39;
  font-size: 14px;
  line-height: 22px;
}

.scrollbar-track {
  width: 7px !important;
  background-color: var(--bg-secondary-color) !important;
  border-radius: 10px;
}

.scrollbar-thumb {
  width: 7px !important;
  background-color: var(--bg-primary-color) !important;
}

/* Review sec ----e */
/* content with img --s */
.k-alhijaz-img-content-cvr {
  background-color: #f1f7ff;
  padding: 25px 0;
  border: 1px solid #e4e4e4;
}

.k-alhijaz-content-img {
  border-radius: 50px 0 0 50px;
  overflow: hidden;
}

.k-alhijaz-content-img {
  z-index: 0;
}

.k-alhijaz-img-content-cvr .page-content.scroll-content {
  height: 535px;
  padding-right: 70px;
}

.k-alhijaz-img-content-cvr .page-content {
  max-width: 830px;
}

/* content with img --e */
/* faqs --s */
.k-alhijaz-faqs-cvr {
  padding: 60px 0;
}

.k-alhijaz-faqs-cvr .row {
  gap: 20px 0;
}

.k-alhijaz-faqs-cvr .heading {
  margin-bottom: 35px;
}

.accordion-item {
  border-radius: 15px !important;
}

.accordion-body {
  padding: 0 22px 20px;
}

.accordion-button {
  border-radius: 15px !important;
  padding: 12px 22px;
}

.accordion-button .accordion-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-secondary-color);
  border-radius: 8px;
}

.accordion-button .accordion-icon img {
  transform: rotate(180deg);
  transition: all 0.4s ease-in-out;
}

.accordion-button.accordion-button:not(.collapsed) .accordion-icon img {
  transform: rotate(0deg);
}

.accordion-button {
  display: flex;
  justify-content: space-between;
}

.accordion-button::after {
  content: none;
}

.accordion-button:not(.collapsed) span {
  color: var(--bg-white) !important;
}

.accordion-button span {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: var(--bg-primary-color);
}

.accordion-body p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #ddd;
}

.accordion-item:has(.accordion-button.collapsed) {
  background-color: var(--bg-white) !important;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  background-color: var(--bg-primary-color) !important;
  color: var(--bg-white) !important;
}

/* faqs --e */

/* detail-page css -start */
.detail-sect-cvr {
  padding: 62px 0 25px;
}

.detail-sect > .heading {
  padding-bottom: 45px;
}

.detail-sect > .heading h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 38px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.detail-sect-content .heading h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
  margin: 10px 0 0 0;
}

.detail-sect-content .badge img {
  margin-left: 5px;
}

.stars span.star {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  background-color: #9f9e90;
  display: inline-block;
  width: 17px;
  height: 17px;
}

span.star.active {
  background-color: var(--bg-star-color);
}

.services {
  padding: 28px 0;
}

.detail-sect-content .services .service-item span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.services .service-item {
  gap: 5px;
  padding: 0 35px 0 0;
}

.services .service-item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 35px;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bg-primary-color);
}

.detail-sect-content .heading span.badge {
  padding: 9px 12px !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-transform: capitalize;
  border-radius: 20px;
  background-color: var(--bg-primary-color) !important;
}

.k-detail-price {
  padding-top: 16px;
}

.k-detail-price > span {
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  color: var(--bg-primary-color);
  text-transform: capitalize;
  position: relative;
  top: 8px;
  left: 20px;
}

.k-detail-price p span {
  font-size: 68px;
  line-height: 76px;
  font-weight: 700;
}

.k-detail-price p sub:first-child {
  font-size: 47px;
  line-height: 55px;
  font-weight: 400;
  bottom: 0;
}

.k-detail-price p sub:last-child {
  font-size: 19px;
  line-height: 22px;
  font-weight: 400;
  bottom: 0;
}

.k-detail-nights-sect {
  padding: 25px 0;
  gap: 60px;
  border-bottom: 2px solid #cccccc;
  border-top: 2px solid #cccccc;
}

.k-detail-nights-sect .k-detail-night:first-child {
  padding: 0 60px 0 0;
}

.k-detail-nights-sect .k-detail-night:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 80px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #9f9e90;
}

.k-detail-nights-sect .k-detail-night p {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 10px 0 3px 0;
}

.k-detail-nights-sect .k-detail-night span {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  text-transform: capitalize;
}

.k-det-btn-sec {
  padding: 13px 0 0 0;
  gap: 10px;
}

.k-det-btn-sec button,
.k-det-btn-sec a {
  flex: 1;
}

.k-det-btn-sec a {
  flex: 1;
  gap: 15px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid var(--bg-primary-color);
  background-color: var(--bg-primary-color);
}

.k-det-btn-sec a span {
  color: var(--bg-white);
  transition: all 0.3s ease-in-out;
}

.k-det-btn-sec .book-now {
  padding: 11px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--bg-primary-color);
  z-index: 1;
  border: 1px solid var(--bg-primary-color);
  transition: all 0.3s ease-in-out;
}

.k-det-btn-sec .book-now:hover {
  background-color: var(--bg-primary-color);
  color: var(--bg-white);
}

.k-det-btn-sec .call-area-inner span {
  color: var(--bg-primary-color);
}

.k-det-btn-sec .call-area-inner {
  background-color: var(--bg-secondary-color);
}

.k-det-btn-sec a.whatsapp-inner:hover {
  background-color: transparent;
}

.k-det-btn-sec a.whatsapp-inner:hover span {
  color: var(--bg-primary-color);
}

.k-det-btn-sec .call-area-inner img {
  filter: invert(1);
  transition: all 0.3s ease-in-out;
}

.k-det-btn-sec .call-area-inner:hover {
  background-color: transparent;
}

.detail-sect .swiper-button-next {
  right: 20px !important;
}

.detail-sect .swiper-button-prev {
  left: 20px !important;
}

.detail-sect .main-swiper .swiper-wrapper {
  max-width: 537px;
}

.detail-swiper-cvr {
  gap: 5px;
}

.detail-swiper-cvr .swiper-vertical {
  max-height: 506px;
}

.detail-swiper-cvr .swiper-vertical .swiper-slide img {
  border-radius: 8px;
}

.detail-swiper-cvr .swiper-slide img {
  border-radius: 15px;
}

.detail-swiper-cvr .swiper {
  margin: 0;
}

.detail-sect .row .col-sm-12 {
  padding: 0;
}

.detail-sect-content {
  padding-left: 16px;
}

.detail-form-sect-cvr {
  padding: 25px 0 50px;
}

.k-enquiry-form {
  max-width: 336px;
  padding: 30px 25px;
  background-color: var(--bg-primary-color);
  border-radius: 20px;
  position: relative;
  left: 100%;
  transform: translateX(-100%);
}

.k-enquiry-form label {
  color: var(--bg-white);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.k-enquiry-form input.form-control:focus,
.k-enquiry-form textarea:focus {
  border: none;
}

.k-enquiry-form h3 {
  margin-bottom: 25px;
  font-size: 28px;
  line-height: 35px;
  font-weight: 700;
  padding-right: 20px;
  text-transform: capitalize;
  font-family: var(--primary-font);
  color: var(--bg-white);
}

.k-enquiry-form .row {
  gap: 15px;
}

.k-enquiry-form textarea {
  height: 76px;
}

.k-enquiry-form input.form-control::placeholder,
.k-enquiry-form textarea::placeholder,
.k-enquiry-form input.form-control,
.k-enquiry-form textarea {
  padding: 12px 14px;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  border: none;
}

.k-enquiry-form button.submit {
  padding: 8px 0;
  color: var(--bg-primary-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  width: 200px;
  border-radius: 30px;
  background-color: var(--bg-secondary-color);
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin: auto;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}

.k-enquiry-form button.submit:hover {
  border: 1px solid var(--bg-secondary-color);
  background-color: transparent;
}

.k-enquiry-form button.submit:hover {
  color: var(--bg-white);
}

.detail-form-sect .nav-tabs {
  gap: 0 12px;
}

.detail-form-sect .nav-tabs .nav-link {
  color: var(--bg-primary-color);
  font-size: 14px;
  padding: 12px 0px;
  line-height: 18px;
  font-weight: 500;
  text-transform: capitalize;
  border: none;
  background-color: #e4e4e4;
  width: 136px;
}

.detail-form-sect .nav-tabs .nav-link.active {
  background-color: var(--bg-primary-color);
  color: var(--bg-white);
  border: none;
}

.detail-tabs-cvr .tab-content .page-content.scroll-content {
  height: 520px;
}

.detail-tabs-cvr .tab-content {
  border: 1px solid #e4e4e4;
  border-radius: 0 20px 20px 20px;
  padding: 25px 10px 40px 25px;
}

.detail-video .video-thumb-btn {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: var(--bg-black);
}

.detail-video .video-thumb-btn .play-icon {
  width: 15px;
  height: 12px;
  border-radius: 50%;
  color: var(--bg-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.detail-video .play-icon::before,
.detail-video .play-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  z-index: -1;
  background-color: var(--bg-white);
  transition: all 0.3s ease-in-out;
}

.detail-video .video-thumb-btn:hover .play-icon::after {
  width: 94px;
  height: 94px;
}

.detail-video .play-icon::after {
  background-color: #fffa;
  width: 74px;
  height: 74px;
}

/* detail-page css -end */
/* confidence section s */
.ut-aht-confidence-sec-main-wrapper {
  padding: 80px 0 58px;
}

.ut-aht-confidence-content-wrapper {
  margin-bottom: 62px;
}

.ut-aht-confidence-card-main {
  padding: 70px 30px 22px;
  background: url(/assets/images/Confidence-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.ut-aht-confidence-card-banner-content h5 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.ut-aht-confidence-card-banner-content p {
  max-width: 700px;
  color: var(--bg-white);
  margin-bottom: 25px;
}

.ut-aht-confidence-card-banner-content span {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: var(--bg-white);
  display: block;
  text-align: center;
}

/* confidence section e */
/* visa services section s */
.ut-aht-visa-services-content {
  margin-bottom: 46px;
}

.ut-aht-visa-services-content h2 {
  margin-bottom: 70px;
}

.ut-aht-visa-services-slider-main .ut-aht-services-card-main-wrapper {
  background-color: var(--card-bg);
}

.ut-aht-visa-services-slider-main .ut-aht-services-icon-wrapper::before {
  background-color: var(--bg-secondary-color);
}

.ut-aht-visa-services-slider-main .ut-aht-services-card-main-wrapper h6,
.ut-aht-visa-services-slider-main .ut-aht-services-card-main-wrapper p,
.ut-aht-visa-services-slider-main .ut-aht-services-card-main-wrapper h5,
.ut-aht-visa-services-slider-main .ut-aht-services-card-main-wrapper ul li {
  color: var(--bg-primary-color);
}

.ut-aht-visa-services-slider-main .ut-aht-services-card-main-wrapper p {
  margin: 0 20px 22px 0;
}

.ut-aht-visa-services-slider-main .ut-aht-visa-detail p {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.ut-aht-visa-services-slider-main
  .ut-aht-services-card-main-wrapper
  ul
  li::before {
  background: url(/assets/images/check-mark-b.webp);
}

.ut-aht-visa-services-slider-main .ut-aht-services-btn-wrapper .btn {
  background: var(--bg-primary-color);
  color: var(--bg-white);
}

.ut-aht-visa-services-main .ut-aht-visa-benefits-main-wrapper{
  margin-top: -116px;
}
.ut-aht-visa-benefits-main-wrapper {
  padding: 165px 0 60px 0;
  background: url(/assets/images/visa-benefits-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.ut-aht-visa-benefits-card-wrapper {
  padding: 36px 0 40px 0;
  background: var(--bg-white);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visa-benefits-icon {
  margin-bottom: 22px;
}

.ut-aht-visa-benefits-card-wrapper h6 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: var(--bg-primary-color);
  margin-bottom: 20px;
}

.ut-aht-visa-benefits-card-wrapper p {
  max-width: 219px;
  text-align: center;
  line-height: 25px;
}

.blue-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 5px;
  background-color: #0f2942;
  border-radius: 4px 4px 0 0;
}

/* contact page e */

/* footer s */
/* footer */
.footer-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  width: 100%;
}

/* Background wrapper */
.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Responsive background image */
.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Container content */
.footer-section .container {
  position: relative;
  z-index: 2;
  padding: 45px 0;
}

/* Logo */
.footer-logo img {
  margin-bottom: 30px;
  max-width: 100%;
  height: auto;
}

/* Footer text */
.footer-text {
  color: var(--bg-white);
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  width: 100%;
  max-width: 312px;
  margin-bottom: 30px;
  text-align: justify;
}

/* Payment icons */
.payment-icons {
  margin-bottom: 30px;
}

.payment-icons img {
  max-width: 100%;
  height: auto;
}

/* Footer headings */
.footer-title {
  font-size: 20px;
  line-height: 22px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #fff;
}

/* Footer links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 23px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #eebe7c;
  padding-left: 5px;
}

.footer-column {
  display: flex;
  align-items: start;
  text-align: start;
  flex-direction: column;
  padding-left: 110px;
}

/* Contact section */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.iconc {
  gap: 15px;
}

/* .contact-item i {
  font-size: 22px;
  margin-right: 15px ;
  transition: color 0.3s ease;
  cursor: pointer;
} */

/* Hover effects */
.contact-item:hover .fa-map-pin {
  color: white !important;
}

.contact-item:hover .fa-envelope {
  color: white !important;
}

.contact-item:hover .fa-phone-volume {
  color: white !important;
}

.contact-item:hover .fa-whatsapp {
  color: #25d366 !important;
}

/* Contact headings */
.contact-item h6 {
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #eebe7c;
  margin-bottom: 10px;
}

/* Contact text */
.contact-item p,
.contact-item a {
  margin: 2px 0 0;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  line-height: 18px;
  font-weight: 400;
}

.contact-item a:hover {
  color: #eebe7c;
}

/* Bottom bar */
.footer-bottom {
  background: #eebe7c;
  text-align: center;
  padding: 22px 0;
  color: #111;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

/* footer s */

/* visa services section e */
/*  */
.ut-aht-islamic-holidays-main-wrapper {
  padding-top: 17px;
}

.ut-aht-islamic-holidays-content h2 {
  margin-bottom: 35px;
}

.ut-aht-islamic-holidays-content p {
  margin-bottom: 45px;
}

/*  */
/* trusted brand s */
.ut-aht-trusted-brand-sec-wrapper {
  padding: 80px 0 52px;
}

.ut-aht-trusted-brand-content h2 {
  margin-bottom: 27px;
}

.ut-aht-trusted-brand-content {
  margin-bottom: 50px;
}

.ut-aht-trusted-brand-main-wrapper {
  padding: 40px 30px;
  background-color: var(--bg-primary-color);
  border-radius: 15px;
  position: relative;
  margin-bottom: 20px;
}

.ut-aht-trusted-brand-col-wrapper h6 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 18px;
}

.ut-aht-trusted-brand-col-wrapper p {
  font-size: 16px;
  line-height: 25px;
  color: var(--bg-white);
  margin-bottom: 30px;
}

.ut-aht-trusted-brand-inner-col-icon {
  margin-bottom: 13px;
}

.ut-aht-trusted-brand-inner-col p {
  font-weight: 700;
  color: var(--bg-secondary-color);
  margin-bottom: 8px;
}

.ut-aht-trusted-brand-inner-col span {
  font-size: 15px;
  line-height: 20px;
  color: var(--bg-white);
}

.ut-aht-trusted-banner-img-col {
  position: absolute;
  bottom: 0;
  right: 57px;
}

.ut-aht-nusuk-main {
  padding: 33px 30px;
  background: var(--bg-secondary-color);
  border-radius: 15px;
}

.ut-aht-nusk-content-main h6 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  color: var(--bg-primary-color);
  margin-bottom: 19px;
}

.ut-aht-nusk-content-main p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
}

.ut-aht-nusk-img {
  display: flex;
  justify-content: flex-end;
}

/* trusted brand e */
/* Umrah listing page */
.ut-aht-umrah-listing-main > .row,
.ut-aht-holidays-page-cards-main > .row {
  row-gap: 70px;
}

.ut-aht-load-more-btn {
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  color: var(--bg-primary-color);
  border: 1px solid var(--bg-primary-color);
  border-radius: 22px;
  padding: 15px 21px;
}

.ut-aht-load-more-btn-main {
  display: flex;
  justify-content: center;
  padding-top: 70px;
}

/* Umrah listing page E */
/* holiday page S */
.ut-aht-holidays-page-main {
  padding: 40px 0 0 0;
}

.ut-aht-holiday-trusted-banner-main {
  position: relative;
}

.ut-aht-holiday-trusted-banner-main .ut-aht-trusted-brand-main-wrapper {
  padding: 18px 30px 40px;
}

.ut-aht-holiday-trusted-banner-main .ut-aht-trusted-banner-img-col {
  position: absolute;
  bottom: 0;
}

.ut-aht-holiday-contact-main .k-alhijaz-cont {
  margin-bottom: 12px;
}

.ut-aht-holiday-contact-main .k-alhijaz-cont:last-child {
  margin-bottom: 0;
}

.ut-aht-holiday-contact-main .k-alhijaz-cont a {
  padding: 10px 20px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  color: var(--bg-white);
  background: var(--bg-primary-color);
  border: 3px solid var(--bg-white);
  display: inline-block;
  border-radius: 22px;
  display: flex;
  align-items: center;
}

.ut-aht-holiday-contact-main .k-alhijaz-cont a span {
  margin-left: 10px;
}

.ut-aht-holiday-contact-main .k-alhijaz-cont::before {
  display: none;
}

.ut-aht-holiday-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* holiday page e */

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-primary-color);
}

.swiper-button-next {
  transform: rotate(180deg) translateY(-50%) !important;
  right: -65px !important;
  top: 50% !important;
}

.swiper-button-prev {
  transform: translateY(50%) !important;
  left: -65px !important;
  /* top: 50% !important; */
}

.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}

/* utility page e */
.ja-utility-main {
  background-image: linear-gradient(to top, #c19c70, var(--bg-white));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 126px 0 260px;
}

.ja-utility-page-content {
  max-width: 760px;
  width: 100%;
}

/* Utility Pages start */
.ja-utility-main {
  padding: 103px 0 64px;
  background: linear-gradient(to top, #bf9a6e, #fff);
  text-align: center;
}

.ja-utility-content img {
  margin-bottom: 50px;
}

.ja-utility-content span {
  padding: 13px 69px;
  display: inline-block;
  text-align: center;
  background-color: var(--bg-primary-color);
  color: var(--bg-secondary-color);
  font-size: 45px;
  font-weight: 700;
  border-radius: 35.72px;
  line-height: 1;
  margin-bottom: 29px;
  font-family: var(--fa-family-brands);
}

.ja-utility-content p {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 28px;
  margin-bottom: 40px;
  margin-left: 40px;
  text-shadow: 0 0 5px #c7c7c7;
}

.ja-utility-content a {
  font-size: 14px;
  padding: 20px 34px;
  background-color: var(--bg-secondary-color);
  border-radius: 25.72px;
  border: 2px solid var(--bg-primary-color);
  color: var(--bg-primary-color);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.ja-utility-sideimg {
  position: relative;
  left: -45px;
}

.ja-utility-ty-content img {
  margin-bottom: 50px;
  margin-top: 135px;
}

.ja-utility-ty-content span {
  padding: 13px 69px;
  display: inline-block;
  text-align: center;
  background-color: var(--bg-primary-color);
  color: var(--bg-secondary-color);
  font-size: 35px;
  font-weight: 700;
  border-radius: 35.72px;
  line-height: 1;
  margin-bottom: 29px;
  font-family: var(--fa-family-brands);
}

.ja-utility-ty-content p {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 28px;
  margin-bottom: 40px;
  margin-left: 40px;
  text-shadow: 0 0 5px #c7c7c7;
}

.ja-utility-ty-content a {
  font-size: 14px;
  padding: 20px 34px;
  background-color: var(--bg-secondary-color);
  border-radius: 25.72px;
  border: 2px solid var(--bg-primary-color);
  color: var(--bg-primary-color);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

/* Utility Pages end */

/* enquiry modal --s */
.enquiry-modal .modal-dialog {
  max-width: 560px;
  background: transparent;
}

.enquiry-modal .modal-dialog .modal-body {
  background: #fff8f1;
  padding: 32px;
  border-radius: 15px;
}

.enquiry-modal .modal-dialog .modal-body .heading {
  margin-bottom: 35px;
}

.enquiry-modal .modal-dialog .modal-body .heading h2 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  color: var(--bg-primary-color);
  text-transform: capitalize;
  font-family: var(--secondary-font);
  margin-bottom: 8px;
}

.enquiry-modal .modal-dialog .modal-body .heading p {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  color: var(--bg-primary-color);
  margin: 0;
}

.enquiry-modal .modal-dialog .modal-body .form textarea.form-control {
  height: 95px;
}

.enquiry-modal .modal-dialog .modal-body .form .form-control {
  padding: 8px 15px;
  border: 1px solid #fce9d7;
  border-radius: 10px;
}

.enquiry-modal .modal-dialog .modal-body .form label {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: var(--bg-primary-color);
  text-transform: capitalize;
  margin-bottom: 4px;
}

.enquiry-modal .modal-dialog .modal-body .form .row {
  margin: 0 !important;
  gap: 0 9px !important;
}

.enquiry-modal .modal-dialog .modal-body .form .col-6 {
  width: 49% !important;
}

.enquiry-modal .modal-dialog .modal-body .form .col-5 {
  width: 39.8% !important;
}

.enquiry-modal .modal-dialog .modal-body .form div[class*="col-"] {
  margin-bottom: 15px;
  padding: 0 !important;
}

.enquiry-modal .modal-dialog .modal-body .form .terms-check {
  display: flex;
  align-items: end;
  justify-content: start;
}

.enquiry-modal .modal-dialog .modal-body .form label.checkbox span {
  border: 1px solid #fce9d7;
}

.enquiry-modal .modal-dialog .modal-body .form .submit {
  width: 100%;
  background-color: var(--bg-star-color);
  color: var(--bg-white);
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  border-radius: 10px;
  padding: 14px 0;
  transition: all ease 0.3s;
  margin-top: 10px;
}

.enquiry-modal .modal-dialog .modal-body .form .submit:hover {
  background-color: var(--bg-primary-color);
}

.enquiry-modal .modal-dialog .modal-body .btn-close {
  top: 15px;
  right: 15px;
  font-size: 10px;
  opacity: 1;
  padding: 6px;
  color: var(--bg-star-color);
  border-radius: 50%;
  border: 2px solid var(--bg-star-color);
}
svg {
  height: 40px;
  width: 40px;
}
/* enquiry modal --e */

/* Country select ----s */
input.form-control.country-input {
  padding-left: 50px !important;
}
.country-select .flag {
  background-image: url("/assets/images/flags.png");
}
.country-list {
  max-width: 100%;
}
.flag-dropdown {
  width: 100%;
}
.flag-dropdown ul.country-list {
  border-radius: 10px;
}
.flag-dropdown ul.country-list .country {
  color: var(--bg-primary-color);
}
/* Country select ----e */
/* comming soon ----s */
.utility-page-main {
  background: url(/assets/images/coming-soon-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 219px 0 245px;
}
.coming-soon-mian-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.coming-soon-mian-wrapper p {
  color: var(--bg-primary-color);
}
/* comming soon ----e */
