/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Atreves
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header  / .header
3. Banner  /.banner-con
4. Explore  /.explore-con
5. About  /.about-con
6. Service  /.service-con
7. Join  /.join-con
8. Place  /.place-con
9. Testimonial  /.testimonial-con
10. Partner  /.partner-con
11. Footer  /.footer-con

*/
/*------------------------------------------------------------------
# [Color Codes]

#    --e-global-color-primary: #ffffff;
#    --e-global-color-secondary: #0f0200;
#    --e-global-color-accent: #f26d52;
#    --e-global-color-text: #4c4c4c;
# 	 --e-global-color-white: #ffffff;
#    --e-global-color-black: #000000;
#    --e-global-color-very-red: #201615;
#    --e-global-color-very-dark-red: #271b19;
#    --e-global-color-light-grayish-red: #a29a99;
#    --e-global-color-light-grayish-orange: #fcfaf5;
#    --e-global-color-light-grayish-yellow: #f5f4f1;
#    --e-global-color-light-yellow: #ffc045;
#    --e-global-color-star-yellow: #ffea00;
#    --e-global-color-pure-red: #ff0000;

*/
/*------------------------------------------------------------------
# [Typography]
 
Body copy: "DM Sans", sans-serif;
Heading: "Playfair Display", serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');
body {
    font-family: "Roboto", sans-serif;
}


:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #0f0200;
    --e-global-color-accent: #f26d52;
    --e-global-color-text: #4c4c4c;
	--e-global-color-white: #ffffff;
    --e-global-color-black: #000000;
    --e-global-color-very-red: #201615;
    --e-global-color-very-dark-red: #271b19;
    --e-global-color-light-grayish-red: #a29a99;
    --e-global-color-light-grayish-orange: #fcfaf5;
    --e-global-color-light-grayish-yellow: #f5f4f1;
    --e-global-color-light-yellow: #ffc045;
    --e-global-color-star-yellow: #ffea00;
    --e-global-color-pure-red: #ff0000;
}
h1 {
    font-size: 76px;
    line-height: 82px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}
h2 {
    font-size: 33px;
    line-height: 58px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
    font-family: 'Playfair Display', serif;
}
h3 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
h5 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
h6{
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--e-global-color-accent);
}
p{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.text-size-18{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.text-size-16{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.text-size-14{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.all_button {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 30px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    font-family: "Roboto", sans-serif;
    transition: all 0.8s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 20px;
    padding-left: 20px;
}
.all_button:hover{
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.all_button i {
    font-size: 12px;
    margin-left: 20px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-white);
}
.all_button:hover i{
    transform: translateX(4px);
}
html{
    scroll-behavior: smooth;
}

/* Home Page */
/* Contact info section */
.contact-info {
    display: flex;
    gap: 10px; /* Space between items */
}
/* Top bar styles */
.top-bar {
    background: linear-gradient(to right, #f26d52, #f49e6d); /* Top bar color */
    color: white; /* Text color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px; /* Padding for spacing */
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.header {
    padding: 20px 0px 20px;
    position: relative;
    z-index: 5;
}
.logo img {
    max-width: 100%; /* Ensures the image never overflows its container */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes any inline gap below the image */
}

.logo {
    max-width: 200px; /* Set a maximum width for the logo container */
    width: 100%; /* Allows the logo to scale with its container */
}

.navbar-collapse .navbar-nav{
    text-align: center;
    align-items: center; 
    display: inherit;
}
.navbar-expand-lg{
    position: relative;
    z-index: 1;
}
.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-nav li {
    margin: 0 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-nav .nav-item a{
    font-size: 15px;
    line-height: 16px;
    font-weight: 400;
    color: var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item a:hover{
    color: var(--e-global-color-accent) !important;
    background-color: transparent;
}
.navbar-nav .active > a{
    /* color: var(--e-global-color-accent) !important; */
}
.navbar-nav li:last-child {
    margin-right: 0;
    padding-right: 0;
    margin-left: 0;
}
.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}
.navbar-nav .dropdown-menu {
    position: absolute;
    left: 0;
    top: 62px;
    min-width: 212px;
    padding: 0;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 10%);
    background-color: var(--e-global-color-white);
}
.navbar-nav .drop-down-pages li{
    margin: 0;
    border-bottom: 1px solid var(--e-global-color-white);
}
.navbar-nav .drop-down-pages .nav-item a {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 10px 20px;
    color: var(--e-global-color-nav-text) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:hover::after {
    display: none;
}
.navbar-nav .drop-down-pages li:first-child a::before {
    content: '';
    width: 24px;
    height: 12px;
    position: absolute;
    background-image: url(../images/nav-node.png);
    top: -12px;
    left: 8%;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:first-child a:hover::before {
    background-image: url(../images/nav-node-hover.png);
}
.navbar-nav .drop-down-pages .active:first-child > a::before{
    background-image: url(../images/nav-node-hover.png);
}
.navbar-nav .drop-down-pages li:last-child{
    margin: 0;
    border: none;
    display: block !important;
}
.navbar-nav .nav-item .dropdown-item:hover{
    border-radius: 0;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a{
    border-radius: 0;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}
.dropdown-item.active,
.dropdown-item:active {
    border-radius: 0;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a:hover {
    border-radius: 0;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .nav-item:first-child a:hover {
    border-radius: 10px 10px 0 0;
}
.navbar-nav .drop-down-pages .active:first-child > a {
    border-radius: 10px 10px 0 0;
}
.navbar-nav .drop-down-pages .nav-item:last-child a:hover {
    border-radius: 0 0 10px 10px;
}
.navbar-nav .drop-down-pages .active:last-child > a {
    border-radius: 0 0 10px 10px;
}
.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}
.navbar-nav .nav-item .book_now{
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    min-width: 160px;
    height: 52px;
    padding: 18px;
    border-radius: 30px;
    position: relative;
    text-align: center;
    display: inline-block;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent)  !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item .book_now i {
    font-size: 12px;
    margin-left: 24px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-white);
}
.navbar-nav .nav-item .book_now:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-secondary) !important;
}
.navbar-nav .nav-item .book_now:hover i{
    transform: translateX(4px);
}
.banner-con {
    padding: 210px 0 330px;
}
/* Banner Image */
.banner-con:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 107%;
    top: 0;
    left: 0; /* Ensure it spans the full width */
    background-size: cover; /* Scales the image while maintaining its aspect ratio */
    background-position: center; /* Keeps the focus centered */
    background-repeat: no-repeat;
    background-image: url(../images/index/banner-mecca.jpg); /* Path to your image */
    z-index: -1; /* Ensures the pseudo-element is behind content */
}

/* Ensure the parent container has relative positioning */
.banner-con {
    position: relative; /* Required for the pseudo-element to align properly */
    width: 100%; /* Ensures it spans the screen */
    height: auto; /* Allows dynamic height */
    min-height: 50vh; /* Set a minimum height for responsiveness */
}
.banner-con .banner_content {
    margin: 0 23px;
}
.banner-con .banner_content h3{
    width: 350px;
    padding: 0 54px;
    margin: 0 auto 14px;
    letter-spacing: 2.0px;
    word-spacing: 2.0px;
    position: relative;
}
.banner-con .banner_content h3::before,
.banner-con .banner_content h3::after {
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 42px;
    height: 2px;
    position: absolute;
    background-color: var(--e-global-color-accent);
}
.banner-con .banner_content h3::before {
    left: 0;
}
.banner-con .banner_content h3::after {
    right: 0;
}
.banner-con {
    position: relative;
    background-image: url('assets/images/index/banner-mecca.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}
/* New changes */
.banner-title {
    font-size: 2.5rem; /* Default size for desktop */
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8); /* Keeps the text shadow */
    text-align: center; /* Center text alignment for better readability */
    color: #fff; /* Text color */
	padding-top: 85px;
}
.banner-con .banner_content h1 {
    color: white;
    font-size: 65px;
    font-family: fantasy;
    line-height: 1.3;
    margin: 0;
	-webkit-text-stroke: 1px black; /* Adds a black border around the text */
}
.banner-con .banner_content .banner-box {
    width: 874px;
    height: 113px;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: left;
    background-color: var(--e-global-color-light-grayish-yellow);
}
.banner-con .banner-box .form-group{
    margin-right: 12px;
}
.banner-con .banner-box .upper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.banner-con .banner-box .form-group i{
    font-size: 11px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-right: 10px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
}
.banner-con .banner-box label{
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--e-global-color-secondary);
}
.banner-con .banner-box input {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 6px 20px;
    width: 226px;
    height: 37px;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid transparent;
    border-radius: 5px;
    overflow: visible;
    outline: none;
}
.banner-con .banner-box input:focus {
    border: 1px solid var(--e-global-color-accent);
}
.banner-con .banner-box button{
    font-size: 20px;
    width: 41px;
    height: 73px;
    border: none;
    float: right;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    border-radius: 8px;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.banner-con .banner-box button:hover {
    background-color: var(--e-global-color-secondary);
}
.banner-con hr{
    position: absolute;
    bottom: 0;
    right: 105px;
    border: none;
    width: 1px;
    height: 73px;
    background-color: #e3e1da;
}

.banner-con .top-btn {
    display: inline-block;
    left: 0;
    right: 0;
    bottom: -236px;
    margin: 0 auto;
    position: absolute;
}
.banner-con .top-btn figure{
    transition: all 0.3s ease-in-out;
}
.banner-con .top-btn figure:hover {
    transform: translateY(-5px);
}

/* Explore */

.explore-con {
    padding: 114px 0 140px 400px;
    overflow: hidden;
}
.explore-con .explore_content h6 {
    margin-bottom: 8px;
    font-size: 24px;
    text-align: center;
    line-height: 1.5;
}

.explore-con .explore_content h2 {
    margin-bottom: 45px;
}
.explore-con .explore-box {
    position: relative;
    transition: all 0.3s ease-in-out;
}
.explore-con .explore-box .image{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
.explore-con .explore-box .image::before{
    content: "";
    position: absolute;
    opacity: 50%;
    width: 100%;
    height: 100%;
    bottom: 0;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/explore-fadeimage.png);
    transition: all 0.3s ease-in-out;
}
.explore-con .explore-box:hover .image::before{
    display: none;
}
.explore-con .explore-box:hover .image {
    opacity: 1;
    background-color: var(--e-global-color-black);
}
.explore-con .explore-box .image img{
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}
.explore-con .explore-box:hover .image img {
    opacity: 70%;
    transform: scale(1.1);
}
.explore-con .explore-box .rating{
    left: 20px;
    top: 18px;
    padding: 7px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: rgb(0 0 0 / 35%);
}
.explore-con .explore-box .rating i{
    font-size: 8px;
    margin-right: 4px;
    color: var(--e-global-color-star-yellow);
}
.explore-con .explore-box .rating span{
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
}
.explore-con .explore-box .content {
    position: absolute;
    bottom: 30px;
    left: 20px;
}
.explore-con .explore-box .content .place{
    margin-bottom: 6px;
}
.explore-con .explore-box .content i{
    font-size: 11px;
    margin-right: 2px;
    color: var(--e-global-color-white);
}
.explore-con .explore-box .content span{
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
}
.explore-con .owl-carousel .owl-nav{    
    display: block !important;
    margin-top: 0 !important;
    position: absolute;
    right: 405px;
    top: -114px;
}
.explore-con .owl-carousel .owl-prev,
.explore-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 57px;
    height: 57px;
    line-height: 57px !important;
    border-radius: 100% !important;
    position: relative;
    text-align: center;
    color: var(--e-global-color-secondary) !important;
    background-color: transparent !important;
    border: 1px solid var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.explore-con .owl-carousel .owl-prev{
    left: -8px;
}
.explore-con .owl-carousel .owl-next{
    right: -8px;
}
.explore-con .owl-carousel .owl-prev:hover,
.explore-con .owl-carousel .owl-next:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    border: 1px solid var(--e-global-color-accent) !important;
}

/* About */
.main-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 20px;
    background-color: #f7f3f2;
}
.grid-1 .grid-2 .grid-3 .grid-4{
    height: 350px;
}
.about-img-1 {
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}
.about-img-2 {
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}
.inner-title{
    color: #001d38;
}
.inner-para-1{
    font-size: 25px;
    line-height: 1.5;
    color: black;
    text-align: justify;
}
.inner-para-2{
    font-size: 25px;
    line-height: 1.5;
    padding-top: 60px;
    color: green;
    text-align: justify;
}
/* Responsive for tablets */
@media (max-width: 992px) {
    .main-container {
        grid-template-columns: 1fr; /* Switch to 1 column */
        text-align: center;
    }

    .inner-title {
        font-size: 24px;
    }

    /* Make images smaller */
    .about-img-1, .about-img-2 {
        max-width: 80%;
    }

    /* Adjust text */
    .inner-para-1, .inner-para-2 {
        font-size: 16px;
        max-width: 95%;
        text-align: center;
        padding-left: 20px;
    }
}

/* Responsive for mobile screens */
@media (max-width: 600px) {
    .main-container {
        gap: 15px;
    }

    /* Reduce heading size */
    .inner-title {
        font-size: 20px;
    }

    /* Reduce paragraph font size */
    .inner-para-1, .inner-para-2 {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        padding-top: 0px;
    }

    /* Make images smaller on small screens */
    .about-img-1, .about-img-2 {
        max-width: 90%;
        border-radius: 8px;
    }
}
.background-container-contact {
    background-image: url(../images/about/ab.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
}
    /* Medium screens (Tablets) */
@media (max-width: 1024px) {
    .background-container-contact {
        height: 350px;
        background-position: top center;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .background-container-contact {
        height: 327px;
        background-size: contain; /* Ensures full visibility of the image */
        background-position: center;
    }
}

/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .background-container-contact {
        height: 184px;
        background-size: cover; /* Adjust to keep image filling the container */
        background-position: center;
        margin-top: 10px;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .background-container-contact {
        height: 230px; /* Adjust height as needed */
        background-position: center center;
    }
}

/* Contact Us Title */
/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .contact-title {
        text-align: justify;
    }
}

/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .contact-title {
        text-align: justify;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .contact-title {
        text-align: justify;
    }
}

.background-container {
    background-image: url(../images/about/about-1.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
}
/* Medium screens (Tablets) */
@media (max-width: 1024px) {
    .background-container {
        height: 350px;
        background-position: top center;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .background-container {
        height: 327px;
        background-size: contain; /* Ensures full visibility of the image */
        background-position: center;
    }
}

/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .background-container {
        height: 184px;
        background-size: cover; /* Adjust to keep image filling the container */
        background-position: center;
        margin-top: 10px;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .background-container {
        height: 230px; /* Adjust height as needed */
        background-position: center center;
    }
}
.title-about {
  color: white;
  font-size: 70px;
  font-family: fantasy;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
  -webkit-text-stroke: 1px black;
}

.about-con {
    padding: 138px 0 145px;
    background-color: var(--e-global-color-light-grayish-orange);
}
.about-con:before {
    content: "";
    position: absolute;
    opacity: 12%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/about-5.jpg);
}
.about-con .about_wrapper .about-image {
    position: relative;
    top: 0;
    left: 20px;
}
.about-con .about_wrapper .about-image img{
    border-radius: 100%;
}
.about-con .about_wrapper .about-locationimage {
    position: absolute;
    bottom: 6px;
    right: 50px;
}
.about-con .about_wrapper .box{
    left: -60px;
    bottom: 290px;
    width: 258px;
    height: 73px;
    padding: 10px 15px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: var(--e-global-color-white);
    box-shadow: 2px 20px 29px 20px rgb(0 0 0 / 3%);
}
.about-con .about_wrapper .box .text{
    padding-left: 10px;
}
.about-con .about_wrapper .box .value{
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 0;
    color: var(--e-global-color-accent);
}
.about-con .about_wrapper .box .review{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.about-con .about_wrapper .box figure{
    margin: 0 -12px;
    display: inline-block;
}
.about-con .about_wrapper .box figure:first-child{
    margin-left: 0;
}
.about-con .about_wrapper .box figure:last-child{
    margin-right: 0;
}
.about-con .about_wrapper .box img{
    width: 48px;
    border-radius: 100%;
    border: 2px solid var(--e-global-color-white);
}
.about-con .about_content h6{
    margin-bottom: 10px;
}
.about-con .about_content h2{
    margin-bottom: 20px;
}
.about-con .about_content .text{
    margin-bottom: 50px;
}
.about-con .about_content li{
    width: 134px;
    height: 139px;
    padding: 28px 32px;
    margin: 0 8px;
    border-radius: 8px;
    display: inline-block;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.about-con .about_content li:hover{
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 15%);
}
.about-con .about_content li .value{
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    color: var(--e-global-color-accent);
}
.about-con .about_content li:first-child {
    margin-left: 0;
}
.about-con .about_content li:last-child {
    margin-right: 0;
}

/* Service */

.service-con {
    padding: 80px 0 25px;
}
.service-con .service_content h6{
    margin-bottom: 10px;
}
.service-con .service_content h2{
    margin-bottom: 20px;
}
.service-con .service_content .text{
    margin-bottom: 52px;
    padding: 0 40px;
    color: var(--e-global-color-text);
}
.service-con .service-box {
    padding: 40px 50px;
    margin-bottom: 30px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.service-con .service-box:hover {
    border-bottom: 2px solid var(--e-global-color-accent);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
}
.service-con .service-box .icon {
    min-height: 60px;
    margin-bottom: 30px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.service-con .service-box:hover .icon {
    transform: translateY(-5px);
}
.service-con .service-box h4 {
    margin-bottom: 14px;
}
.service-con .service-box p {
    margin-bottom: 24px;
}
.service-con .service-box .learn_more {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    text-align: center;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.service-con .service-box .learn_more i {
    font-size: 12px;
    margin-left: 10px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-accent);
}
.service-con .service-box .learn_more:hover {
    color: var(--e-global-color-text);
}
.service-con .service-box .learn_more:hover i {
    transform: translateX(4px);
    color: var(--e-global-color-text);
}

/* Join */

.join-con {
    padding: 138px 0 140px;
    background-color: var(--e-global-color-black);
}
.join-con:before {
    content: "";
    position: absolute;
    opacity: 50%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/join-backgroundimage1.jpg);
}
.join-con .join_content h6 {
    margin-bottom: 10px;
}
/* .join-con .join_content h2 {
    margin-bottom: 40px;
} */
.join-con .join_content .all_button {
    padding: 20px 39px;
}

/* Place */

.place-con {
    padding: 54px 0 52px;
}
.place-con .place_content h6 {
    margin-bottom: 10px;
}
.place-con .place_content h2 {
    margin-bottom: 45px;
}
.place-con .place-box {
    padding: 15px 15px 20px 15px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%) inset;
    border: 1px solid var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.place-con .place-box:hover {
    border: 1px solid var(--e-global-color-accent);
}
.place-con .place-box .image {
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background-color: var(--e-global-color-black);
}
.place-con .place-box .image img{
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
.place-con .place-box:hover .image img {
    opacity: 80%;
    transform: scale(1.1);
}
.place-con .place-box .lower_content {
    padding: 22px 22px 0;
}
.place-con .place-box .content {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.place-con .place-box .calendar {
    display: flex;
    align-items: center;
    padding-right: 14px;
}
.place-con .place-box .people {
    display: flex;
    align-items: center;
    padding-left: 14px;
    border-left: 1px solid #e2e2e2;
}
.place-con .place-box .content i {
    font-size: 12px;
    margin-right: 10px;
    color: var(--e-global-color-accent);
}
.place-con .place-box .content span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.place-con .place-box h4 {
    margin-bottom: 18px;
    display: inline-block;
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.place-con .place-box h4:hover {
    color: var(--e-global-color-accent);
}
.place-con .place-box .value {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e2e2e2;
}
.place-con .place-box .value span {
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    color: var(--e-global-color-accent);
}
.place-con .place-box .book_now {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    text-align: center;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.place-con .place-box .book_now i {
    font-size: 12px;
    margin-left: 10px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-secondary);
}
.place-con .place-box .book_now:hover {
    color: var(--e-global-color-accent);
}
.place-con .place-box .book_now:hover i {
    transform: translateX(4px);
    color: var(--e-global-color-accent);
}
.place-con .owl-carousel .owl-nav{    
    display: block !important;
    margin-top: 52px !important;
    position: relative;
}
.place-con .owl-carousel .owl-prev,
.place-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 57px;
    height: 57px;
    line-height: 57px !important;
    border-radius: 100% !important;
    position: relative;
    text-align: center;
    color: var(--e-global-color-secondary) !important;
    background-color: transparent !important;
    border: 1px solid var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.place-con .owl-carousel .owl-prev{
    left: -4px;
}
.place-con .owl-carousel .owl-next{
    right: -4px;
}
.place-con .owl-carousel .owl-prev:hover,
.place-con .owl-carousel .owl-next:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    border: 1px solid var(--e-global-color-accent) !important;
}

/* Testimonial */

.testimonial-con {
    padding: 158px 0 195px;
    background-color: var(--e-global-color-light-grayish-orange);
}
.testimonial-con:before {
    content: "";
    position: absolute;
    opacity: 50%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/testimonial-backgroundimage.jpg);
}
.testimonial-con .testimonial_wrapper {
    top: 35px;
    height: 380px;
    width: 380px;
    border-radius: 100%;
    background: #f5f0e5;
	background: rgba(245, 240, 229, 0)
}
.testimonial-con .testimonial_wrapper .image{
    position: absolute;
}
.testimonial-con .testimonial_wrapper .image img {
    border-radius: 100%;
}
.testimonial-con .testimonial_wrapper .testimonial-circle{
    height: 155px;
    width: 155px;
    line-height: 155px;
    border-radius: 100%;
    text-align: center;
    background: var(--e-global-color-white);
    position: relative;
    top: 112px;
    left: 0;
    right: 0;
    margin: auto;
}
.testimonial-con .testimonial_wrapper .testimonial-image1{
    right: -4px;
    top: -54px;
}
.testimonial-con .testimonial_wrapper .testimonial-image2{
    left: 0;
    top: 56px;
}
.testimonial-con .testimonial_wrapper .testimonial-image3{
    left: 62px;
    bottom: -30px;
}
.testimonial-con .testimonial_wrapper .testimonial-image4{
    right: -6px;
    bottom: 80px;
}
.testimonial-con .testimonial_contentwrapper {
    padding: 0 60px 0 40px;
}
.testimonial-con .testimonial_content h2 {
    margin-bottom: 40px;
}
.testimonial-con .testimonial-box p {
    line-height: 39px;
    margin-bottom: 39px;
}
.testimonial-con .testimonial-box .content {
    display: flex;
    align-items: center;
}
.testimonial-con .testimonial-box .testimonial-quote {
    height: 64px;
    width: 64px;
    line-height: 64px;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-right: 16px;
    margin-bottom: 0;
    border-radius: 100px;
    background-color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.testimonial-con .testimonial-box .name {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: var(--e-global-color-secondary);
    margin-bottom: 6px;
    display: block;
}
.testimonial-con .testimonial-box .review {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.testimonial-con .pagination-outer{
    position: relative;
    display: inline-block;
    top: 28px;
    right: -12px;
}
#carouselExampleControls .carousel-control-prev,
#carouselExampleControls .carousel-control-next {
    font-size: 20px;
    line-height: 20px;
    top: 0;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}
#carouselExampleControls .carousel-control-prev{
    left: 0;
}
#carouselExampleControls .carousel-control-next{
    right: -38px;
}
#carouselExampleControls .carousel-control-prev:hover,
#carouselExampleControls .carousel-control-next:hover {
    color: var(--e-global-color-accent);
}

/* Partner */

.partner-con {
    padding: 135px 0 130px;
}
.partner-con .partner_content h6 {
    margin-bottom: 10px;
}
.partner-con .partner_content h2 {
    margin-bottom: 35px;
}
.partner-con ul {
    width: 100%;
    float: left;
}
.partner-con ul li {
    border-right: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    width: 25%;
    height: 156px;
    line-height: 156px;
    transition: 0.3s all ease-in-out;
    float: left;
    text-align: center;
}
.partner-con ul li:last-child {
    display: inline-block;
    border-right: none;
    border-bottom: 1px solid #e7e7e7;
}
.partner-con .second li {
    display: inline-block;
    border-right: 1px solid #e7e7e7;
    border-bottom: none;
}
.partner-con .second li:last-child {
    display: inline-block;
    border-bottom: none;
}
.partner-con ul li figure img {
    transition: 0.3s all ease-in-out;
    filter: grayscale(100%);
}
.partner-con ul li:hover figure img {
    filter: none;
    transform: scale(1.1);
}

/* Footer */

.footer-con .footer_upperportion{
    background: var(--e-global-color-very-red);
}
.footer-con .upper_portion {
    display: flex;
    align-items: center;
    padding: 60px 0 60px 80px;
    padding-left: 190px;
}
.footer-con .upper_portion .footer-logo img{
    width: 145px;
}
.footer-con .upper_portion p {
    font-weight: 700;
    word-spacing: 3.4px;
    text-transform: capitalize;
    color: var(--e-global-color-white);
    font-family: "Playfair Display", serif;
}
.footer-con .upper_portion form{
    float: left;
    width: 45.5%;
}
.footer-con .upper_portion .form-group{
    padding-left: 42px;
}
.footer-con .upper_portion input {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding: 18px 26px;
    width: 100%;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: visible;
    outline: none;
}
.footer-con .upper_portion input:focus {
    border: 1px solid var(--e-global-color-accent);
}
.footer-con .upper_portion button {
    font-size: 20px;
    width: 55px;
    height: 47px;
    top: 4px;
    right: 4px;
    border: none;
    float: right;
    position: absolute;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    border-radius: 6px;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.footer-con .upper_portion button:hover {
    background-color: var(--e-global-color-secondary);
}
.footer-con .footer_lowerportion{
    background: var(--e-global-color-very-dark-red);
}
.footer-con .middle_portion{
    padding: 86px 64px 82px 80px;
}
.footer-con .middle_portion .logo-content h4{
    margin-bottom: 14px;
}
.footer-con .middle_portion h5{
    margin-bottom: 20px;
    color: var(--e-global-color-white);
}
.footer-con .middle_portion p{
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
    padding-right: 40px;
    color: var(--e-global-color-light-grayish-red);
}
.footer-con .middle_portion .social-icons li{
    margin: 0 4px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .social-icons a{
    margin-left: 0 !important;
}
.footer-con .middle_portion .social-icons i{
    font-size: 14px;
    height: 44px;
    width: 44px;
    line-height: 42px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .social-icons i:hover {
    transform: translateY(-5px);
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.footer-con .middle_portion .social-icons li:first-child{
    margin-left: 0;
}
.footer-con .middle_portion .social-icons li:last-child{
    margin-right: 0;
}
.footer-con .middle_portion .links{
    padding-left: 6px;
}
.footer-con .middle_portion .use-link{
    padding-left: 26px;
}
.footer-con .middle_portion li{
    margin-bottom: 6px;
}
.footer-con .middle_portion li:last-child{
    margin-bottom: 0 !important;
}
.footer-con .middle_portion li a{
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-left: 13px;
    text-decoration: none;
    color: var(--e-global-color-light-grayish-red);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion li p{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 0;
    color: var(--e-global-color-light-grayish-red);
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion li i{
    font-size: 10px;
    line-height: 10px;
    color: var(--e-global-color-white);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion li:hover p,
.footer-con .middle_portion li:hover a,
.footer-con .middle_portion li:hover i{
    color: var(--e-global-color-accent);
}
.footer-con .middle_portion .icon .text{
    position: relative;
    margin-bottom: 11px;
    padding-left: 30px;
    display: inline-block;
    text-align: justify;
}
.footer-con .middle_portion .icon i{
    position: absolute;
    font-size: 14px;
    line-height: 14px;
    left: 0;
    top: 6px;
}
.footer-con .middle_portion .icon a{
    margin-left: 0 !important;
}
.footer-con .copyright p{
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 25px 0;
    text-align: center;
    color: var(--e-global-color-light-grayish-red);
    border-top: 1px solid rgb(255 255 255 / 15%);
}

/* Sub banner */

.sub_banner .sub_banner_con {
    padding: 142px 0 154px;
    text-align: center;
    background: var(--e-global-color-black);
}
.sub_banner .sub_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 55%;
    position: absolute;
    background: url(../images/subbanner-backgroundimage.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.sub_banner .sub_banner_con h1 {
    font-size: 100px;
    line-height: 60px;
    margin-bottom: 30px;
}
.sub_banner .sub_banner_con p {
    margin-bottom: 40px;
}
.sub_banner .sub_banner_con .box {
    padding: 10px 24px 12px;
    text-align: center;
    border-radius: 6px;
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 40%);
    transition: all 0.3s ease-in-out;
}
.sub_banner .sub_banner_con .box span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.sub_banner .sub_banner_con .box a span:hover {
    color: var(--e-global-color-accent);
}
.sub_banner .sub_banner_con .box .arrow {
    font-size: 10px;
    margin: 0 10px;
    display: inline-block;
    color: var(--e-global-color-white);
}

/* Contact Page */

/* Contact info */

.contactinfo-con {
    padding: 165px 0;
}
.contactinfo-con .contactinfo_content h6{
    margin-bottom: 10px;
}
.contactinfo-con .contactinfo_content h2{
    margin-bottom: 45px;
}
.contactinfo-con .contact-box {
    padding: 46px 50px;
    text-align: center;
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.contactinfo-con .contact-box:hover {
    border: 1px solid var(--e-global-color-accent);
}
.contactinfo-con .contact-box .icon {
    height: 60px;
    margin-bottom: 26px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.contactinfo-con .contact-box:hover .icon {
    transform: translateY(-5px);
}
.contactinfo-con .contact-box h4 {
    margin-bottom: 14px;
}
.contactinfo-con .contact-box p,
.contactinfo-con .contact-box a {
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.contactinfo-con .contact-box a:hover {
    color: var(--e-global-color-accent);
}

/* Contact Form */

.contactform-con {
    background-color: var(--e-global-color-accent);
}
.contactform-con::before {
    content: "";
    width: 49%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/quran.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.contactform-con .contact-bottomimage {
    position: absolute;
    right: 0;
    bottom: 0;
}
.contactform-con .contact-bottomimage img{
    opacity: 10%;
}
.contactform-con .contact_wrapper {
    display: none;
}
.contactform-con .contact_content{
    padding: 135px 0 135px 40px;
    position: relative;
    z-index: 1;
}
.contactform-con .contact_content h6{
    margin-bottom: 10px;
}
.contactform-con .contact_content h2{
    margin-bottom: 38px;
}
.contactform-con .contact_content .form-group{
    margin-bottom: 22px;
}
.contactform-con .contact_content .input1 {
    float: left;
    margin-right: 22px;
}
.contactform-con .contact_content input,
.contactform-con .contact_content textarea {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 58px;
    width: 236px;
    padding: 10px 10px 10px 26px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    font-family: "Rajdhani", sans-serif;
    border-radius: 8px;
    overflow: visible;
    outline: none;
}
.contactform-con .contact_content textarea {
    height: 118px;
    width: 100% !important;
    padding: 16px 26px;
    resize: none;
    outline: none;
    overflow: auto;
}
.contactform-con .contact_content .message {
    margin-bottom: 22px;
}
.contactform-con .contact_content input:focus,
.contactform-con .contact_content textarea:focus {
    box-shadow: 2px 3px 42px rgb(55 225 197 / 16%);
    border: 1px solid var(--e-global-color-secondary);
}
.contactform-con .contact_content .submit_now {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    padding: 20px 35px;
    text-align: center;
    display: inline-block;
    position: relative;
    border-radius: 8px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
    font-family: "DM Sans", sans-serif;
    transition: all 0.8s ease-in-out;
    text-align: center;
    outline: none;
    border-style: none;
}
.contactform-con .contact_content .submit_now:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}
.contactform-con .contact_content .submit_now i {
    font-size: 12px;
    margin-left: 22px;
    color: var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.contactform-con .contact_content .submit_now:hover i {
    transform: translateX(4px);
    color: var(--e-global-color-secondary);
}
.contactform-con .contact_content input::placeholder,
.contactform-con .contact_content textarea::placeholder{
    color: var(--e-global-color-text);
}
.contactform-con .contact_content form span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-top: 5px;
    position: absolute;
    display: block;
    color: var(--e-global-color-black);
}

/* Map */

.map-con {
    padding: 140px 0;
}
.map-con iframe {
    width: 100%;
    height: 547px;
    border-radius: 20px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.map-con iframe:hover {
    filter: none;
}

/* Team Page */

/* Team */

.team-con {
    padding: 135px 0 80px;
}
.team-con .team_content h6{
    margin-bottom: 10px;
}
.team-con .team_content h2{
    margin-bottom: 50px;
}
.team-con .team-box {
    margin-bottom: 65px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.team-con .team-box figure { 
    width: 314px;
    height: 314px;
    margin: 0 auto 28px;
    border-radius: 100%;
    overflow: hidden;
}
.team-con .team-box figure img {
    transition: all 0.3s ease-in-out;
}
.team-con .team-box:hover figure img {
    transform: scale(1.1);
}
.team-con .team-box h4 {
    font-size: 22px;
    margin-bottom: 10px;
}
.team-con .team-box span {
    display: block;
    margin-bottom: 16px;
}
.team-con .team-box li {
    margin: 0 3px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.team-con .team-box i {
    font-size: 16px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.team-con .team-box li:hover {
    transform: translateY(-5px);
}
.team-con .team-box li:first-child {
    margin-left: 0;
}
.team-con .team-box li:last-child {
    margin-right: 0;
}
.team-con .team-box:hover i {
    background-color: var(--e-global-color-secondary);
}

/* Destination Page */

/* Place */

.destinationpage-place {
    padding-bottom: 110px;
}
.destinationpage-place .place_content h2 {
    margin-bottom: 35px;
}
.destinationpage-place .place-box {
    margin-bottom: 30px;
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
}
.destinationpage-place .nav-tabs {
    width: 54%;
    margin: 0 auto 52px;
    justify-content: center;
    border-bottom: 2px solid #ebebeb;
}
.destinationpage-place .tabs-box .nav-tabs li a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    display: inline-block;
    color: var(--e-global-color-secondary);
    text-decoration: none;
    position: relative;
    top: 2px;
    padding: 22px 35px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}
.destinationpage-place .tabs-box .nav-tabs li a:hover{
    color: var(--e-global-color-accent);
}
.destinationpage-place .tabs-box .nav-tabs > li > a.active {
    color: var(--e-global-color-accent);
    border-bottom: 2px solid var(--e-global-color-accent);
}

/* Faq Page */

/* Faq */

.faq-con {
    padding: 136px 0 140px;
}
.faq-con .faq_content h6 {
    margin-bottom: 10px;
}
.faq-con .faq_content h2 {
    margin-bottom: 45px;
}
.faq-con h5 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 0;
}
.faq-con .accordion-card {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 5%);
}
.faq-con .accordion-card:last-child {
    margin-bottom: 0;
}
.faq-con .accordion-card .btn-link h5 {
    color: var(--e-global-color-accent);
}
.faq-con .accordion-card .collapsed h5 {
    color: var(--e-global-color-secondary);
}
.faq-con .accordion-card:has(.btn-link) {
    border: 1px solid var(--e-global-color-accent);
}
.faq-con .accordion-card:has(.collapsed) {
    border: 1px solid var(--e-global-color-white);
}
.faq-con .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}
.faq-con .accordian-inner .card-header a {
    padding: 22px 26px;
}
.faq-con .accordian-inner .card-body {
    padding: 0 26px 20px;
}
.faq-con .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.faq-con .accordian-inner .accordion-card i {
    position: absolute;
    right: 20px;
    margin: -6px 0;
}
.faq-con .accordian-inner .accordion-card .btn {
    text-decoration: none;
    text-align: left;
    display: block;
    border-radius: 10px;
}
.faq-con .accordion-card a.btn.btn-link {
    position: relative;
}
.faq-con .accordion-card .btn-link:before {
    content: "\f062";
    font-size: 15px;
    top: 20px;
    right: 22px;
    position: absolute;
    font-family: 'FontAwesome';
    color: var(--e-global-color-accent);
}
.faq-con .accordion-card .collapsed:before {
    content: "\f061";
    color: var(--e-global-color-secondary);
}

/* About Page */

/* About */

.aboutpage-con {
    padding: 138px 0 145px;
}
.aboutpage-con .about_wrapper .about-image {
    position: relative;
    top: 0;
    left: 0;
}
.aboutpage-con .about_wrapper .about-image img{
    border-radius: 100%;
}
.aboutpage-con .about_wrapper .about-locationimage {
    position: absolute;
    bottom: 6px;
    right: 70px;
}
.aboutpage-con .about_content h6{
    margin-bottom: 10px;
}
.aboutpage-con .about_content h2{
    margin-bottom: 20px;
}
.aboutpage-con .about_content .text{
    margin-bottom: 30px;
}
.aboutpage-con .about_content ul{
    margin-bottom: 30px;
    display: inline-block;
}
.aboutpage-con .about_content ul li {
    position: relative;
    margin-bottom: 8px;
}
.aboutpage-con .about_content ul li i {
    font-size: 8px;
    height: 16px;
    width: 16px;
    line-height: 13px;
    top: 4px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-accent);
    border: 2px solid var(--e-global-color-accent);
}
.aboutpage-con .about_content ul li p {
    font-weight: 500;
    padding-left: 32px;
    color: var(--e-global-color-secondary);
}
.aboutpage-con .about_content .all_button {
    padding: 20px 38px;
}

/* Activity */

.activity-con {
    background-color: var(--e-global-color-accent);
}
.activity-con::before {
    content: "";
    width: 49%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/about/about-3.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.activity-con .activity-bottomimage {
    position: absolute;
    left: 0;
    bottom: 0;
}
.activity-con .activity-bottomimage img{
    opacity: 10%;
}
.activity-con .activity_wrapper {
    display: none;
}
.activity-con .activity_content {
    position: relative;
    z-index: 1;
    padding: 40px 0px 0px 40px;
}
.activity-con .activity_content h6{
    margin-bottom: 10px;
}
.activity-con .activity_content h2{
    margin-bottom: 20px;
}
.activity-con .activity_content .text{
    margin-bottom: 50px;
}
.activity-con .activity_content li{
    width: 134px;
    height: 139px;
    padding: 28px 32px;
    margin: 0 8px;
    border-radius: 8px;
    display: inline-block;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-secondary);
}
.activity-con .activity_content li:hover{
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 15%);
}
.activity-con .activity_content li .value{
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    color: var(--e-global-color-accent);
}
.activity-con .activity_content li:first-child {
    margin-left: 0;
}
.activity-con .activity_content li:last-child {
    margin-right: 0;
}

/* Explore */

.aboutexplore-con {
    padding: 135px 0 140px;
}
.aboutexplore-con .explore_content h6 {
    margin-bottom: 10px;
}
.aboutexplore-con .explore_content h2 {
    margin-bottom: 45px;
}
.aboutexplore-con .explore-box {
    position: relative;
    transition: all 0.3s ease-in-out;
}
.aboutexplore-con .explore-box .image{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
.aboutexplore-con .explore-box .image::before{
    content: "";
    position: absolute;
    opacity: 50%;
    width: 100%;
    height: 100%;
    bottom: 0;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/explore-fadeimage.png);
    transition: all 0.3s ease-in-out;
}
.aboutexplore-con .explore-box:hover .image::before{
    display: none;
}
.aboutexplore-con .explore-box:hover .image {
    opacity: 1;
    background-color: var(--e-global-color-black);
}
.aboutexplore-con .explore-box .image img{
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}
.aboutexplore-con .explore-box:hover .image img {
    opacity: 70%;
    transform: scale(1.1);
}
.aboutexplore-con .explore-box .rating{
    left: 20px;
    top: 18px;
    padding: 7px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: rgb(0 0 0 / 35%);
}
.aboutexplore-con .explore-box .rating i{
    font-size: 8px;
    margin-right: 4px;
    color: var(--e-global-color-star-yellow);
}
.aboutexplore-con .explore-box .rating span{
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
}
.aboutexplore-con .explore-box .content {
    position: absolute;
    bottom: 30px;
    left: 20px;
}
.aboutexplore-con .explore-box .content .place{
    margin-bottom: 6px;
}
.aboutexplore-con .explore-box .content i{
    font-size: 11px;
    margin-right: 2px;
    color: var(--e-global-color-white);
}
.aboutexplore-con .explore-box .content span{
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
}
.aboutexplore-con .owl-carousel .owl-nav{    
    display: block !important;
    margin-top: 54px !important;
    position: relative;
    text-align: center;
}
.aboutexplore-con .owl-carousel .owl-prev,
.aboutexplore-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 57px;
    height: 57px;
    line-height: 57px !important;
    border-radius: 100% !important;
    position: relative;
    text-align: center;
    color: var(--e-global-color-secondary) !important;
    background-color: transparent !important;
    border: 1px solid var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.aboutexplore-con .owl-carousel .owl-prev{
    left: -8px;
}
.aboutexplore-con .owl-carousel .owl-next{
    right: -8px;
}
.aboutexplore-con .owl-carousel .owl-prev:hover,
.aboutexplore-con .owl-carousel .owl-next:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    border: 1px solid var(--e-global-color-accent) !important;
}

/* Home 2 */

/* Banner */

.travel_banner_outer {
    background-color: var(--e-global-color-light-grayish-orange);
}
.banner2-con {
    padding: 150px 0 165px;
    background-color: var(--e-global-color-light-grayish-orange);
}
.banner2-con:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 12%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner2-backgroundimage.jpg);
}
.banner2-con .banner_content h3{
    padding-left: 54px;
    margin-bottom: 14px;
    letter-spacing: 2.0px;
    word-spacing: 2.0px;
    position: relative;
}
.banner2-con .banner_content h3::before {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    width: 42px;
    height: 2px;
    position: absolute;
    background-color: var(--e-global-color-accent);
}
.banner2-con .banner_content h1{
    font-size: 90px;
    line-height: 96px;
    margin-bottom: 40px;
}
.banner2-con .banner_content h1 span{
    color: var(--e-global-color-accent);
}
.banner2-con .banner_content .all_button {
    padding:  21px 37px;
}
.banner2-con .banner_wrapper .image{
    overflow: hidden;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.banner2-con .banner_wrapper .banner-image1{
    position: relative;
    left: 20px;
    top: 0;
}
.banner2-con .banner_wrapper .banner-image2{
    position: relative;
    left: 20px;
    bottom: -30px;
}
.banner2-con .banner_wrapper .banner-image3{
    position: absolute;
    right: -152px;
    top: 95px;
}
.banner2-con .banner_wrapper .banner-image3::before{
    content: "";
    right: -68px;
    bottom: -68px;
    width: 238px;
    height: 238px;
    border-radius: 100%;
    position: absolute;
    z-index: -1;
    background-color: var(--e-global-color-white);
}
.banner2-con .banner_wrapper .image img{
    border-radius: 35px;
    transition: all 0.3s ease-in-out;
}
.banner2-con .banner_wrapper .image:hover img{
    transform: scale(1.1);
}
.banner2-con .banner_wrapper .box{
    left: -140px;
    bottom: 88px;
    width: 258px;
    height: 73px;
    padding: 10px 15px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    position: absolute;
    background-color: var(--e-global-color-white);
    box-shadow: 2px 20px 29px 20px rgb(0 0 0 / 3%);
}
.banner2-con .banner_wrapper .box .text{
    padding-left: 10px;
}
.banner2-con .banner_wrapper .box .value{
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 0;
    color: var(--e-global-color-accent);
}
.banner2-con .banner_wrapper .box .review{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.banner2-con .banner_wrapper .box figure{
    margin: 0 -12px;
    display: inline-block;
}
.banner2-con .banner_wrapper .box figure:first-child{
    margin-left: 0;
}
.banner2-con .banner_wrapper .box figure:last-child{
    margin-right: 0;
}
.banner2-con .banner_wrapper .box img{
    width: 48px;
    border-radius: 100%;
    border: 2px solid var(--e-global-color-white);
}

/* Benefit */

.benefit-con {
    padding: 135px 0 140px;
}
.benefit-con .benefit_content h6{
    margin-bottom: 10px;
}
.benefit-con .benefit_content h2{
    margin-bottom: 45px;
}
.benefit-con .benefit-box {
    padding: 40px 50px 45px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.benefit-con .benefit-box .icon {
    min-height: 60px;
    margin-bottom: 28px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.benefit-con .benefit-box:hover .icon {
    transform: translateY(-5px);
}
.benefit-con .benefit-box h4 {
    margin-bottom: 14px;
}

/* About */

.about2-con {
    background-color: var(--e-global-color-accent);
}
.about2-con::before {
    content: "";
    width: 49%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/about2-leftbackground.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.about2-con .about-bottomimage {
    position: absolute;
    right: 0;
    bottom: 0;
}
.about2-con .about-bottomimage img{
    opacity: 10%;
}
.about2-con .about_wrapper .about-leftbackground{
    display: none;
}
.about2-con .about_wrapper .about-locationimage{
    position: absolute;
    right: -60px;
    top: 290px;
}
.about2-con .about_content {
    position: relative;
    z-index: 1;
    padding: 135px 0 135px 78px;
}
.about2-con .about_content h6{
    margin-bottom: 10px;
}
.about2-con .about_content h2{
    margin: 0 -15px 20px 0;
}
.about2-con .about_content .text{
    margin-bottom: 30px;
}
.about2-con .about_content ul{
    margin-bottom: 40px;
    display: inline-block;
}
.about2-con .about_content ul li {
    position: relative;
    margin-bottom: 8px;
}
.about2-con .about_content ul li i {
    font-size: 8px;
    height: 16px;
    width: 16px;
    line-height: 13px;
    top: 4px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    border: 2px solid var(--e-global-color-white);
}
.about2-con .about_content ul li p {
    font-weight: 500;
    padding-left: 32px;
    color: var(--e-global-color-white);
}
.about2-con .about_content .all_button {
    padding: 20px 38px;
    background-color: var(--e-global-color-secondary);
    transition: all 0.8s ease-in-out;
}
.about2-con .about_content .all_button i {
    transition: all 0.8s ease-in-out;
}
.about2-con .about_content .all_button:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}
.about2-con .about_content .all_button:hover i {
    color: var(--e-global-color-secondary);
}

/* Making */

.making-con {
    background-color: var(--e-global-color-light-grayish-orange);
}
.making-con:before {
    content: "";
    position: absolute;
    opacity: 12%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/making-backgroundimage.jpg);
}
.making-con .making_content {
    padding: 135px 0 115px;
}
.making-con .making_content h6 {
    margin-bottom: 10px;
}
.making-con .making_content h2 {
    margin-bottom: 40px;
}
.making-con .making-box {
    padding: 40px 30px 35px;
    margin-bottom: 25px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.making-con .box1 {
    padding: 40px 25px 35px;
}
.making-con .making-box .icon {
    height: 60px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.making-con .making-box:hover .icon {
    transform: translateY(-5px);
}
.making-con .making-box h4 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 14px;
}
.making-con .making-image {
    position: absolute;
    bottom: 0;
    right: -300px;
}
.making-con .making-image:before {
    content: "";
    position: absolute;
    width: 670px;
    height: 670px;
    top: 80px;
    right: 80px;
    border-radius: 100%;
    z-index: -1;
    background-color: var(--e-global-color-white);
}

/* Join */

.join2-con:before {
    opacity: 60%;
    background-image: url(../images/join2-backgroundimage.jpg);
}

/* Testimonial */

.testimonial2-con {
    padding: 135px 0 140px;
}
.testimonial2-con .testimonial_content h6 {
    margin-bottom: 10px;
}
.testimonial2-con .testimonial_content h2 {
    margin-bottom: 45px;
}
.testimonial2-con .testimonial-box {
    padding: 50px 30px 45px 35px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%) inset;
}
.testimonial2-con .testimonial-box .testimonial-quoteimage {
    margin-bottom: 20px;
}
.testimonial2-con .testimonial-box p {
    margin-bottom: 24px;
}
.testimonial2-con .review-content {
    padding-left: 16px;
    display: flex;
}
.testimonial2-con .review-content .testimonial-personimage {
    position: relative;
    top: 2px;
    left: -15px;
}
.testimonial2-con .review-content .testimonial-personimage img {
    width: 54px !important;
    border-radius: 100px;
}
.testimonial2-con .testimonial-box ul {
    margin-bottom: 6px;
}
.testimonial2-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial2-con .testimonial-box ul li i {
    font-size: 12px;
    line-height: 12px;
    color: var(--e-global-color-light-yellow);
}
.testimonial2-con .review-content .name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    font-family: "Playfair Display", serif;
    color: var(--e-global-color-secondary);
}
.testimonial2-con .review-content .review {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.testimonial2-con .owl-carousel .owl-item img {
    width: auto !important;
}
.testimonial2-con .owl-carousel .owl-nav{    
    display: block !important;
    margin-top: 52px !important;
    position: relative;
    text-align: center;
}
.testimonial2-con .owl-carousel .owl-prev,
.testimonial2-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 57px;
    height: 57px;
    line-height: 57px !important;
    border-radius: 100% !important;
    position: relative;
    text-align: center;
    color: var(--e-global-color-secondary) !important;
    background-color: transparent !important;
    border: 1px solid var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.testimonial2-con .owl-carousel .owl-prev{
    left: -4px;
}
.testimonial2-con .owl-carousel .owl-next{
    right: -4px;
}
.testimonial2-con .owl-carousel .owl-prev:hover,
.testimonial2-con .owl-carousel .owl-next:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    border: 1px solid var(--e-global-color-accent) !important;
}

/* Home 3 */

/* Banner */

.banner3-con {
    padding: 188px 0 220px;
    background-color: var(--e-global-color-black);
}
.banner3-con:before {
    content: "";
    position: absolute;
    opacity: 75%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner3-backgroundimage.jpg);
}
.banner3-con .top-btn{
    position: absolute;
    z-index: 1;
    top: 156px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.3s ease-in-out;
}
.banner3-con .top-btn:hover{
    transform: translateY(-5px);
}
.banner3-con ul {
    position: absolute;
    left: -280px;
    top: 128px;
    z-index: 2;
}
.banner3-con ul li {
    margin: 15px 0;
    transition: all 0.3s ease-in-out;
}
.banner3-con ul li:first-child {
    margin-top: 0;
}
.banner3-con ul li:last-child {
    margin-bottom: 0;
}
.banner3-con ul li i {
    font-size: 16px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid rgb(255 255 255 / 50%);
    transition: all 0.3s ease-in-out;
}
.banner3-con ul li a:hover i {
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner3-con .banner_content {
    position: relative;
    z-index: 1;
}
.banner3-con .banner_content h3{
    letter-spacing: 2.0px;
    margin-bottom: 18px;
}
.banner3-con .banner_content h3 span{
    top: -4px;
    font-size: 28px;
    padding: 0 20px;
    position: relative;
}
.banner3-con .banner_content h1{
    margin-bottom: 26px;
}
.banner3-con .banner_content p{
    padding: 0 95px;
    margin-bottom: 36px;
}
.banner3-con .banner_content .all_button {
    padding:  21px 37px;
}
.banner3-con .banner_content .all_button:hover,
.banner3-con .banner_content .all_button:hover i {
    color: var(--e-global-color-secondary);
}
.banner3-con .banner_content .all_button:hover {
    background-color: var(--e-global-color-white);
}
.banner3-con .banner_content ul{
    display: none;
}

/* About */

.about3-con {
    padding: 50px 0 50px
}
.about3-con .about-bottomimage {
    position: absolute;
    right: 0;
    bottom: 0;
}
.about3-con .about-bottomimage img{
    opacity: 10%;
}
.about3-con .about_wrapper .about-image1{
    position: relative;
    left: 0;
    top: 0;
}
.about3-con .about_wrapper .about-image1::before{
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    left: -62px;
    bottom: -62px;
    border-radius: 100%;
    background-color: var(--e-global-color-accent);
    z-index: -1;
}
.about3-con .about_wrapper .about-image2{
    position: absolute;
    right: -56px;
    bottom: -102px;
}
.about3-con .about_wrapper .about-image2 img{
    border: 8px solid var(--e-global-color-white);
}
.about3-con .about_wrapper .image img{
    border-radius: 20px;
}
.about3-con .about_wrapper .video-icon {
    position: absolute;
    width: 101px;
    height: 101px;
    line-height: 96px;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 100%;
    text-align: center;
    background-color: rgb(0 0 0 / 45%);
    border: 2px solid rgb(255 255 255 / 50%);
}
.about3-con .about_wrapper .video-icon img {
    border-radius: 0 !important;
    border: none !important;
    width: auto !important;
}
.about3-con .about_content {
    z-index: 1;
    position: relative;
    padding: 0px 0 0 60px;
}
.about3-con .about_content h6{
    margin-bottom: 10px;
}
.about3-con .about_content h2{
    margin-bottom: 20px;
}
.about3-con .about_content .text{
    margin-bottom: 30px;
}
.about3-con .about_content .propertise {
    margin-bottom: 35px;
}
.about3-con .about_content ul{
    display: inline-block;
}
.about3-con .about_content .list1{
    padding-right: 22px;
}
.about3-con .about_content ul li {
    position: relative;
    margin-bottom: 8px;
}
.about3-con .about_content ul li i {
    font-size: 8px;
    height: 16px;
    width: 16px;
    line-height: 13px;
    top: 4px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-accent);
    border: 2px solid var(--e-global-color-accent);
}
.about3-con .about_content ul li p {
    font-weight: 500;
    padding-left: 30px;
    color: var(--e-global-color-secondary);
}
.about3-con .about_content .all_button {
    padding: 20px 38px;
}

/* Service */

.service3-con {
    background-color: var(--e-global-color-light-grayish-orange);
}
.service3-con:before {
    content: "";
    position: absolute;
    opacity: 12%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-image: url(../images/service3-backgroundimage.jpg); */
}

/* Explore */

.explore3-con .container {
    max-width: 1710px;
    margin: 0 auto;
}

/* Activity */

.activity3-con::before {
    background-image: url(../images/activity3-rightbackground.jpg);
}

/* Testimonial */

.testimonial3-con {
    padding: 135px 0 140px;
    background-color: var(--e-global-color-light-grayish-orange);
}
.testimonial3-con:before {
    content: "";
    position: absolute;
    opacity: 12%;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/testimonial-backgroundimage.jpg);
}
.testimonial3-con .testimonial_content h6 {
    margin-bottom: 10px;
}
.testimonial3-con .testimonial_content h2 {
    margin-bottom: 45px;
}
.testimonial3-con .testimonial-box {
    padding: 44px 50px 44px 38px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    border-bottom: 2px solid var(--e-global-color-accent);
}
.testimonial3-con .testimonial-box .testimonial-personimage {
    width: 19%;
    float: left;
}
.testimonial3-con .testimonial-box .testimonial-personimage img {
    border-radius: 100%;
}
.testimonial3-con .testimonial-box .content {
    width: 81%;
    padding-left: 25px;
    display: inline-block;
}
.testimonial3-con .testimonial-box p {
    margin-bottom: 10px;
}
.testimonial3-con .testimonial-box ul {
    margin-bottom: 10px;
}
.testimonial3-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial3-con .testimonial-box ul li i {
    font-size: 14px;
    line-height: 14px;
    color: var(--e-global-color-light-yellow);
}
.testimonial3-con .testimonial-box .name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    font-family: "Playfair Display", serif;
    color: var(--e-global-color-secondary);
}
.testimonial3-con .testimonial-box .review {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}
.testimonial3-con .owl-carousel .owl-nav{    
    display: block !important;
    margin-top: 52px !important;
    position: relative;
    text-align: center;
}
.testimonial3-con .owl-carousel .owl-prev,
.testimonial3-con .owl-carousel .owl-next {
    font-size: 18px !important;
    width: 57px;
    height: 57px;
    line-height: 57px !important;
    border-radius: 100% !important;
    position: relative;
    text-align: center;
    color: var(--e-global-color-secondary) !important;
    background-color: transparent !important;
    border: 1px solid var(--e-global-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.testimonial3-con .owl-carousel .owl-prev{
    left: -4px;
}
.testimonial3-con .owl-carousel .owl-next{
    right: -4px;
}
.testimonial3-con .owl-carousel .owl-prev:hover,
.testimonial3-con .owl-carousel .owl-next:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    border: 1px solid var(--e-global-color-accent) !important;
}

/* For place pages */

/* Project PopUp Style */

.project_modal .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
}
.project_modal .fade {
    opacity: 0;
    transition: opacity .15s linear;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.project_modal .fade.show {
    opacity: 1;
    background-color: transparent;
}
[tabindex="-1"]:focus {
    outline: 0!important;
}
.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    transform: translate(0,-25%);
}
.project_modal .modal-dialog {
    max-width: 48%;
    margin: 1.75rem auto;
    position: relative;
    width: auto;
    pointer-events: none;
}
.project_modal .modal.show .modal-dialog {
    transform: translate(0,0);
}
.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}
.project_modal .modal-content {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
    background-color: var(--e-global-color-white);
    box-shadow: 1px 21px 46px rgb(0 0 100 / 25%);
    border-radius: 0;
    border: none;
}
.project_modal .modal-header {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    border-bottom: none;
}
.project_modal .btn-close:not(:disabled):not(.disabled) {
    cursor: pointer;
    opacity: 1 !important;
}
.project_modal .modal-header .btn-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.project_modal .modal-header button {
    background: var(--e-global-color-accent);
    opacity: 1;
    position: absolute;
    right: 7px;
    top: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    outline: none;
}
.project_modal .btn-close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.project_modal button.btn-close {
    border: 0;
    -webkit-appearance: none;
}
.project_modal button {
    text-transform: none;
    overflow: visible;
}
.project_modal .modal-header button i {
    color: var(--e-global-color-white);
    font-size: 18px;
    line-height: 18px;
    padding: 5px 5px;
    outline: none;
}
.project_modal .fa-x:before {
    content: "\58";
}
.project_modal .blog-model-con .modal-body {
    overflow-y: auto;
    padding-top: 0;
}
.project_modal .modal-body {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem;
    padding-left: 30px;
    padding-right: 30px;
}
.project_modal .modal-body .blog-box-item {
    display: flex;
    align-items: center;
    border-radius: 0;
}
.project_modal .blog-box-item {
    background: var(--white-color);
    overflow: hidden;
}
.project_modal .modal-body .blog-img{
    float: left;
    width: 100%;
}
.project_modal .modal-body .blog-img figure {
    position: relative;
}
.project_modal .img-fluid {
    width: 100%;
    border-radius: 20px;
}
.project_modal .modal-content .project_content{
    padding: 40px 0 40px 20px;
}
.project_modal .modal-content .project_content h4{
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--e-global-color-secondary);
}
.project_modal .modal-content .project_content .text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
    color: var(--e-global-color-text);
}
.project_modal .modal-content .project_content .properties{
    margin-bottom: 20px;
}
.project_modal .modal-content .project_content .properties ul{
    padding-left: 25px;
}
.project_modal .modal-content .project_content .properties li {
    margin-bottom: 8px;
    position: relative;
    color: var(--e-global-color-text);
}
.project_modal .modal-content .project_content .properties li:last-child {
    margin-bottom: 0;
}
.project_modal .modal-content .project_content .properties ul li .circle {
    font-size: 9px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    top: 4px;
    left: -25px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.project_modal .modal-content .project_content .all_button{
    padding: 20px 30px;
}

/* Service Detail */

.service_detail {
    padding: 30px 0 120px;
}
.service_detail .main-box {
    position: relative;
}
.service_detail .main-box .image {
    margin-bottom: 30px;
}
.service_detail .main-box .image img {
    width: 100%;
    border-radius: 20px;
}
.service_detail .main-box h3 {
    font-size: 24px;
    line-height: 30px;
}
.service_detail .main-box p {
    margin-bottom: 10px;
}
.service_detail .main-box .text2 {
    margin-bottom: 20px;
}
.service_detail .main-box .list {
    margin-bottom: 20px;
}
.service_detail .main-box .list li {
    margin-bottom: 6px;
    padding-left: 28px;
    line-height: 20px;
    font-weight: 500;
    position: relative;
    color: var(--e-global-color-text);
}
.service_detail .main-box .list li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 17px;
    top: 2PX;
    left: 0;
    border-radius: 100px;
    position: absolute;
    text-align: center;
    display: inline-block;
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-white);
}

/* 404 Page */

.error_page{
    height: 100vh;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: var(--e-global-color-light-grayish-orange);
}
.error_page .error_content h1 {
    font-size: 140px;
    line-height: 140px;
    margin-bottom: 40px;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .text {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .text2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--e-global-color-text);
}
.error_page .error_content .back_home {
    font-size: 16px;
    line-height: 15px;
    font-weight: 700;
    padding: 21px 30px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.error_page .error_content .back_home:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.error_page .error_content .back_home i{
    font-size: 12px;
    margin-left: 24px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-white);
}
.error_page .error_content .back_home:hover i{
    transform: translateX(4px);
}

/* Coming Soon */

.comingsoon_outer{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100vh;
    text-align: center;
    position: relative;
    background-color: var(--e-global-color-light-grayish-orange);
}
.comingsoon_outer .logo_outer{
    margin-bottom: 70px;
}
.comingsoon_outer .logo_outer img{
    width: 145px;
}
.comingsoon_outer .comingsoon_section {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}
.comingsoon_outer .sub_banner_content h1 {
    font-size: 90px;
    line-height: 92px;
    margin-bottom: 30px;
    color: var(--e-global-color-secondary);
}
.comingsoon_outer .sub_banner_content p {
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--e-global-color-text);
}
.comingsoon_outer .sub_banner_content form{
    display: flex;
    align-items: center;
    justify-content: center;
}
.comingsoon_outer .sub_banner_content .form-group{
    margin-bottom: 30px;
}
.comingsoon_outer .sub_banner_content input {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 14px 16px 16px;
    width: 540px;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: visible;
    outline: none;
}
.comingsoon_outer .sub_banner_content button {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    padding: 15px 30px 18px;
    height: 100%;
    top: 0;
    right: -5px;
    border-radius: 0 8px 8px 0;
    position: absolute;
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    overflow: visible;
    outline: none;
    transition: all 0.3s ease-in-out;
}
.comingsoon_outer .sub_banner_content input:focus {
    border: 1px solid var(--e-global-color-accent);
}
.comingsoon_outer .sub_banner_content button:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-secondary);
}
.comingsoon_outer .sub_banner_content .social-icon li {
    display: inline-block;
    margin: 0 4px;
}
.comingsoon_outer .sub_banner_content .social-icon li:first-child {
    margin-left: 0;
}
.comingsoon_outer .sub_banner_content .social-icon li:last-child {
    margin-right: 0;
}
.comingsoon_outer .sub_banner_content .social-icon a{
    transition: all 0.3s ease-in-out;
}
.comingsoon_outer .sub_banner_content .social-icon i {
    font-size: 16px;
    height: 38px;
    width: 38px;
    line-height: 36px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-accent);
    background-color: transparent;
    border: 1px solid var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.comingsoon_outer .sub_banner_content .social-icon a:hover i {
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}

/* Back to top button */

#button {
    display: inline-block;
    background-color: var(--e-global-color-accent);
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 8px;
    position: fixed;
    bottom: 60px;
    right: 80px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;    
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;  
    text-decoration: none; 
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
}
#button.show {
    opacity: 1;
    visibility: visible;
}
#button:hover {
    transform: translateY(-5px);
}
@-webkit-keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
}
to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
}
}

@keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
}
to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
}
}

/* Preloader -------------------------------------------------------*/

/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--e-global-color-accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--e-global-color-accent);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Preloader -------------------------------------------------------*/

.days mt-2 mb-2 {
    background-color: #9ecaff8c;
    height: 30px;
    width: fit-content;
    border-radius: 5px;
    padding: 8px;
    line-height: 1;
    text-align: center;
    margin: 20px 0;
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #7db8ff;
}

.service_content {
    background-color: #f7f2f2;
    color: white;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
	padding-bottom: 10px;
}
.main-box {
	margin-top: 40px;
}

/* They Includes */
.col-lg-6.col-md-12.col-sm-12.col-12.order-lg-1.order-2 {
    position: relative; /* Ensure proper positioning for the pseudo-element */
    height: 100%; /* Adjust height as needed */
    width: 100%; /* Adjust width as needed */
    overflow: hidden; /* Prevent content from spilling outside the div */
}

.col-lg-6.col-md-12.col-sm-12.col-12.order-lg-1.order-2::before {
    content: ''; /* Required for pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/they-includes.jpg'); /* Replace with your image URL */
    background-size: cover; /* Ensures the image covers the div */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    opacity: 0.5; /* Adjust the opacity (0.1 to 1) */
    z-index: -1; /* Places the pseudo-element behind the content */
}

/* Document Required */
.main-div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 30px;
    gap: 50px;
}

/* Picture div styling */
.picture-div {
    flex: 1 1 40%; /* 40% width, adjusts based on screen size */
    display: flex;
    justify-content: center;
    align-items: center;
}

.picture-div img.background {
    width: 100%; /* Full width inside the container */
    border-radius: 10px;
    object-fit: cover; /* Maintain aspect ratio */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Info div styling */
.info-div {
    flex: 1 1 50%; /* 50% width, adjusts based on screen size */
    color: #333; /* Dark text color */
    font-family: Arial, sans-serif;
    text-align: left; /* Align text to the left */
}

/* Title styling */
.info-div .title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #123dbd;
}

/* Subtitle styling */
.info-div .small-text {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

/* Document text styling */
.info-div .text-1,
.info-div .text-2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Checkmark styling */
.info-div .check-1,
.info-div .check-2,
.info-div .check-3 {
    font-size: 1.2rem;
    color: #28a745; /* Green checkmark */
    margin-right: 10px;
}


/* Gallery */
.gallery-main-div {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 columns */
    gap: 10px; /* Space between images */
    padding: 30px;
}

.gallery-main-div img {
    width: 100%; /* Images will fill their container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for images */
}

/* Blog */
.background-container-blog {
  background-image: url(../images/blog/blog-1.jpg);
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.title-blog {
  color: white;
  font-size: 90px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.background-container-hajj {
    background-image: url(../images/hajj/hajj-1.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
/* Medium screens (Tablets) */
@media (max-width: 1024px) {
    .background-container-hajj {
        height: 350px;
        background-position: top center;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .background-container-hajj {
        height: 327px;
        background-size: contain; /* Ensures full visibility of the image */
        background-position: center;
    }
}

/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .background-container-hajj {
        height: 184px;
        background-size: cover; /* Adjust to keep image filling the container */
        background-position: center;
        margin-top: 10px;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .background-container-hajj {
        height: 230px; /* Adjust height as needed */
        background-position: center center;
    }
}
.hajj-container{
    display: flex;
    flex: 1;
    column-gap: 50px;
    margin-top: 30px;
    padding-top: 80px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 80px;
    margin-bottom: 30px;
}
/* Make it responsive for small screens */
@media (max-width: 1024px) { /* Adjust layout for tablets and mobiles */
    .hajj-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }

    .coloumn-1,
    .coloumn-2-ziyarat {
        max-width: 100%; /* Full width for smaller screens */
    }

    .package-info-ziyarat {
        text-align: center; /* Center content */
    }

    .hotel-ziyarat {
        max-width: 90%; /* Prevents images from being too large */
        height: auto;
    }
}
.coloumn-1 {
    flex: 1;
    text-align: justify;
}
.h1-title{
    font-weight: bold;
    color: #001d38;
}
.hajj-date{
    color: rgb(35, 113, 177);
    font-weight: bold;
}
.hajj-para{
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 30px;
    text-shadow: 0px 0px 10px yellow; /* Strong blur effect */
    color: #000; /* Text color remains visible */
}
.package-include{
    font-size: 25px;
    color: #f26d52;
}
.package-ul{
    font-weight: bold;
    font-size: 20px;
}
.hajj-doc{
    font-size: 25px;
    color: #f26d52;
}
.doc-info{
    font-weight: bold;
    font-size: 20px;
}
.coloumn-2 {
    flex: 1;
    padding: 50px;
    border-radius: 40px; /* Adds rounded corners */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); /* Darker and more prominent shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coloumn-2:hover {
    transform: translateY(-5px); /* Makes the title pop up */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Adds shadow on hover for more effect */
}
.package-info{
    display: flex;
    margin-top: 50px;
}
.hotel {
    width: 250px;
    border-radius: 50px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6); /* Darker shadow on all sides */
    background: rgba(0, 0, 0, 0.1); /* Light background to enhance the effect */
    padding: 10px; /* Ensures background and shadow are visible */
}

.hotel-4{
    width: 250px;
    height: 192px;
    border-radius: 50px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6); /* Darker shadow on all sides */
    background: rgba(0, 0, 0, 0.1); /* Light background to enhance the effect */
    padding: 10px; /* Ensures background and shadow are visible */
    display: inline-block; /* Ensures background applies properly */
}
.coloumn-2-title{
    font-size: 25px;
    text-align: center;
    margin-bottom: 30px;
    color: #001d38;
}
/* Responsive Design */
@media (min-width: 1200px) {
    .hajj-info {
        margin-left: 20px;
    }
}
@media (max-width: 1024px) {
    .hajj-container {
        padding: 40px 40px 20px;
        column-gap: 20px;
    }
    .coloumn-1,
    .coloumn-2 {
        width: 100%; /* Stack columns on smaller screens */
    }
}
@media (max-width: 768px) {
    .hajj-container {
        flex-direction: column;
        padding: 20px;
        row-gap: 50px;
    }
    .coloumn-1{
        width: 100%;
    }
    .coloumn-2 {
        width: 100%;
    }
    .package-info {
        flex-direction: column; /* Stack image and text */
        text-align: center;
    }
    .hotel {
        width: 100%; /* Make images responsive */
        height: auto;
        margin-bottom: 30px;
    }
    .hotel-4 {
        margin-left: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hajj-container {
        padding: 15px;
    }
    .h1-title {
        font-size: 22px; /* Reduce heading size */
    }
    .hajj-title2, .hajj-doc {
        font-size: 18px;
    }
    .hajj-date {
        font-size: 16px;
    }
    .hotel-4 {
        margin-left: 22px;
        margin-bottom: 30px;
    }
}
.background-container-hajj-regular {
    background-image: url(../images/regular/regular-1.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
/* Medium screens (Tablets) */
@media (max-width: 1024px) {
    .background-container-hajj-regular {
        height: 350px;
        background-position: top center;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .background-container-hajj-regular {
        height: 327px;
        background-size: contain; /* Ensures full visibility of the image */
        background-position: center;
    }
}

/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .background-container-hajj-regular {
        height: 184px;
        background-size: cover; /* Adjust to keep image filling the container */
        background-position: center;
        margin-top: 10px;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .background-container-hajj-regular {
        height: 230px; /* Adjust height as needed */
        background-position: center center;
    }
}
.regular-main-title{
    text-align: center;
    margin-bottom: 50px;
}
.regular-main-container{
    margin-top: 30px;
    padding: 80px;
}
.regular-packages-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    row-gap: 30px;
}
.regular-package-1:hover{
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}
.regular-package-1{
    width: 400px;
    min-width: 370px;
    padding: 20px;
    border-width: 1px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.regular-gold{
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
.timing-container{
    display: flex;
    column-gap: 30px;
    margin-bottom: 10px;
    position: relative;
}
.timing-1{
    font-weight: bold;
    font-size: 15px;
}
.timing-2{
    font-weight: bold;
    font-size: 15px;
}
.date-1{
    margin: 0px;
    padding: 0px;
    font-size: 15px;
}
.date-2{
    margin: 0px;
    padding: 0px;
    font-size: 15px;
}
.regular-hotel{
    font-weight: bold;
    font-size: 15px;
}
.regular-para{
    font-size: 14px;
}
.dep{
    position: absolute;
    top: 0px;
    left: 157px;
}
.arr{
    position: absolute;
    top: 0px;
    right: -12px;
}
.regular-rest-info{
    padding-left: 79px;
    padding-right: 79px;
    padding-bottom: 30px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .regular-rest-info{
        padding: 20px;  
    }
}

@media (max-width: 480px) {
    .regular-rest-info{
        padding: 20px;
    }
}
.regular-para-title{
    font-size: 25px;
    color: #f26d52;
    -webkit-text-stroke: 0.5px black; /* Text border */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Text shadow */
}
.info-1{
    margin-top: 50px;
}
.background-container-hajj-short {
    background-image: url(../images/short/short-2.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
/* Medium screens (Tablets) */
@media (max-width: 1024px) {
    .background-container-hajj-short {
        height: 350px;
        background-position: top center;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .background-container-hajj-short {
        height: 327px;
        background-size: contain; /* Ensures full visibility of the image */
        background-position: center;
    }
}

/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .background-container-hajj-short {
        height: 184px;
        background-size: cover; /* Adjust to keep image filling the container */
        background-position: center;
        margin-top: 10px;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .background-container-hajj-short {
        height: 230px; /* Adjust height as needed */
        background-position: center center;
    }
}
.gold {
    color: gold;
    font-weight: bold;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.6); /* Thin border around text */
}
.silver{
    color: silver;
    font-weight: bold;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.6); /* Thin border around text */
}
.regular{
    color: #003366;
    font-weight: bold;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.6); /* Thin border around text */
}
.background-container-umrah {
    background-image: url(../images/umrah/umrah-1.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
/* Medium screens (Tablets) */
@media (max-width: 1024px) {
    .background-container-umrah {
        height: 350px;
        background-position: top center;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .background-container-umrah {
        height: 327px;
        background-size: contain; /* Ensures full visibility of the image */
        background-position: center;
    }
}
/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .background-container-umrah {
        height: 184px;
        background-size: cover; /* Adjust to keep image filling the container */
        background-position: center;
        margin-top: 10px;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .background-container-umrah {
        height: 230px; /* Adjust height as needed */
        background-position: center center;
    }
}
.background-container-umrah-ramadan {
    background-image: url(../images/ramadan/ramadan-1.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
/* Medium screens (Tablets) */
@media (max-width: 1024px) {
    .background-container-umrah-ramadan {
        height: 350px;
        background-position: top center;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .background-container-umrah-ramadan {
        height: 327px;
        background-size: contain; /* Ensures full visibility of the image */
        background-position: center;
    }
}
/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .background-container-umrah-ramadan {
        height: 184px;
        background-size: cover; /* Adjust to keep image filling the container */
        background-position: center;
        margin-top: 10px;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .background-container-umrah-ramadan {
        height: 230px; /* Adjust height as needed */
        background-position: center center;
    }
}
.coloumn-2-umrah-ramadan {
    flex: 1;
    border-radius: 40px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 1050px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 768px) {
    .mecca-ramadan {
        max-width: 100%; /* Adjust width to fit smaller screens */
        padding-left: 0px;
    }
}
.coloumn-2-umrah-ramadan:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}
.hajj-para-ramadan{
    color: black;
}
.tour-cost{
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}
@media (max-width: 768px) {
    .tour-cost {
        display: flex;
        flex-direction: column;
        column-gap: 10px;
    }
}
.tour{
    border: solid;
    border-width: 3px;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}
.price{
    text-align: center;
    margin-top: 10px;
    color: green;
    font-weight: bold;
}
.seperation{
    display: flex;
    column-gap: 100px;
}
.background-container-umrah-jan {
    background-image: url(../images/jan-2024/jan-umrah-bg.webp);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
/* Medium screens (Tablets) */
@media (max-width: 1024px) {
    .background-container-umrah-jan {
        height: 350px;
        background-position: top center;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .background-container-umrah-jan {
        height: 327px;
        background-size: contain; /* Ensures full visibility of the image */
        background-position: center;
    }
}
/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .background-container-umrah-jan {
        height: 184px;
        background-size: cover; /* Adjust to keep image filling the container */
        background-position: center;
        margin-top: 10px;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .background-container-umrah-jan {
        height: 230px; /* Adjust height as needed */
        background-position: center center;
    }
}
.background-container-ziyarat {
    background-image: url(../images/ziyarat/ziyarat-1.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
/* Medium screens (Tablets) */
@media (max-width: 1024px) {
    .background-container-ziyarat {
        height: 350px;
        background-position: top center;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .background-container-ziyarat {
        height: 327px;
        background-size: contain; /* Ensures full visibility of the image */
        background-position: center;
    }
}

/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .background-container-ziyarat {
        height: 184px;
        background-size: cover; /* Adjust to keep image filling the container */
        background-position: center;
        margin-top: 10px;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .background-container-ziyarat {
        height: 230px; /* Adjust height as needed */
        background-position: center center;
    }
}
.coloumn-2-ziyarat {
    flex: 1;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 40px; /* Adds rounded corners */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5); /* Darker and more prominent shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coloumn-2-ziyarat:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}
.package-info-ziyarat{
    margin-top: 50px;
}
.hotel-ziyarat {
    border-radius: 40px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6); /* Darker shadow on all sides */
}
.days-button{
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    background-color: #001d38;
    color: white;
    font-weight: bold;
    cursor: pointer;
}
.background-container-blog {
    background-image: url(../images/blog/blog-1.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
/* Medium screens (Tablets) */
@media (max-width: 1024px) {
    .background-container-blog {
        height: 350px;
        background-position: top center;
    }
}

/* Small screens (Mobile devices) */
@media (max-width: 768px) {
    .background-container-blog {
        height: 327px;
        background-size: contain; /* Ensures full visibility of the image */
        background-position: center;
    }
}

/* Extra small screens (Phones under 480px) */
@media (max-width: 480px) {
    .background-container-blog {
        height: 184px;
        background-size: cover; /* Adjust to keep image filling the container */
        background-position: center;
        margin-top: 10px;
    }
}
@media (max-width: 540px) and (max-height: 720px) {
    .background-container-blog {
        height: 230px; /* Adjust height as needed */
        background-position: center center;
    }
}

.extra-1-img{
    border-radius: 20px;
    width: 100%;
}

.heading-text {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #001d38;
    margin-bottom: 10px;
}

/* Responsive text size for smaller screens */
@media (max-width: 1024px) {
    .heading-text {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .heading-text {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .heading-text {
        font-size: 24px;
    }
}

/* Description text styling */
.description-text {
    text-align: center;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 20px;
    margin-top: 25px;
}

/* Responsive text size for smaller screens */
@media (max-width: 1024px) {
    .description-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .description-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .description-text {
        font-size: 14px;
    }
}
.text-white-2{
    color: white;
    font-size: 15px;
}

/* Cards */
.al-kabeer-title{
    text-align: center;
    color: #f26d52;
    font-weight: bold;
    /*-webkit-text-stroke: 1px black;*/
    -webkit-text-fill-color: #f26d52;
}
.card-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    padding: 50px;
    padding-bottom: 125px;
}
.card {
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    background-color: white;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.card:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}
/* Hidden popup */
.card .popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
/* Show popup on hover */
.card:hover .popup {
    opacity: 1;
    visibility: visible;
}
/* Large screens (desktops) */
@media (max-width: 1200px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 10px;
    }
}

/* Medium screens (tablets, smaller laptops) */
@media (max-width: 992px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
        row-gap: 10px;
    }
}

/* Small screens (large smartphones) */
@media (max-width: 768px) {
    .card-container {
        grid-template-columns: repeat(1, 1fr);
        padding: 30px;
        row-gap: 10px;
    }
}

/* Extra small screens (mobile phones) */
@media (max-width: 480px) {
    .card-container {
        grid-template-columns: repeat(1, 1fr);
        padding: 20px;
        column-gap: 5px;
        row-gap: 10px;
    }
}
.hajj-container-2{
    display: flex;
    flex-direction: row;
    padding: 100px;
    padding-top: 30px;
    column-gap: 50px;
    align-items: center;
    flex-wrap: wrap-reverse;
    background-color: #fbfaf5;
}
.info-container{
    flex: 2;
}
.img-container{
    flex: 1;
}
.hajj-img{
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Responsive: Stack items in reverse order on smaller screens */
@media (max-width: 768px) {
    .hajj-container-2 {
        flex-direction: column-reverse; /* Reverse order when stacked */
        row-gap: 10px; /* Adds spacing between stacked items */
        text-align: justify;
        padding: 20px;
    }
}

.hajj-header-text{
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: #001d38;
}
.umrah-container-2{
    display: flex;
    flex-direction: row;
    padding: 100px;
    padding-bottom: 30px;
    column-gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0px;
    background-color: #fbfaf5;
}
.hajj-header-text-2{
    /*-webkit-text-stroke: 1px black;*/
    -webkit-text-fill-color: green;
}
/* Responsive: Stack items in reverse order on smaller screens */
@media (max-width: 768px) {
    .umrah-container-2 {
        flex-direction: column; /* Reverse order when stacked */
        row-gap: 10px; /* Adds spacing between stacked items */
        text-align: justify;
        padding: 20px;
    }
}
.welcome-text{
    color: #001d38;
}

/*Scroll bar design*/
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #f26d52;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #f26d52;
}

body {
    scrollbar-width: thin;
    scrollbar-color: #2c3e50 #f1f1f1;
}

/* Faq */
.faq-container {
    margin: auto;
    width: 75%;
    max-width: 80%;
    background: white;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
}
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    background: #f1f1f1;
    border-radius: 5px;
    transition: background 0.3s;
}
.faq-question:hover {
    background: #e0e0e0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 10px;
    font-size: 16px;
    color: #555;
    border-left: 3px solid #f26d52; /* Added orange left border */
    margin-left: 10px; /* Slight spacing for better look */
}
.faq-answer.open {
    max-height: 150px;
    padding: 10px;
}
.faq-icon {
    font-size: 22px;
    transition: transform 0.3s;
}
.faq-icon.rotate {
    transform: rotate(180deg);
}
.faq-title{
    text-align: center;
    color: #f26d52;
    font-weight: bold;
    text-shadow: -1px -1px 0 #000,  
                1px -1px 0 #000,  
                -1px  1px 0 #000,  
                1px  1px 0 #000;
}
/* Extra Small Devices (Phones) - up to 320px */
@media (max-width: 320px) {
    .faq-container {
        width: 100%;
        max-width: 100%;
    }
}

/* Small Phones (321px - 480px) */
@media (max-width: 480px) {
    .faq-container {
        width: 100%;
        max-width: 100%;
    }
}

/* Medium Phones (481px - 576px) */
@media (max-width: 576px) {
    .faq-container {
        width: 100%;
        max-width: 100%;
    }
}

/* Large Phones & Small Tablets (577px - 768px) */
@media (max-width: 768px) {
    .faq-container {
        width: 100%;
        max-width: 100%;
    }
}

/* Tablets & Small Laptops (769px - 991px) */
@media (max-width: 991px) {
    .faq-container {
        width: 100%;
        max-width: 100%;
    }
}

.contact-section-home {
    background: linear-gradient(90deg, #f26d52 0%, #f8b195 100%);
    color: #fff;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-text {
    flex: 1 1 500px;
}

.contact-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
    font-weight: bold;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: white;
}

.button-ui {
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #c93526;
    /*border-radius: px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 17px;
    cursor: pointer;
    margin-bottom: 27px;
}

.button-ui:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.button-ui:hover .icon {
    transform: translate(4px);
}

.button-ui:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.button-ui::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.contact-image {
    flex: 1 1 400px;
}

.contact-image img {
    width: 100%;
    object-fit: cover;
}

