/* ===== Import Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ===== Root Variables ===== */

:root {
    --primary-color: #0d6efd;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

/* ===== Links ===== */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s, transform 0.3s;
}

a:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

/* ===== Images ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Top Header ===== */
/* Basic styling for the logo */
.navbar-brand .logo {
    max-width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.topheader {
    background-color: #e9a746;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-left {
    display: flex;
    align-items: center;
    /* vertical center */
}

/* Top Header Links Left */
.top-header-left a {
    font-size: 14px;
    margin-right: 15px;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-header-left a:hover {
    color: #ffd43b;
}

/* ===== Social Icons ===== */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 6px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    transition: all 0.4s ease;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .top-header-left {
        justify-content: center !important;
        margin-bottom: 5px;
    }
}

/* Navbar Background */
.navbar {
    background-color: #286AA6;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Container Flex */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.navbar .logo img {
    max-width: 150px;
}

/* Navigation Menu */
.navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    /* spacing between menu items */
    margin: 0;
    padding: 0;
}

.navigation ul li {
    position: relative;
    /* for underline */
}

.navigation ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

/* Text slide & underline animation on hover */
.navigation ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #ffd43b;
    transition: width 0.3s ease;
}

.navigation ul li a:hover {
    color: #ffd43b;
    transform: translateY(-4px);
}

.navigation ul li a:hover::after {
    width: 100%;
}

.navbar .nav-link {
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: color 0.3s, transform 0.3s;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #ffd43b;
    transition: width 0.3s;
}

.navbar .nav-link:hover {
    color: #ffd43b;
    transform: translateY(-3px);
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* Offcanvas General */
.offcanvas {
    background-color: #0A3D62;
    /* Primary blue background */
    color: #fff;
    width: 250px;
    /* Width of offcanvas */
}

/* Offcanvas Header */
.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offcanvas-title {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Offcanvas Close Button */
.offcanvas .btn-close {
    filter: invert(1);
    /* white close icon */
}

/* Offcanvas Menu List */
.offcanvas-body ul.navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.offcanvas-body ul.navbar-nav li {
    list-style: none;
}

.offcanvas-body ul.navbar-nav li a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

/* Hover Effect */
.offcanvas-body ul.navbar-nav li a:hover {
    background-color: #ffd43b;
    color: #0d6efd;
    transform: translateX(5px);
}

/* Optional: add a subtle shadow to menu items */
.offcanvas-body ul.navbar-nav li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--);
    transition: 0.3s;
}

.offcanvas-body ul.navbar-nav li a:hover::before {
    width: 100%;
}

/* Responsive Adjustments if needed */
@media (max-width: 575px) {
    .offcanvas {
        width: 100%;
    }

    .offcanvas-body ul.navbar-nav li a {
        font-size: 1.4rem;
    }
}


/* ===== Slider CSS ===== */
.slider-area {
    width: 100%;
    /* desktop height */
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.swiper-slide img {
    width: 100%;
    /* width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform-origin: center center; */
    /* zoom কেন্দ্র থেকে হবে */
    transition: transform 0.3s ease;
}

/* Desktop arrows hidden by default */
.swiper-button-next,
.swiper-button-prev {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show arrows on hover (desktop) */
.slider-area:hover .swiper-button-next,
.slider-area:hover .swiper-button-prev {
    opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 767px) {

    .swiper-slide img {
        object-fit: cover;
    }

    /* Hide arrows on mobile */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Autoplay progress */
.autoplay-progress {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    z-index: 10;
}

.autoplay-progress svg {
    width: 100%;
    height: 100%;
    stroke-width: 4;
    stroke: #ffd43b;
    fill: none;
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
    transform: rotate(-90deg);
    transition: stroke-dashoffset 0.3s linear;
}

.autoplay-progress span {
    position: absolute;
    font-size: 0.8rem;
}

/* Slider wrapper */
.promo-slider-area .promoSwiper {
    padding: 20px 0;
}

.promo-slider-area .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}


.promo-single-promotion {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.promo-single-promotion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}


.promo-single-promotion:hover img {
    transform: scale(1.1);
}

.promo-single-promotion:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* responsive heights */
@media (max-width: 767px) {
    .promo-single-promotion img {
        height: 150px;
    }
}

/* Slider wrapper */
.promo-slider-area .promoSwiper {
    padding: 10px 0;
}

.promo-slider-area .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.promo-single-promotion {
    /* width: 400px;
    height: 300px; */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.promo-single-promotion img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.7s ease;
}

.promo-single-promotion:hover img {
    transform: scale(1.1);
}

.promo-single-promotion:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* responsive for mobile */
@media (max-width: 767px) {
    .promo-single-promotion {
        width: 100%;
    }
}

/* package */
.package-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.package-card .package-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.package-card .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    color: #fff;
    text-align: center;
}

.package-card .overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ffdd00;
    /* Premium gold color */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.package-card .overlay .flex {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.package-card .overlay .flex span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
}

.package-card .overlay .price {
    color: #00ffd5;
    font-weight: 700;
    font-size: 1.05rem;
}


/* owner */
.owner-message {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 60px 20px;
}

.owner-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.owner-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/water-bg.png') center center/cover no-repeat;
    opacity: 0.3;
    pointer-events: none;
}

.owner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.owner-image-wrapper:hover .owner-image {
    transform: scale(1.05);
}

.owner-text {
    color: #02475e;
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.owner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.owner-message-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: black;
}

.owner-name {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.owner-position {
    color: #00796b;
    font-size: 0.95rem;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* blog */
.blog-card {
    background: #fdfdfd;
    /* light background */
    color: #333;
    /* dark text */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.blog-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content h5 {
    color: #222;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-content p {
    color: #555;
}

.blog-footer {
    background: #f0f0f0;
    color: #555;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.5s, color 0.5s;
}

.blog-card:hover .blog-footer,
.btn-gradient {
    background: linear-gradient(90deg, #266aa2, #ffd43b);
    color: #fff;
    transition: all .3s linear;
}

.btn-gradient:hover {
    color: black;
}

/* footer */
.footer {
    background: #0a3d62;
    color: #ffffff;
    padding: 60px 20px 40px;
}

.footer h5 {
    font-weight: bold;
    color: #ffffff;
}

.footer a {
    color: #ffffffcc;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons a {
    font-size: 20px;
    color: #fff;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.bank-logo,
.affiliation-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 8px;
    margin: 5px;
}

.contact-card {
    background-color: #1e5a8a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.contact-card h6 {
    font-size: 16px;
    font-weight: 600;
}

.footer hr {
    border-color: #ffffff40;
}

/* breadcrumb */
.breadcrumb-section {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.breadcrumb-section::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0d6efd69;
}

.breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: brightness(0.6);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.breadcrumb-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb .breadcrumb-item a {
    color: #ffd700;
    text-decoration: none;
}

.breadcrumb .breadcrumb-item.active {
    color: #fff;
}

@media(max-width: 767px) {
    .breadcrumb-section {
        height: 180px;
    }

    .breadcrumb-content h1 {
        font-size: 1.8rem;
    }
}

/* contact */
.contact-section {
    background: #eef2f7;
    font-family: 'Poppins', sans-serif;
    padding: 80px 0;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 15px;
    color: #2575fc;
}

.contact-form p {
    margin-bottom: 25px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    background: #f9f9f9;
}

.contact-form button {
    background: #2575fc;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #1a5edb;
    transform: scale(1.05);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-card .icon {
    font-size: 2rem;
    color: #2575fc;
    flex-shrink: 0;
}

.info-card .details h5 {
    margin: 0 0 5px 0;
    color: #2575fc;
}

.info-card .details p {
    margin: 0;
    color: #555;
}

/* Responsive */
@media(max-width:767px) {
    .row.align-items-start {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .info-card {
        flex-direction: row;
        justify-content: flex-start;
    }
}


/* blog details */
.blog-details-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    position: relative;
}

.blog-details-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: -webkit-linear-gradient(90deg, #ff7e5f, #feb47b);
    background: -moz-linear-gradient(90deg, #ff7e5f, #feb47b);
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    margin: 10px 0;
    border-radius: 2px;
}

.blog-details-meta i {
    margin-right: 5px;
    color: #ff7e5f;
}

.blog-details-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.btn {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-facebook {
    background: #3b5998;
    color: #fff;
}

.btn-facebook:hover {
    background: #2d4373;
}

.btn-twitter {
    background: #1da1f2;
    color: #fff;
}

.btn-twitter:hover {
    background: #0d95e8;
}

.btn-pinterest {
    background: #bd081c;
    color: #fff;
}

.btn-pinterest:hover {
    background: #8c0615;
}

.tags {
    font-style: italic;
}

.blog-details-image img {
    -webkit-transition: -webkit-transform 0.5s ease;
    -moz-transition: -moz-transform 0.5s ease;
    -o-transition: -o-transform 0.5s ease;
    transition: transform 0.5s ease;
}

.blog-details-image:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .blog-details-title {
        font-size: 2rem;
    }

    .blog-details-content p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

/* about */
.team-card {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.team-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
}

/* About Section */
.about-section {
    background: #f9f9f9;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    transition: transform 0.5s ease;
}

.about-image-wrapper img:hover {
    transform: scale(1.05);
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    opacity: 1;
    /* initially visible */
}

.about-mv-section {
    background-color: #f9f9f9;
}

.mv-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 1;
    /* এখানে opacity 1 রাখুন */
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

.mv-icon img {
    width: 60px;
    height: 60px;
}

.mv-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ff7a18;
}

.mv-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.gallery {
    padding: 60px 0;
    background: #f8f9fa;
}

.gallery h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery p {
    font-size: 1rem;
    color: #6c757d;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    -o-transition: transform 0.4s ease, box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.gallery-item img {
    width: 100%;
    /* height: 400px; */
    display: block;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    object-fit: fill;
}

.gallery-item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    font-size: 2rem;
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.umrah .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.umrah .card-header {
    background: #266ba4;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.umrah .card-header h4 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 500;
}

.umrah .card-body {
    background-color: #fff;
    padding: 30px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.row.g-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.row.g-3>.col-md-4,
.row.g-3>.col-md-12 {
    flex: 1;
    min-width: 220px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: #4e54c8;
    box-shadow: 0 0 8px rgba(78, 84, 200, 0.3);
    outline: none;
}

.umr-passenger-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
}

.umr-passenger-input button {
    width: 36px;
    height: 36px;
    border: none;
    background-color: #ffffff;
    font-size: 20px;
    color: #555;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.umr-passenger-input button:hover {
    background-color: #4e54c8;
    color: #fff;
}

.umr-passenger-input .umr-passenger-count {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    padding: 0 10px;
}

.btn-submit {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: #218838;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .row.g-3 {
        flex-direction: column;
    }
}

/* Accommodation Type Container */
.umr-accom-type {
    display: flex;
    gap: 15px;
    /* Space between radio buttons */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: flex-start;
    /* Align items to the start */
}

/* Custom Radio Button Styling */
.umr-radio {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    user-select: none;
    padding-left: 30px;
    margin: 0;
    /* Remove default margin */
}

.umr-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.umr-radio-mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 50%;
    transition: background-color 0.3s, border-color 0.3s;
}

.umr-radio:hover input~.umr-radio-mark {
    background-color: #f5f5f5;
}

.umr-radio input:checked~.umr-radio-mark {
    background-color: #4caf50;
    border-color: #4caf50;
}

.umr-radio-mark:after {
    content: "";
    position: absolute;
    display: none;
}

.umr-radio input:checked~.umr-radio-mark:after {
    display: block;
}

.umr-radio .umr-radio-mark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.umr-accom-type {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.umr-radio {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    user-select: none;
    padding-left: 25px;
    margin: 0;
}

.umr-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.umr-radio-mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 50%;
    transition: background-color 0.3s, border-color 0.3s;
}

.umr-radio:hover input~.umr-radio-mark {
    background-color: #f5f5f5;
}

.umr-radio input:checked~.umr-radio-mark {
    background-color: #4caf50;
    border-color: #4caf50;
}

.umr-radio-mark:after {
    content: "";
    position: absolute;
    display: none;
}

.umr-radio input:checked~.umr-radio-mark:after {
    display: block;
}

.umr-radio .umr-radio-mark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Basic styling for the section title */

.section-title h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;
}

/* Underline effect (hidden initially) */
.section-title h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #4CAF50;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    /* smooth animation */
}

/* Hover effect - underline slide in */
.section-title h3:hover::before {
    transform: translateX(0);
}

/* Optional: keyframe animation for first load */
@keyframes underline {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* Apply animation once when page loads */
.section-title h3::before {
    animation: underline 0.8s ease forwards;
}


/* Keyframes for underline animation */
@keyframes underline {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Card container */
.umr-package-details .umr-card {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.umr-package-details .umr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Card header */
.umr-package-details .umr-card-header {
    background: #286AA6;
    color: #fff;
    padding: 15px 20px;
    font-weight: 600;
    text-align: center;
    border-bottom: 3px solid #fff;
}

/* Card body */
.umr-package-details .umr-card-body {
    padding: 20px;
    color: #333;
}

/* Info left */
.umr-package-details .umr-info-left h5 {
    font-size: 30px;
    font-weight: 700;
    color: #286AA6;
    margin-bottom: 10px;
}

.umr-package-details .umr-info-left p {
    font-size: 16px;
    margin-bottom: 5px;
}

/* Country flag */
.umr-package-details .umr-country-flag {
    border-radius: 8px;
    border: 2px solid #ff6a00;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .umr-package-details .umr-card-body {
        text-align: center;
    }

    .umr-package-details .umr-info-left h5 {
        font-size: 18px;
    }

    .umr-package-details .umr-country-flag {
        margin-top: 15px;
    }
}

/* PREFIXED CSS WITH .modern-tabs-wrapper */
.modern-tabs-wrapper {
    margin-top: 2rem;
}

/* Nav */
.modern-tabs-wrapper .modern-tabs-nav {
    background: #286AA6;
    border-radius: 10px;
    padding: 5px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Nav items */
.modern-tabs-wrapper .modern-tabs-link {
    color: #fff;
    font-weight: 600;
    margin-right: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modern-tabs-wrapper .modern-tabs-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modern-tabs-wrapper .modern-tabs-link.active {
    background: #fff;
    color: #ff4c68;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Tab content */
.modern-tabs-wrapper .modern-tabs-content {
    background: #fff0f5;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    min-height: 200px;
    transition: all 0.3s;
}

/* Hide non-active tab panes */
.modern-tabs-wrapper .modern-tab-pane {
    display: none;
}

.modern-tabs-wrapper .modern-tab-pane.active {
    display: block;
}

.pack-details button {
    background: #286aa6;
    color: #fff;
}

/* Accordion Button */
.modern-accordion .modern-accordion-button {
    background: #e9a746;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

/* Icon rotation */
.modern-accordion .accordion-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.modern-accordion .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.modern-accordion .modern-accordion-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Day circle */
.modern-accordion .modern-day-circle {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #ff4c68;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Title */
.modern-accordion .modern-day-title {
    font-size: 1.1rem;
}


.modern-accordion .modern-day-wrapper {
    display: flex;
    align-items: center;
}

.modern-accordion .modern-accordion-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    position: absolute;
    left: 100%;
    background: #286aa6;
    height: 100%;
    display: flex;
    align-items: center;
    left: 97%;
    padding: 0 5px;
}

/* Rotate icon when open */
.modern-accordion .modern-accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

/* Rotate icon when open */
.modern-accordion .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

/* Accordion Body */
.modern-accordion .modern-accordion-body {
    background: #fff0f5;
    border-radius: 0 0 10px 10px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    overflow: hidden;
}

/* Body list style */
.modern-accordion .modern-accordion-body ul {
    padding-left: 20px;
}

.modern-accordion .modern-accordion-body li {
    margin-bottom: 8px;
}

.pack-details {
    position: sticky;
    top: 10px
}

.pack-details .contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.pack-details .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.pack-details .contact-item:hover {
    background: #ffe8f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.pack-details .contact-item .icon {
    width: 50px;
    height: 50px;
    /* background: linear-gradient(135deg, #ff758c, #ff7eb3); */
    border-radius: 50%;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* color: #fff; */
    font-size: 20px;
    /* margin-right: 15px; */
}

.pack-details .contact-item .info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.pack-details .contact-item .info a {
    display: block;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.pack-details .contact-item .info a:hover {
    color: #ff4c68;
}

/* Pagination dots base */
.pkg-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Active dot */
.pkg-swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    height: 10px;
    background: linear-gradient(135deg, #ff4c68, #ff7eb3);
    border-radius: 20px;
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 126, 179, 0.6);
    transform: scale(1.1);
}

.pkg-swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    text-align: center;
}

.subscription-section {
    color: #333;
    overflow: hidden;
    padding: 80px 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

.subscription-card {
    position: relative;
    z-index: 1;
    background: #ffffff;
    /* plain white card */
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.subscription-card h2 {
    font-weight: 700;
    color: #222;
}

.subscription-card p {
    color: #555;
    font-size: 1rem;
}

.subscription-form input[type="email"] {
    border-radius: 50px;
    padding: 15px 20px;
    border: 1px solid #ccc;
}

.subscription-form .subscribe-btn {
    background: linear-gradient(90deg, #6fcf97, #66d7d1);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.subscription-form .subscribe-btn:hover {
    background: linear-gradient(90deg, #66d7d1, #6fcf97);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-icon a {
    padding: 10px;
}

.country-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease;
}

.country-card:hover {
    transform: translateY(-8px);
}

.country-card .img-wrap {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.country-card img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
    object-fit: cover;
}

/* Image zoom on hover */
.country-card:hover img {
    transform: scale(1.15);
}

.country-card h4 {
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.booking-form {
    background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #a1c4fd, #c2e9fb);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
}

/* Animation Keyframes */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.tour-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

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

.tour-image {
    flex: 1;
    max-width: 220px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.tour-content {
    flex: 2;
    padding: 20px;
}

.tour-content h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.tour-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 15px 0;
}

.tour-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
}

.tour-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00bfa6;
}

.tour-tags span {
    background-color: #e0f7f5;
    color: #00897b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
}

@media (max-width: 767px) {
    .tour-card {
        flex-direction: column;
    }

    .tour-image {
        max-width: 100%;
        height: 200px;
    }

    .tour-image img {
        border-radius: 15px 15px 0 0;
    }

    .tour-content {
        padding: 15px;
    }
}

.tour-card.animate-card.d-flex.flex-column.flex-md-row {
    transition: all .5s ease-in-out;
}

.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.package-card .img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.package-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.package-card:hover img {
    transform: scale(1.15);
}

/* Package Name Overlay - always visible */
.package-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 0;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 1;
    /* Always visible */
}


#scrollUp {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #E9A746;
    color: #fff;
}
