/********** Template CSS **********/
:root {
    /* Bootstrap */
    --bs-primary: #c9ad5a;
    --bs-primary-rgb: 20, 90, 58;
    --bs-secondary: #c9ad5a;
    --bs-secondary-rgb: 201, 173, 90;

    /* Gold system */
     --gold-main: #c9ad5a;
    --gold-soft: #e6d08a;
    --gold-dark: #574309;
    --dark-bg-soft: rgba(255,255,255,0.02);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    background-color: #0f2f1f;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin: 0px 10px;
    padding: 10px 20px;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
    border-radius: 15px;
    margin: 5px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--gold-dark);
    background-color:#ffc107;
    font-weight: 600;
    m
}

.navbar  h2{
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
        text-align: center;
        background-color: #0b2418;
    }
    
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
       margin: 0px 10px;
        padding: 10px 20px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 2.5em;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 12rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
}

 .service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(
        110deg,
        #0f3d2e 0%,
        #0b2c21 45%,
        #050d0a 100%
    );
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(
        -110deg,
        #0f3d2e 0%,
        #0b2c21 45%,
        #050d0a 100%
    );
}


@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(
            180deg,
            #0f3d2e 0%,
            #0b2c21 50%,
            #050d0a 100%
        );
        text-align: center;
    }
    
    .package-btn{width: 100% !important;}

    .service-text h3{ margin-top:4em;}
    .service-text .card i{
        text-align: center !important;
    }
}

@media (max-width: 360px) {
.navbar-brand h2{ font-size: 12px !important;}
.service-item{ padding: 1rem !important;}
.package-btn{width: 100% !important;}
}



/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background-image: url(../img/footer-bg.png);
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}
/* =====================================
   QUIET LUXURY – PREMIUM GOLD SYSTEM
   ===================================== */

:root {
    --gold-main: #c9ad5a;       /* muted luxury gold */
    --gold-soft: #e6d08a;       /* highlight gold */
    --gold-dark: #574309;       /* deep accent */
    --dark-bg-soft: rgba(255,255,255,0.02);
}
/* =====================================
   ULTRA-SOFT GOLD SHIMMER (HOVER)
   ===================================== */

/* Prepare card for shimmer */
.service-text .card {
    position: relative;
    overflow: hidden;
}

/* Shimmer layer */
.service-text .card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 120%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(201, 173, 90, 0.12) 50%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Activate shimmer on hover */
.service-text .card:hover::before {
    opacity: 1;
    animation: goldShimmer 1s linear infinite;
}

/* Shimmer animation */
@keyframes goldShimmer {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}
/* =====================================
   UMRAH PACKAGES – PREMIUM GOLD SYSTEM
   ===================================== */

/* Package buttons */
.package-btn {
    padding: 10px 28px;
    border-radius: 30px;
    border: 1px solid rgba(201, 173, 90, 0.45);
    background: transparent;
    color: var(--gold-main);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
}

.package-btn:hover {
    background: linear-gradient(
        145deg,
        rgba(201,173,90,0.18),
        rgba(0,0,0,0.4)
    );
    border-color: var(--gold-main);
    box-shadow: 0 0 18px rgba(201,173,90,0.25);
}

/* Pricing note */
.pricing-note {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

/* =====================================
   WHAT’S INCLUDED
   ===================================== */

.included-title {
    color: var(--gold-main);
    letter-spacing: 2px;
    font-weight: 600;
}

.included-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.included-pill {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(201,173,90,0.35);
    background: rgba(255,255,255,0.04);
    color: var(--gold-soft);
    font-size: 14px;
    transition: all 0.3s ease;
}

.included-pill:hover {
    background: rgba(201,173,90,0.15);
    border-color: var(--gold-main);
}

/* =====================================
   MAKKAH / MADINAH STAY
   ===================================== */

.makkah-title,
.madinah-title {
    color: var(--gold-main);
    letter-spacing: 2px;
    font-weight: 600;
}

.makkah-subtitle,
.madinah-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

/* Stay cards container */
.stay-options {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Individual stay item */
.stay-item {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(0,0,0,0.45)
    );
    border: 1px solid rgba(201,173,90,0.25);
    border-radius: 16px;
    padding: 22px 24px;
    min-width: 220px;
    text-align: center;
    transition: all 0.3s ease;
}

.stay-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold-main);
    box-shadow: 0 12px 30px rgba(201,173,90,0.18);
}

/* Distance box */
.distance-box {
    margin-bottom: 12px;
}

.distance-number {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-main);
}

.distance-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* Dark variant for Madinah */
.distance-box.dark .distance-number,
.hotel-box.dark {
    color: var(--gold-soft);
}

/* Hotel name */
.hotel-box {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

/* =====================================
   RESPONSIVE TWEAKS
   ===================================== */

@media (max-width: 768px) {
    .stay-options {
        gap: 16px;
    }

    .stay-item {
        min-width: 100%;
    }

    .included-items {
        justify-content: flex-start;
    }
}
/* =====================================
   GOLD DIVIDER (SUBSECTION SEPARATOR)
   ===================================== */

.gold-divider {
    width: 120px;
    height: 1px;
    margin: 4rem auto;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold-main),
        transparent
    );
    opacity: 0.7;
}


/* Section headings */
.service-text h3 {
   color: var(--gold-main);
    letter-spacing: 1.5px;
    font-weight: 600;
}


/* Section divider feel */
.service-item {
    position: relative;
    padding-bottom: 3rem;
}

.service-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(
        to right,
        var(--gold-main),
        transparent
    );
}

/* Card base */
.service-text .card {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(0,0,0,0.4)
        );
    border: 1px solid rgba(201, 173, 90, 0.15);
    border-radius: 14px;
    transition: all 0.35s ease;
}

/* Card hover – subtle, premium */
.service-text .card:hover {
    border-color: rgba(201, 173, 90, 0.45);
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.4),
        inset 0 0 0 1px rgba(201, 173, 90, 0.15);
}

/* Icon halo effect */
.service-text .card i {
    color: var(--gold-main) !important;
    
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 12px;
    width: 100%;
    text-align: left;
}

/* Card text */
.service-text .card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Strong emphasis line */
.service-text p.fw-bold {
    color: var(--gold-soft);
    letter-spacing: 0.5px;
}

/* Section title luxury gradient */
.title-center h1 {
    border: 4px solid rgba(201, 173, 90, 0.15);
    padding: 15px;
}


/* Remove harsh Bootstrap feel */
.service-text .card * {
    text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}
/* ===============================
   ELEGANT FLIGHT SECTION
   =============================== */

.flight-elegant {
    background: linear-gradient(
        180deg,
        #0f2f1f 0%,
        #c9ad5a 65%,
        #c3a44d 100%
    );
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

/* Soft luxury fade */
.flight-elegant::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        transparent 40%,
        rgba(0,0,0,0.25)
    );
}

/* Layout */
.flight-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Text */
.flight-text h1 {
    font-size: 52px;
    font-weight: 600;              /* lighter than bold */
    letter-spacing: 3px;           /* airy, premium */
    text-transform: uppercase;
    color: #1f3d2b;                /* deep elegant green */
    margin-bottom: 20px;
}
/* Subtitle refinement */
.flight-text p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);     /* softer contrast */
    letter-spacing: 0.4px;
    max-width: 420px;
}
/* Plane */
.flight-plane {
    position: relative;
}
.flight-text h1 span {
    font-weight: 400;
    opacity: 0.55;
}

.flight-plane img {
    max-width: 95%;
    transform: translateX(40px);
    filter:
        drop-shadow(0 18px 35px rgba(0,0,0,0.35))
        drop-shadow(0 0 0 rgba(0,0,0,0));
    opacity: 0.95;
}

/* Subtle elegance hover (optional) */
.flight-plane img:hover {
    transform: translateX(40px) translateY(-4px);
    transition: transform 0.4s ease;
}

.logo{
    width: 50px;
}

/* Responsive */
@media (max-width: 992px) {
    .flight-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .flight-plane img {
        transform: none;
        max-width: 85%;
        margin: auto;
    }

    .flight-text h1 {
        font-size: 46px;
        color: var(--bs-white);
    }
    .flight-text p{
        color: var(--bs-white);
    }
}
/* ===============================
   CUISINE SECTION – PREMIUM STYLE
   =============================== */

.cuisine-section {
    background: linear-gradient(
        135deg,
        #f1c75b 0%,
        #d6b25b 35%,
        #0f2f1f 35%,
        #0b2418 100%
    );
    padding: 0;
    overflow: hidden;
}

/* Main container */
.cuisine-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 420px;
}

/* ===============================
   IMAGE AREA
   =============================== */

.cuisine-image {
    background: #f1c75b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.cuisine-image img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* ===============================
   CONTENT AREA
   =============================== */

.cuisine-content {
    padding: 80px 70px;
    color: #ffffff;
}

/* Header */
.cuisine-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.cuisine-header h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #f1c75b;
    margin: 0;
}

.cuisine-tag {
    padding: 6px 18px;
    background: #f1c75b;
    color: #0f2f1f;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
}

/* Main Text */
.cuisine-content h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 1px;
    color: #ffffff;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
    .cuisine-container {
        grid-template-columns: 1fr;
    }

    .cuisine-image {
        padding: 40px;
    }

    .cuisine-content {
        padding: 50px 30px;
        text-align: center;
    }

    .cuisine-header {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cuisine-content h2 {
        font-size: 28px;
    }
}
/* =====================================================
   PRINCIPLE OF TRUTH SECTION
   ===================================================== */

.principle-section {
    background: linear-gradient(
        135deg,
        #f6d86f 0%,
        #f1c75b 100%
    );
    padding: 90px 0;
}

.principle-container {
    max-width: 1140px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

/* ===============================
   TEXT AREA
   =============================== */

.principle-text h2 {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2f5d32;
    margin-bottom: 30px;
}

/* Card */
.principle-card {
    background: linear-gradient(
        180deg,
        #2f5d32 0%,
        #1f3d2b 100%
    );
    padding: 32px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.principle-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.principle-card strong {
    color: #f1c75b;
    font-weight: 600;
}

/* ===============================
   IMAGE AREA
   =============================== */

.principle-visual {
    display: flex;
    justify-content: center;
}

.principle-visual img {
    max-width: 320px;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.35));
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
    .principle-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .principle-text h2 {
        font-size: 42px;
    }

    .principle-visual img {
        margin-top: 40px;
        max-width: 260px;
    }
}



.whatsapp_float{
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 120px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    padding-top: 7px;
}
.whatsapp_float i{font-size: 38px;}
