/* Top Bar CSS */
.header-bottom-section,
.header-bottom-section a,
.header-bottom-section p,
.header-bottom-section i {
    color: white !important;
}

.social-icons {
        display: flex;
        gap: 12px;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        /* background: rgba(255, 255, 255, 0.1); */
        color: white;
        border-radius: 50%; /* Makes it circular */
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background: #FFD700;
        color: #000;
        transform: scale(1.1);
    }

    i.gold-icon-top-bar{
        color: #9a6d2e!important;
    }

/* SHOP NOW BUTTON CSS */
.shop-now-btn {
        display: inline-block;
        padding: 12px 24px;
        background-color: #B28137;
        color: white;
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 0; /* Removes rounded corners */
        transition: background-color 0.3s ease;
    }

    .shop-now-btn:hover {
        background-color: #9a6d2e; /* Slightly darker on hover */
        color: white;
    }

    /* login and sigup buttons */

    .auth-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #007bff; /* or your theme's primary color */
}

.auth-links a:first-child {
    border-right: 1px solid #ddd;
    padding-right: 10px;
    margin-right: 8px;
}

.content h3{
    font-weight: 600;
    font-size: 22px;
}

.bg-image .content p {
    width: 50%;
}

@media only screen and (max-width: 600px) {
  .bg-image .content p {
    width: 100%;
   }
}

.section-title .sub-title{
    color: #000!important;
}


.section-title h2{
    font-weight: 600;
    font-size: 26px;
}


/* active class css in main menu */
.main-menu ul li a.active {
    color: #ff6b6b; /* Change to your theme color */
    font-weight: 600;
    position: relative;
}

/* Optional: Add an underline/border effect */
.main-menu ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b6b;
}


/* datatable little css */
.dataTables_wrapper .dataTables_filter input{
    margin-bottom: 10px!important;
}


.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff3d3d; /* Red background color */
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* For the list view */
.product-details-item.style-2 .sale-badge {
    top: 15px;
    right: 15px;
    font-size: 13px;
    padding: 5px 10px;
}


/* isotope filter control */

/* Isotope Filtering */
.filter__controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.filter__controls a {
    display: block;
    padding: 8px 20px;
    margin: 0 5px 10px;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.filter__controls a.active,
.filter__controls a:hover {
    background: #d51c24; /* Your theme color */
    color: #fff;
    border-color: #d51c24;
}

/* Isotope transitions */
.mix {
    display: none; /* Hide items initially */
}

.product-grid .col-xl-3 {
    margin-bottom: 30px;
}

/* bg placeholder on home page when three man categories images are not available */
    .main-category-card {
        border: 1px solid #eee;
        transition: all 0.3s ease;
    }

    .main-category-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

    .sub-category-card {
        border: 1px solid #ddd;
        transition: all 0.2s ease;
    }

    .sub-category-card:hover {
        background-color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .breadcrumb-custom span {
        margin: 0 5px;
        color: #999;
    }

/* //Variants Table style in product detail page */
.variant-table {
    width: 100%;
    border-collapse: collapse;
}

.variant-table th, .variant-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.variant-table th {
    background-color: #f2f2f2;
}


/* quantity controls in the product detail page */

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.variant-quantity:disabled {
    background-color: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

button:disabled {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

/* cart icon style */

div.tip {
	position: absolute;
	right: -12px;
	top: -11px;
	height: 18px;
	width: 18px;
	background: #111111;
	font-size: 10px;
	font-weight: 500;
	color: #ffffff;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
}


/* * checkout payment method modals css */
.modal-body a {
	font-weight: bold;
	color: #007bff; /* Bootstrap primary color */
	text-decoration: none;
}

.modal-body a:hover {
	text-decoration: underline;
}

.modal-body ul {
	padding-left: 0;
	list-style: none;
}

.modal-body li {
	margin-bottom: 10px; /* Adds spacing between list items */
}


/* payment method css in thank you page */
.payment-method-container {
	font-family: Arial, sans-serif;
	margin: 20px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 8px;
}

.payment-method-title {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
}

.payment-details {
	background-color: #fff;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	color: #555;
}

.payment-details p {
	margin: 5px 0;
}

.payment-details strong {
	color: #000;
}

.payment-method-title, .payment-details {
	transition: all 0.3s ease;
}

.payment-method-container:hover .payment-method-title {
	color: #28a745;
}

.payment-method-container:hover .payment-details {
	border-color: #28a745;
}

/* space top of main */
main.py-4{
	padding-top: 0.2rem!important;
}


/* Pament Verification Page: */

.payment-verification .main-content {
    display: flex;
    justify-content: center;
}

#PaymentVerificationForm {
    width: 50%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#PaymentVerificationForm .form-group {
    display: flex;
    flex-direction: column; /* Ensures label stays above input fields */
    align-items: flex-start; /* Aligns everything to the left */
    margin-bottom: 15px;
}

#PaymentVerificationForm label {
    font-weight: 600;
    margin-bottom: 5px; /* Adds space between label and input */
}

#PaymentVerificationForm input,
#PaymentVerificationForm select {
    width: 100%!important;
    height: 50px!important;
    border: 1px solid black!important;
    border-radius: 2px!important;
    font-size: 14px!important;
    padding-left: 20px!important;
    color: black!important;
}
select#payment_method{
    width: 100%!important;
    height: 50px!important;
    border: 1px solid black!important;
    border-radius: 2px!important;
    font-size: 14px!important;
    padding-left: 20px!important;
    color: black!important;
    display: block!important;
}

#PaymentVerificationForm button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
}


/* Upload Image Style in the forms ******************************* */
.image-upload-container {
	border: 2px dashed #ddd;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	cursor: pointer;
	background: #fafafa;
	transition: 0.3s;
	position: relative;
	width: 100%;
	border-color: #000!important;
  }

  .image-upload-container:hover {
	border-color: black;
	background: #fef3f8;
  }

  .image-upload-container img {
	max-width: 100px;
	display: block;
	margin: 10px auto;
  }

  .image-upload-container p {
	font-size: 14px;
	color: #555;
	margin-top: 10px;
  }

  .image-upload-container input {
	display: none;
  }

  .upload-icon {
	font-size: 24px;
	color: #005A5A;
	margin-bottom: 5px;
  }

  .upload-text {
	color: #005A5A;
	font-weight: bold;
  }
  /* Upload Image Style ends - in the forms ******************************* */


  /* select in review form */

  .form-clt select#rating{
    width: 100%!important;
    height: 50px!important;
    border: 1px solid black!important;
    border-radius: 2px!important;
    font-size: 14px!important;
    padding-left: 20px!important;
    color: black!important;
    display: block!important;
}


/* site hoem page/landing page css **************************************************** */

.home-search-section .search-box{
    background-color: #005A5A;
    position: relative;
    z-index: 2;
    border:10px solid #fff;
    border-radius: 7px!important;
    height: 180px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -30px;
}

.home-search-section .search-box input.form-control {
    height: 50px!important;
    border: 2px solid silver;
    border-radius: 7px;
}

@media only screen and (max-width: 600px) {
   .home-search-section .search-box{
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;

    }
}


.home-search-section .search-box-title{
    color: #fff;
}


 .journey-purpose-section {
        text-align: center;
        padding: 15px 0;
    }

    .content-box {
        max-width: 100%;
        margin: 0 auto;
        /* padding: 40px; */
        border-radius: 5px;
    }

    .content-box h1 {
        font-size: 2.5rem;
        font-weight: 300;
        color: #005A5A;
    }

      .content-box h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 7px;
        color: #005A5A;
    }

        .content-box p {
        font-size: 1.1rem;
        line-height: 1.6;
    }


    /* services section  */

    .services-section {
        background-color: #f8f9fa;
    }

    .service-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        border:1px solid #005A5A;

    }

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-icon {
        color: #005A5A;
    }


  /* Populare Places CSS */

  .popular-places {
    background-color: #f0f0f0;
    }

    .place-card {
        height: 260px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 10px;
        display: flex;
        align-items: flex-end;
        padding: 20px;
        position: relative;
        color: white;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        overflow: hidden; /* Ensures content stays within bounds */
    }

    /* Alternative approach using object-fit if using img tags */
    .place-card-img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 10px;
    }

    .place-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
        z-index: 1;
    }

    .place-card:hover {
        transform: scale(1.03);
    }

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

    .place-content h3 {
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
        color: #fff;
    }




    /* partner hotels section */
     .logo-box {
    text-align: center;
    margin: 0 30px;
    padding: 20px;
}

.logo-placeholder {
    width: 120px;
    height: 50px;
    background-color: #e0e0e0;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.logo-name {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .logo-box {
        margin: 0 15px;
    }
    .section-title {
        font-size: 2rem;
    }
}


    /* hotel packages section */

     .hotel-deals {
        background-color: #f8f9fa;
    }


     .hotel-deals h1{
         font-size: 2rem;
        /* font-weight: bold; */
        margin-bottom: 7px;
        color: #005A5A;
    }

    .hotel-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .hotel-card:hover {
        transform: translateY(-5px);
    }

    .hotel-image {
        height: 200px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .hotel-features {
        margin: 20px 0;
    }

    .feature-item {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

    .feature-label {
        color: #666;
    }

    .feature-value {
        font-weight: 600;
    }

    .price {
        font-size: 1.5rem;
        font-weight: bold;
        color: #005A5A;
    }

   /* gateway section */
   .gateway-section {
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #005A5A;
    }

    .gateway-section h1{
        font-size: 24px;
        font-weight: 600;
          color: #fff;
    }


    /* hotels slider section */

   .luxury-hotels {
            /* background: linear-gradient(135deg, #005A5A, #006666, #555); */
            padding: 60px 0;
            color: white;
        }

        .luxury-hotels h2 {
            font-size: 2rem;
            /* font-weight: bold; */
            margin-bottom: 7px;
            color: #fff;
        }

        .partner-logos {
            position: relative;
            padding: 0 50px;
        }

        .logo-carousel {
            display: flex;
            overflow: hidden;
            padding: 20px 0;
        }

        .logo-track {
            display: flex;
            animation: carouselScroll 30s linear infinite;
        }

        .logo-box {
            flex: 0 0 auto;
            width: 200px;
            text-align: center;
            margin: 0 15px;
            transition: all 0.3s ease;
        }

        .logo-box:hover {
            transform: translateY(-10px);
        }

        .logo-placeholder {
            height: 100px;
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .logo-box:hover .logo-placeholder {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .logo-placeholder i {
            font-size: 2.5rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .logo-name {
            font-weight: 600;
            margin: 0;
            font-size: 0.95rem;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .carousel-control:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .carousel-control.prev {
            left: 0;
        }

        .carousel-control.next {
            right: 0;
        }

        .carousel-pause {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .carousel-pause:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        @keyframes carouselScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 8 - 15px * 8));
            }
        }

        .paused {
            animation-play-state: paused;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .logo-box {
                width: 160px;
            }

            .partner-logos {
                padding: 0 40px;
            }

            @keyframes carouselScroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-160px * 8 - 15px * 8));
                }
            }
        }

        @media (max-width: 576px) {
            .logo-box {
                width: 140px;
            }

            .partner-logos {
                padding: 0 35px;
            }

            .logo-placeholder {
                height: 80px;
            }

            .logo-placeholder i {
                font-size: 2rem;
            }

            @keyframes carouselScroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-140px * 8 - 15px * 8));
                }
            }
        }



        /* umrah packages section css on homepage */
        .umrah-packages {
            padding: 60px 0;
            background: #fff;
            color: white;
        }

        .umrah-packages h2 {
            font-size: 2rem;
            /* font-weight: bold; */
            margin-bottom: 7px;
            color: #005A5A;
        }

        .package-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

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

        .package-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .package-body {
            padding: 25px;
            text-align: center;
        }

        .package-title {
            color: #005A5A;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .starting-from {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 5px;
        }

        .price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #005A5A;
            margin-bottom: 20px;
        }

        .details-btn {
            display: inline-block;
            background-color: #c29847;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 2px solid #c29847;
        }

        .details-btn:hover {
            background-color: transparent;
            color: #c29847;
        }

        .package-features {
            margin: 20px 0;
            padding: 0;
            list-style: none;
        }

        .package-features li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f1f1;
            color: #555;
        }

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

        .package-features li i {
            color: #c29847;
            margin-right: 10px;
        }

        .ribbon {
            position: absolute;
            top: 15px;
            right: -35px;
            transform: rotate(45deg);
            background: #c29847;
            color: white;
            padding: 5px 40px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .package-card {
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .package-card {
                margin-bottom: 30px;
            }

            .umrah-packages h2 {
                font-size: 1.8rem;
            }
        }


    /* what we do section */

    .expertise-section {
        background-color: #f8f9fa;
        color: #333;
    }

    .main-heading {
        font-size: 2rem;
        font-weight: 700;
        color: #005A5A;
    }

    .sub-heading {
        font-size: 1.5rem;
        color: #005a5a;
        font-weight: 600;
    }

    .description-text {
        font-size: 1rem;
        color: #555;
        line-height: 1.7;
    }

    .custom-checklist {
        list-style: none;
        padding: 0;
    }

    .custom-checklist li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
        color: #005a5a;
        font-weight: 500;
    }

    .custom-checklist li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: #005a5a;
        font-weight: bold;
    }

    /* Image styles */
    .main-image-wrapper {
        position: relative;
        max-width: 100%;
    }

    .main-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .overlay-card {
        position: absolute;
        bottom: -30px;
        left: 20px;
        width: 250px;
    }

    .sub-img {
        width: 100%;
        border-radius: 8px;
    }

    .experience-badge {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background-color: #c29847;
        color: white;
        padding: 10px 15px;
        border-radius: 6px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .experience-badge .years {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1;
    }

    .experience-badge .label {
        font-size: 0.9rem;
    }

    /* Button */
    .discover-btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: #c29847;
        color: #fff;
        font-weight: 600;
        text-decoration: none;
        border-radius: 4px;
        transition: background 0.3s ease;
    }

    .discover-btn:hover {
        background-color: #a98237;
    }



    /* customer reviews section */
    .client-reviews {
        background-color: #f8f9fa;
        position: relative;
    }

    .client-reviews h2{
         font-size: 2rem;
        font-weight: bold;
        /* margin-bottom: 7px; */
        color: #005A5A;
    }

    .review-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.5rem !important;
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .user-icon {
        width: 80px;
        height: 80px;
        background: #f0f7ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }

    .review-content {
        color: #555;
        line-height: 1.7;
        flex-grow: 1;
    }

    .review-content ul {
        list-style-type: none;
        padding-left: 0;
        margin-top: 1rem;
    }

    .review-content li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .review-content li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #0d6efd;
        font-weight: bold;
    }

    .rating {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .reviewer {
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: auto;
        width: 100%;
    }

    .reviewer strong {
        color: #2c3e50;
        font-weight: 600;
    }

    .reviewer span {
        font-size: 0.9rem;
        color: #6c757d;
    }

    /* Responsive adjustments */
    @media (max-width: 767.98px) {
        .review-card {
            margin-bottom: 1.5rem;
        }
    }


    /* youtube gallery section */

     .popular-places {
            background-color: #f0f0f0;
            padding: 60px 0;
        }

        .popular-places h2 {
             font-size: 2rem;
            /* font-weight: bold; */
            margin-bottom: 7px;
            color: #005A5A;
        }



        /* .popular-places h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #e74c3c;
            border-radius: 2px;
        } */

        .place-card {
            height: 260px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 12px;
            display: flex;
            align-items: flex-end;
            padding: 25px;
            position: relative;
            color: white;
            transition: all 0.4s ease;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            cursor: pointer;
        }

        .place-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
            z-index: 1;
            transition: all 0.4s ease;
            opacity: 0.8;
        }

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

        .place-card:hover::before {
            opacity: 0.9;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
        }

        .place-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .place-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            color: #fff;
            transition: all 0.3s ease;
        }

        .place-card:hover .place-content h3 {
            transform: translateY(-5px);
        }

        .place-info {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            font-size: 0.95rem;
            line-height: 1.5;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }

        .place-card:hover .place-info {
            max-height: 100px;
            margin-top: 10px;
        }

        .view-button {
            display: inline-block;
            margin-top: 15px;
            padding: 6px 15px;
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: 20px;
            color: white;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(10px);
        }

        .place-card:hover .view-button {
            opacity: 1;
            transform: translateY(0);
        }

        .view-button:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }

        /* YouTube Play Button Styles */
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ff0000;
            background: rgba(255, 255, 255, 0.9);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            opacity: 0.9;
            transition: all 0.3s ease;
            z-index: 3;
        }

        .play-button.small {
            width: 45px;
            height: 45px;
            font-size: 1.5rem;
        }

        .play-button:hover {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
            background: rgba(255, 255, 255, 1);
        }

        .video-duration {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            z-index: 3;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .place-card {
                height: 220px;
            }

            .place-content h3 {
                font-size: 1.5rem;
            }

            .popular-places h2 {
                font-size: 1.8rem;
            }

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

        @media (max-width: 576px) {
            .place-card {
                height: 200px;
                padding: 20px;
            }

            .place-content h3 {
                font-size: 1.4rem;
            }

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


/* product detail page ***************** */
.variant-quantity{
    color: black!important;
}



/* Sticky Icons */
.sticky-icons {
    position: fixed;
    right: 10px; /* Distance from the right edge of the viewport */
    top: 50%; /* Vertically centered */
    transform: translateY(-50%); /* Adjust for centering */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Increased space between icons */
    z-index: 9999; /* Ensures it stays above all other elements */
}

.sticky-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Larger icon size */
    height: 40px;
    background-color: #9a6d2e; /* Black background */
    color: #fff; /* White icon color */
    border-radius: 50%; /* Make the icon container circular */
    text-decoration: none; /* Remove underline */
    font-size: 30px; /* Increase icon size */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for better visibility */
}

.sticky-icons a:hover {
    background-color: #333; /* Slightly lighter black on hover */
    color: #fff; /* Keep icon color white on hover */
}

.sticky-icons i{
    font-size: 16px;
}

.cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}


@media only screen and (max-width: 600px) {
  #PaymentVerificationForm {
    width: 100%!important;
  }
  .payment-verification .main-content{
    display:block!important;

  }

  .sticky-icons {
    flex-direction: row;
    bottom: 10px;
    top: auto;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    gap: 10px;
}

.sticky-icons a {
    width: 50px;
    height: 50px;
    font-size: 24px;
}
}

/* Footer Bottom */

.footer-bottom {
    text-align: center;
    width: 100%;
    background-color: #005A5A;
    color: #fff;
}

.footer-wrapper {
    display: inline-block;
    text-align: center;
     color: #fff;
}

.footer-bottom p {
    margin: 0 auto;
    display: inline-block;
     color: #fff;
}



/* The Categories/collection Section */

.our-collection-section {
    background: #fff;
    padding: 5px 8px 5px 8px;
}

.category-card {
    display: block;
    text-decoration: none;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.category-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically */
    text-align: center;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.category-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
    padding: 10px 20px;
    margin: 0;
}



/* select, nice select in the form */
/* .nice-select{
    border: 1px solid silver!important;
    height: 60px!important;
    vertical-align: middle!important;
    padding: 10px!important;
} */

 .nice-select {
            border: 1px solid silver !important;
            height: 50px !important;
            vertical-align: middle !important;
            padding: 10px !important;
            background: white;
            border-radius: 5px;
        }

.single-tab .review-form .form-clt input{
    background: #fff!important;
    border: 1px solid silver!important;
}

.single-tab .review-form .form-clt-big textarea{
    background: #fff!important;
    border: 1px solid silver!important;
}


/* umrah packages css ****************************************************************************/
                .container {
                    max-width: 1200px;
                    margin: 0 auto;
                    padding: 20px;
                    font-family: Arial, sans-serif;
                    background-color: none;
                }



                .package-card h2 {
                    color: #fff;
                    margin: 0 0 10px 0;
                    font-size: 24px;
                    display: inline-block;
                }

                .view-details {
                    float: right;
                    color: #3498db;
                    text-decoration: none;
                    font-weight: bold;
                    margin-top: 5px;
                }

                .view-details:hover {
                    text-decoration: underline;
                }

                .package-content {
                    margin-top: 15px;
                }

                .airline-info {
                    display: flex;
                    align-items: center;
                    margin: 15px 0;
                }

                .airline-logo {
                    width: 40px;
                    height: 40px;
                    margin-right: 10px;
                }

                .airline-name {
                    font-weight: bold;
                    color: #333;
                }

                .hotel-info p,
                .route-info p,
                .seats-available p {
                    margin: 8px 0;
                    color: #555;
                }

                .package-options {
                    margin-top: 20px;
                    overflow-x: auto;
                }

               .package-options table thead tr th {
                    background-color: #ededed !important;
                }


                table {
                    width: 100%;
                    border-collapse: collapse;
                    margin-top: 10px;
                }

                th, td {
                    border: 1px solid #ddd;
                    padding: 10px;
                    text-align: center;
                    font-weight: 600;
                }

                th {
                    background-color: #f5f5f5;
                    font-weight: bold;
                }

                tr:nth-child(even) {
                    background-color: #f9f9f9;
                }



/* Makkah & Madinah Restaurants */

    .hotel-description-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .nav-tabs {
        border-bottom: 2px solid #005A5A;
    }
    .nav-tabs .nav-link {
        color: #555;
        font-weight: 600;
        border: none;
        padding: 12px 25px;
    }
    .nav-tabs .nav-link.active {
        color: #005A5A;
        background-color: #fff;
        border-bottom: 3px solid #005A5A;
    }
    .nav-tabs .nav-link:hover:not(.active) {
        color: #005A5A;
        background-color: #f8f9fa;
    }
    .description-text {
        color: #555;
        line-height: 1.8;
    }


/* checkout page css ************************************* */


    .umrah-checkout-section {
        background: #f9f9f9;
        padding: 60px 0;
    }
    .checkout-method-card {
        background: white;
        border-radius: 8px;
        padding: 25px;
        height: 100%;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        text-align: center;
        transition: all 0.3s ease;
    }
    .checkout-method-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .method-icon {
        font-size: 40px;
        color: #005A5A;
        margin-bottom: 15px;
    }
    .checkout-method-card h4 {
        color: #005A5A;
        margin-bottom: 10px;
    }
    .checkout-method-card p {
        color: #666;
        margin-bottom: 20px;
        font-size: 14px;
    }
    .breadcrumb-list {
        list-style: none;
        padding: 0;
    }
    .breadcrumb-list li {
        display: inline;
    }
    .breadcrumb-list li:after {
        content: "›";
        margin: 0 10px;
        color: #999;
    }
    .breadcrumb-list li:last-child:after {
        content: none;
    }



/* package summary in checkout pages ******************************* */

.booking-summary-card {
                            background: white;
                            border-radius: 8px;
                            padding: 25px;
                            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
                        }
                        .summary-title {
                            color: #005A5A;
                            border-bottom: 1px solid #eee;
                            padding-bottom: 15px;
                            margin-bottom: 20px;
                        }
                        .summary-header {
                            margin-bottom: 20px;
                        }
                        .summary-header h4 {
                            color: #333;
                            margin-bottom: 15px;
                        }
                        .package-image {
                            height: 150px;
                            background-size: cover;
                            background-position: center;
                            border-radius: 5px;
                            margin-bottom: 15px;
                        }
                        .detail-row {
                            display: flex;
                            justify-content: space-between;
                            margin-bottom: 12px;
                            padding-bottom: 12px;
                            border-bottom: 1px dashed #eee;
                        }
                        .detail-label {
                            color: #666;
                            font-weight: 500;
                        }
                        .detail-value {
                            color: #333;
                            text-align: right;
                            max-width: 60%;
                        }
                        .pricing-summary {
                            margin-top: 20px;
                            padding-top: 15px;
                            border-top: 1px solid #eee;
                        }
                        .pricing-summary h5 {
                            color: #005A5A;
                            margin-bottom: 15px;
                        }
                        .price-row {
                            display: flex;
                            justify-content: space-between;
                            margin-bottom: 8px;
                        }
                        .price-row.selected {
                            color: #005A5A;
                            font-weight: bold;
                        }
                        .summary-footer {
                            margin-top: 20px;
                            padding-top: 15px;
                            border-top: 1px solid #eee;
                            font-size: 14px;
                            color: #666;
                        }
                        .seats-available i {
                            color: #005A5A;
                            margin-right: 5px;
                        }



 /* umrah package style css */

 .package-card {
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        background: white;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .package-header {
        background: #006666;
        color: #fff;
        padding: 1rem;
    }

    .package-header h2 {
        font-size: 1.4rem;
        font-weight: bold;
        margin: 0;
    }

    .package-header .btn {
        border-color: #fff;
        color: #fff;
    }

    .package-header .btn:hover {
        background: #fff;
        color: #006666;
    }

    .hotel-info p {
        font-size: 0.9rem;
        margin: 0;
        color: #333;
    }

    .route-details {
        background: #f8f9fa;
        border-radius: 5px;
        padding: 0.75rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .tag-badge {
        background-color: #006666;
        color: #fff;
        font-size: 0.75rem;
        padding: 2px 8px;
        border-radius: 3px;
    }

    .seats-badge {
        background-color: #006666;
        color: #fff;
        font-weight: bold;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.85rem;
        font-size: 22px;
    }

    .package-options table {
        width: 100%;
        border-collapse: collapse;
    }

    .package-options th {
        background: #fff;
        color: #006666;
        padding: 10px;
        text-align: center;
        font-weight: bold;
    }

    .package-options td {
        padding: 10px;
        text-align: center;
        border-top: 1px solid #ddd;
        color: #000;
        font-size: 0.9rem;
    }

    .package-options td:nth-child(3),
    .package-options td:nth-child(n+4) {
        font-weight: bold;
    }

    .service-tags {
        display: inline-flex;
        align-items: center;
        background-color: #006666;
        color: #fff;
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: bold;
        gap: 8px;
    }

    .service-tags span {
        position: relative;
    }

    .service-tags span:not(:last-child)::after {
        content: "|";
        position: relative;
        margin-left: 8px;
        color: #fff;
    }


    .seats-info {
    font-weight: 600; /* little bolder */
    color: #555;      /* medium grey */
}

.seats-info .seats-badge {
    background-color: #006666;
    color: #fff;
    font-weight: 600!important;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
}


.route-info {
    font-weight: 600;  /* little bolder */
    color: #555;       /* medium grey */
}

.route-info strong {
    color: #333;       /* slightly darker for the label */
}


/* common breadcrumb css ****************************************** */
.bread-crumb-section {
    background-color: #005A5A;
    padding: 30px;
}
.bread-crumb-section h2{
    color: #fff;
    font-weight: 600;
    font-size: 22px;
}

.bread-crumb-section p{
    color: #fff;
}

.bread-crumb-section {
    color: #fff;
}

/* contact css ******************************** */



/* store featured catgories section ********************************************** */
.shop-bg-section div.col-lg-6{
    padding:0px 8px!important;

}

/* store our collection categories spacing. ****************************************** */
.our-collection-section div.col-md-3{
    margin: 0px!important;
}

/* package detail section page images spacing */
.hotel-description-section div.col-lg-4{
    padding: 0px 5px!important;
}


.conatct-main-wrapper .contact-box-wrapper .contact-right .contact-item .content h6{
    text-transform: lowercase!important;
}


/* From the blogs section */

.news-section h2{
     font-size: 2rem;
        /* font-weight: bold; */
        margin-bottom: 7px;
        color: #005A5A;
}


.news-card-items-2 .news-image {
    height: 220px; /* Adjust as needed */
    overflow: hidden;
    border-radius: 8px; /* optional for smooth corners */
}

.news-card-items-2 .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps the image proportional */
    display: block;
}


.header-bottom-section .container{
    padding:5px!important;
}

.passenger-row  input.form-control, select.form-control {
    height: 40px !important;
}

.passenger-row input.form-controll{
    height: 40px !important;
}
