@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Cardo:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}


.img {
    border-radius: 20px;
}

:root {
    /* Primary Colors */
    --primary-color: #00acc3;
    --secndry-color: #ffd2b2;
    --fancybox-zIndex: 9999;
    /* Navigation & Background */
    --nav-bg: #00adc4;
    --background-color: rgba(17, 61, 72, 0.7);
    --text-color: #160803;

    /* Additional Colors */
    --white: #ffffff;
    --black: #000000;
    --border-color: #00acc3;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00acc3 0%, #007a8a 50%, #004d56 100%);
    ;
    --gradient-secondary: linear-gradient(135deg, #ffd2b2 0%, #ffb999 100%);

    /* Font Sizes */
    --font-size-small: 13px;
    --font-size-medium: 20px;
    --font-size-large: 36px;
    --font-size-x-large: 42px;

    /* Font Families */
    --font-family-primary: "Inter", sans-serif;
    --font-family-secondary: "Cardo", serif;
}

/* Default styles for all headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2em;
}

/* Smaller responsive font sizes */
h1 {
    font-size: clamp(1.8em, 4vw, 2.5em);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6em, 3.5vw, 2.2em);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.4em, 3vw, 2em);
    font-weight: 700;
}

h4 {
    font-size: clamp(1.2em, 2.2vw, 1.5em);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.2em, 1.9vw, 1.4em);
    font-weight: 500;
}

h6 {
    font-size: clamp(0.9em, 1.8vw, 1.2em);
    font-weight: 500;
}

li {
    list-style-type: none;
}

.section {
    padding: 60px 0;
    overflow: hidden;
}

.section-two {
    padding: 100px 0 60px 0;
    overflow: hidden;
}

p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.4em;
}




button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

button i {
    font-size: 20px;
}

/* Button 1 - Contact Now with Scale Animation */
.btn1 {
    background: var(--gradient-primary);
    color: white;
    animation: pulse 1.5s infinite alternate;
    padding: 12px 30px;
    display: flex;
    border-radius: 10px;
    gap: 10px;
    text-decoration: none;

}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Hover Effects */
button:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.3);
}











.fixed-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
    transition: all 1s
}



.navbar {
    background-color: white;
    padding: 6px 0;
    transition: all 1s;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    overflow: hidden;
    background-color: white;
    border-radius: 20px;
}

.navbar-brand img {
    width: 180px;
    margin-right: 10px;
}


.navbar-nav {
    position: relative;
}



.dropdown-menu {
    border-top: 2px solid var(--border-color);
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}


.nav-link {
    color: var(--black);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.search-icon {
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: var(--secndry-color);
}

.btn-buy-now {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background-color: #008b9f;
    color: var(--white);
}


}
@media (max-width: 991px) {
    
   
    
    
    .feature-list {
        width: 100% !important;
    }

    .pr {
        max-height: 300PX;
        object-fit: cover;
        width: 100%;
    }

    .peage-header::before {
        background: linear-gradient(to right, rgba(0, 77, 100, 0.8) 0%, rgba(0, 77, 100, 0.9) 100%, rgba(0, 77, 100, 0) 100%) !important;
    }


    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .nav-link .active {
        color: white;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .navbar-nav .btn-buy-now {
        margin-top: 1rem;
        display: inline-block;
    }

    .search-icon {
        margin: 1rem 0;
        display: inline-block;
    }

    .about-content {
        border-radius: 0px 0px 40px 40px !important;


    }

    .about-img {
        border-radius: 40px 40px 0px 0 !important;

    }

    .stat-item {
        border: none !important;
    }
}












/* Base Styles */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80vh;
    /* Better for smaller screens */
    background: rgba(17, 61, 72, 0.6);
    padding: 50px 0;
}

.hero-swiper {
    height: 100%;
    overflow: hidden;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
}

.circular-frame {
    display: flex;
    justify-content: center;
}

.circular-frame .swiper {
    width: 80%;
    border-radius: 500px 500px 10px 10px;
    box-shadow: -20px 20px 0px 0px var(--primary-color);
    overflow: hidden;
    margin-bottom: -100px;
}

.circular-frame img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.content-wrapper {
    padding: 2rem;
    text-align: left;
}

.welcome-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 0.5rem;
    color: white;
    margin-bottom: 1rem;
}

.main-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.description {
    color: white;
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn {
    color: var(--black);
    border: 2px solid var(--white);

    border-radius: 50px;
}


.learn-more-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.learn-more-btn:hover {
    background-color: white;
    color: var(--black);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 30px 0;
    }




    .circular-frame .swiper {
        width: 100%;
        margin: 0 auto;
    }

    .content-wrapper {
        padding: 1.5rem;
    }


}

@media (max-width: 768px) {

    .learn-more-btn {
        padding: 0.5rem 1.5rem;
    }

    .hero-section {
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {


    .description {
        font-size: 0.85rem;
    }

    .learn-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .content-wrapper {
        text-align: center;
    }
}

.circular-swiper .swiper-slide {
    overflow: hidden;
}




/* about */

.about-content {
    padding: 20px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 40px 0 0 40px;
    color: white;
}

.about-img {
    border-radius: 0px 40px 40px 0px;

}

.choise-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    height: 100%;
    padding: 20px;
    background-color: white;
    text-align: center;
}


.icons {

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.icons img {
    mix-blend-mode: multiply;
    width: 80px;
    height: 80px;
}


.arrow-btn {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comprehensive img {
    border-radius: 40px;
}



.feature-list {
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;

}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    margin: 10px 0;
    border-radius: 30px;
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.comprehensive {
    background: url(../img/bg-2.jpg);
    position: relative;
    color: white;
}

.feature-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 10px;

}



.feature-text {
    font-size: 18px;
    color: white;
    font-weight: 600;
}

.comprehensive .overlay {
    background-color: #113D48 !important;
    z-index: 2;
}

.comprehensive-contant {
    z-index: 99999;
    position: relative;
}



.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}



.blog-card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.badge-custom {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #007bff;
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 20px;
}

.blog-content {
    padding: 20px;
}


.blog-content .meta {
    font-size: 14px;
    color: #6c757d;
}

.blog-content .meta i {
    margin-right: 5px;
}

.blog-content p {
    color: #555;
    margin-top: 10px;
}

.btn {
    text-decoration: none;
    display: flex;
    gap: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

.btn i {
    transition: transform 0.3s ease-in-out;
}

.btn:hover i {
    transform: translateX(5px);
}

.heading-section {
    max-width: 800px;
    margin: auto;
    margin-bottom: 10px;
}


/* services */

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 15px;
}

.service-content {
    padding: 20px;
}


.service-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;


}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #eee;
}

.service-footer .price {
    font-size: 14px;
    font-weight: bold;
}

.service-footer .price span {
    font-size: 12px;
    color: #777;
}

.service-footer .icon-btn {
    background: #000;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
}





.blog-card h5 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}



/*  */
.footer {
    background: #0d3b46;
    color: white;
    padding: 60px 0 0 0;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 170px
}



.footer-logo {
    border-radius: 20px;
    background-color: white;
    padding: 5px;
    width: 180px;
    overflow: hidden;

}

.footer .social-links {
    display: flex;
    border: 0px;
    gap: 20px;
    padding: 0;
    margin-bottom: 20px;

}

.footer .social-links a {
    margin: 0;
}

.footer .social-links i {
    font-size: 21px
}






.footer h6 {
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    text-align: left;
}

.footer a {
    text-decoration: none;
    color: white;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer .contact-info li {
    display: flex;
    margin-top: 0px;


}

.footer .contact-info i {
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    padding: 5px;
    text-align: center;
}

.footer li {
    margin-top: 10px;
}




.dubai-feature-list li,
.service-list li {
    display: flex;
    align-items: start;
    gap: 10px;
}


.dubai-feature-list li i,
.service-list li i {
    color: var(--primary-color);
    font-size: 20px;
}

.cards ul {
    padding-left: 10px !important;
}




.parallax-section {
    background-size: cover;
    position: relative;
    background: rgba(17, 61, 72, 0.7);
    background-position: center;
    padding: 80px 0;
}

.parallax-section .overlay {
    background-image: url('../img/bg-3.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-position 0.1s linear;


}

.stats-container {
    padding: 40px;
    border-radius: 10px;
}

.stat-item {
    text-align: center;

    flex: 1;
    border-right: 2px solid var(--primary-color);
    color: white;
}

.stat-item p {
    font-size: 21px;
    font-weight: 600;
}

.stat-item h1 {
    font-size: 3rem;

}


.stat-item:last-child {
    border-right: none;
}




/* swiper */


.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Button Styling */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(17, 61, 72, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(17, 61, 72);
}

/* Hide Default Swiper Icons */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* Icon Styling */
.swiper-button-next i,
.swiper-button-prev i {
    font-size: 24px;
    color: white;
}




.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: auto;
    padding: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}


.banner {
    border-radius: 40px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.card {
    transition: all.5s;
    border-radius: 20px;
    border: 2px dotted var(--primary-color);
}

.card:hover {
    background: var(--gradient-primary);
    color: white;
    border: none;

}



/*  */

.valu {
    border-radius: 20px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--border-color);
}

.valu:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-top-color: #6c757d;
}

.valu-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.valu-content {
    padding: 20px;
}

.clints img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    mix-blend-mode: multiply !important;
    display: block;
}

.clints-img {
    mix-blend-mode: multiply;
    width: 100%;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 200px;
}

.partner-logo img {
    mix-blend-mode: multiply;
    width: 100%;
    height: auto !important;


}


.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quick-enquiry-form {
    position: relative;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 2;
}

.slide-content img {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.toastify-flex {
    display: flex;
    /* Ensure flex behavior */
    align-items: center;
    /* Vertically center the icon and text */
    justify-content: space-between;
    /* Space out the text and close icon */
}

.toastify .toastify-close-button {
    margin-left: 10px;
    /* Space between the text and the close button */
}



.touritineraries-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.touritineraries-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.touritineraries-card .overlay {
    position: absolute;
    inset: 0;
    top: 0;

    z-index: 1;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
}


.touritineraries-contant {
    position: absolute;
    bottom: 40px;
    z-index: 10;
    left: 20px;
}


.touritineraries-card h3 {

    font-size: 16px;
    color: white;
    font-weight: 600;
    font-style: italic;
    z-index: 2;
}

.touritineraries-container {
    gap: 20px;
}

.touritineraries-contant .btn {
    width: auto;


    display: inline;
}

.touritineraries-contant .btn:hover {
    border: 2px solid white;
    color: white;
}

.delhi-swiper-img {
    max-height: 400px;
    object-fit: cover;
}

@media (min-width: 900px) and (max-width: 1400px) {
    footer p {
        font-size: 14px !important;
    }
}

.toastify {
    display: flex !important;
    justify-content: space-between !important;
}

.iti {
    width: 100%;
}


@media (min-width: 992px) {
    .modal-content {
        min-width: 700px !important;
    }
}


.modal-dialog-centered {
    display: flex
;
    align-items: center;
    justify-content: center !important;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}

