:root {
  --main-color: #d62828;
  --text-color: #31293a;
  --white-color: #fff;
}
.btn-square {
  width: 80px;
  height: 40px;
  display: grid;
  place-items: center;
}
.btn-square i {
  color: var(--main-color);
}
body {
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-color);
}
body,
html {
  overflow-x: hidden;
}

::selection {
  background-color: var(--main-color);
  color: var(--white-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.5s linear;
}
a {
  text-decoration: none;
  line-height: normal;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
P {
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
}

.main-btn {
  padding: 0.8rem 1.2rem;
  background-color: var(--white-color);
  color: var(--main-color);
  font-weight: bold;
  font-size: 16px;
  border-radius: 3px;
}

.about-section .main-btn {
  background-color: var(--main-color);
  color: var(--white-color);
}
.main-btn:hover {
  background-color: var(--text-color);
  color: var(--white-color);
}

.main-btn-2 {
  background-color: var(--hover-color);
  color: var(--white-color);
}
.main-btn-2:hover {
  background-color: var(--main-color);
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-color);
  margin-bottom: 20px;
}

p strong {
  color: var(--hover-color);
}

h4.small-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}
.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin: 0;
  display: flex;
  align-items: center;
}

.logo-text .dot {
  width: 8px;
  height: 8px;
  background: var(--main-color); /* gold accent */
  border-radius: 50%;
  display: inline-block;
  margin: 0 8px;
}

.logo a {
  text-decoration: none;
}
.header {
  z-index: 99;
  padding: 10px 0px;
  background-color: transparent;
  z-index: 999;
  padding-top: 30px;
}

.header .logo a img {
  width: 350px;
}
.header-main {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
}

.header .menu > .menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--white-color);
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Cinzel", serif;
}

.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 8px;
  width: 8px;
  position: relative;
  margin-left: 3px;
  pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: var(--white-color);
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after {
  background-color: var(--white-color);
}
.header .menu > .menu-item > a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: var(--main-color);
}
.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: max-content;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  padding: 5px 0;
  border-top: 2px solid var(--main-color);
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media (min-width: 992px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .menu > .menu-item-has-children:hover > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
@media (min-width: 991px) {
  .header .menu > .menu-item > .sub-menu > .menu-item {
    border-bottom: 1px solid #ededed;
  }
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
  text-transform: capitalize;
  font-family: "Cinzel", serif;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: var(--main-color);
  position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}
.header .open-nav-menu span:after {
  top: 7px;
}
.header .close-nav-menu {
  height: 40px;
  width: 40px;
  background-color: #fff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.header .close-nav-menu img {
  width: 16px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .header .nav-menu {
    position: fixed;
    right: -310px;
    visibility: hidden;
    width: 310px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: var(--text-color);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a {
    color: #fff;
    padding: 12px 15px;
    border-bottom: 1px solid var(--white-color);
  }
  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid var(--white-color);
  }
  .header .menu > .menu-item > a .plus:before,
  .header .menu > .menu-item > a .plus:after {
    background-color: #fff;
  }
  .header .menu > .menu-item-has-children.active > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 5px 12px 30px;
    color: #fff;
    border-bottom: 1px solid var(--white-color);
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
}
.hero-header {
  margin-top: -100px;
  padding-top: 150px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    /* subtle white overlay */ url(../images/main-banner-img.webp) left/cover
      no-repeat;
}
.hero-header .main-btn {
  background-color: var(--text-color);
  color: var(--white-color);
}

.hero-header .main-btn:hover {
  background-color: var(--main-color);
}
.hero-header .span-text {
  color: var(--main-color);
}
.hero-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.header-carousel {
  position: relative;
  padding: 45px 90px 45px 0;
}

.header-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: calc(50% + 45px);
  height: 100%;
  background: var(--main-color);
  z-index: -1;
}

.header-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 5px 0;
  width: 15px;
  height: 15px;
  border: 2px solid var(--bs-white);
  transition: 0.5s;
}

.header-carousel img {
  height: 400px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .header-carousel img {
    height: 300px;
  }
}
.header-carousel .owl-dot.active {
  height: 30px;
  background: var(--bs-white);
}
/* Typography */
.text-gold {
  color: var(--main-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-title {
  font-family: "Cinzel", serif; /* Or similar stylized serif font */
  color: var(--text-color);
  line-height: 1.2;
}

/* Image Stack Logic */
.image-stack {
  position: relative;
  padding-bottom: 50px;
}

.img-large img {
  width: 85%;
  border-radius: 80px 80px 0 80px; /* Matching the top curve in your image */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-small {
  position: absolute;
  bottom: -30px;
  right: 5%;
  width: 50%;
}

.img-small img {
  border-radius: 50px;
  border: 10px solid #fff; /* White border creates the separation effect */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Button & UI Elements */
.btn-gold {
  background-color: var(--text-color);
  color: white;
  border-radius: 12px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--main-color);
  color: white;
  transform: translateY(-2px);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff9f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .img-small {
    width: 40%;
    bottom: -20px;
  }
}
/*** Testimonial ***/
.testimonial-img {
  position: relative;
  padding: 45px 0 45px 90px;
}

.testimonial-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: calc(50% + 45px);
  height: 100%;
  background: var(--main-color);
  z-index: -1;
}

.testimonial-text h5 {
  position: relative;
  padding-left: 45px;
}

.testimonial-text h5::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--main-color);
}

.testimonial-carousel .owl-dots {
  position: absolute;
  height: 17px;
  bottom: 0;
  right: 0;
  left: auto;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  width: 15px;
  height: 15px;
  background: var(--bs-white);
  border: 2px solid var(--main-color);
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--main-color);
}

@media (max-width: 768px) {
  .testimonial-carousel .owl-dots {
    left: 0;
    right: auto;
  }

  .testimonial-carousel .owl-dot {
    margin-right: 10px;
    margin-left: 0;
  }
}

/*** Footer ***/
.footer {
  background-color: rgb(21, 21, 21);
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  transition: 0.3s;
  font-size: 14px;
}

.footer .btn.btn-link:hover {
  color: var(--bs-white);
  letter-spacing: 1px;
  box-shadow: none;
}
.footer .footer-icon i {
  color: var(--white-color);
  border: 1px solid var(--white-color);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 3px;
}
.footer .footer-icon i:hover {
  background-color: var(--main-color);
}
.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: rgba(255, 255, 255, 0.5);
}

.footer .copyright a:hover {
  color: var(--bs-white);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.umrah-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.umrah-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.umrah-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.umrah-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.umrah-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.umrah-card p {
  font-size: 14px;
  color: #6c757d;
}
.why-choose-us {
  background: #ffffff;
}

.choose-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
}

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

.choose-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.choose-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 14px;
  color: #6c757d;
}
.cta-section {
  background: #ffffff;
}

.cta-box {
  background: linear-gradient(135deg, var(--main-color), #ff8000);
  padding: 60px 30px;
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-gold {
  background: #fff;
  color: #c8a165;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
}

.btn-gold:hover {
  background: #000;
  color: #fff;
}

.btn-outline-dark {
  padding: 12px 30px;
  border-radius: 30px;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background-color: var(--main-color);
  outline: none;
  color: var(--white-color);
  box-shadow: 0 0 0;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50px;
  font-size: 14px;
}
.back-to-top:hover {
  background-color: var(--text-color);
  color: var(--white-color);
}
/* Fixed Right Side Contact Icons */
.fixed-contact-icons {
  position: fixed;
  right: 20px;
  bottom: 100px; /* distance from bottom */
  display: flex;
  flex-direction: column;
  gap: 15px; /* space between icons */
  z-index: 9999;
}

.fixed-contact-icons .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fixed-contact-icons .contact-icon.whatsapp {
  background: #25d366;
}

.fixed-contact-icons .contact-icon.call {
  background: #007bff; /* blue */
}

.fixed-contact-icons .contact-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/main-banner-img.webp") center center no-repeat;
  background-size: cover;
  padding-bottom: 50px;
  height: 60vh;
}

.page-header h1 {
  letter-spacing: 1px;
}

.breadcrumb .breadcrumb-item a {
  background-color: var(--main-color) !important;
  padding: 3px 6px;
  color: var(--white-color);
  border-radius: 3px;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
.umrah-journey {
  background: var(--white-color);
}

.umrah-journey .main-btn {
  background-color: var(--main-color);
  color: var(--white-color);
}

.journey-img img {
  border-radius: 10px;
}
.umrah-journey .main-btn:hover {
  background-color: var(--text-color);
}
.package-highlights {
  background: var(--main-color);
}

.highlight-box {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}

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

.highlight-box .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.highlight-box h5 {
  font-weight: normal;
  color: #222;
  font-size: 18px;
}
.travel-plan {
  background: #ffffff;
}

.plan-item {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.3s;
  height: 100%;
}

.plan-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.number {
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
  display: block;
  margin-bottom: 10px;
}

.plan-item h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-item p {
  color: #6c757d;
  margin: 0;
}
.umrah-packages {
  background: #ffffff;
}

.package-card {
  border: 1px solid #eee;
  padding: 35px 25px;
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.package-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.package-card ul li {
  padding: 8px 0;
  color: #6c757d;
  border-bottom: 1px solid #f1f1f1;
}

.package-card ul li:last-child {
  border-bottom: none;
}

.featured {
  border: 2px solid var(--main-color);
}

.featured .package-title {
  color: var(--main-color);
}

.btn-block {
  display: block;
  width: 100%;
}
