.attraction-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.attraction-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover img {
    transform: scale(1.1);
}

.attraction-title {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* custom class for 5 columns */
@media (min-width: 992px) {

    /* lg screen and above */
    .col-lg-5th {
        flex: 0 0 20%;
        max-width: 20%;
    }
}




.tour-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.tour-card img {
    width: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px;
}

.package-name {
    background-color: #0ea5e9;
    /* sky blue */
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 8px;
}

.btn-orange {
    background-color: #f97316;
    /* orange */
    color: #fff;
}

.btn-orange:hover {
    background-color: #ea580c;
    color: #fff;
}

.Plan-your-trip {
    background-color: #b6ebeb;
}


.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-card p {
    color: #0284c7;
    /* sky blue text */
    font-size: 1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.reviewer h6 {
    margin: 0;
    font-weight: 600;
    color: #0284c7;
}

.reviewer small {
    color: #666;
}

.stars {
    color: #f97316;
    /* orange stars */
    margin-bottom: 10px;
}

/* Animation */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-right {
    animation: slideInRight 1s ease-out forwards;
}

.info-box {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box i {
    font-size: 32px;
    color: #0ea5e9;
    /* sky blue */
}

.highlight-text {
    color: #f97316;
    /* orange red heading */
}

.circle-badge {
    width: 120px;
    height: 120px;
    background-color: #0ea5e9;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.image-container {
    position: relative;
    display: inline-block;
}



.gallery-section h2 {
    color: #e74c3c;
    /* red heading */
    font-weight: 700;
}

.gallery-section p {
    color: #0ea5e9;
    /* sky blue italic subheading */
    font-style: italic;
}

.gallery-img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.btn-custom {
    background: white;
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #0ea5e9;
    color: white;
}

.container {
    max-width: 1250px !important;
}





.section-subtitle {
    color: #0ea5e9;
    /* sky blue italic */
    font-style: italic;
}

.section-title {
    color: #e74c3c;
    font-weight: 700;
}

.travel-section {
    margin-left: 50px;
    margin-right: 50px;
}

.travel-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 50% / 30%;
    /* Oval shape */
    border: 4px solid #0ea5e9;
    transition: transform 0.3s ease;
}

.travel-img:hover {
    transform: scale(1.05);
}

.city-name {
    margin-top: 12px;
    font-weight: 500;
    font-size: 1.2rem;
}

.btn-custom {
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #c0392b;
    color: #fff !important;
}


.accordion-item {
    width: 100%;
}

.faq-section {
    padding: 60px 50px;
    display: flex;
    padding: 60px;
    justify-content: center;

}

.faq-title {
    font-weight: 700px;
    margin-right: 30px;
    color: #e74c3c;
    /* red heading */
}

.faq-subtitle {
    color: #0ea5e9;
    /* sky blue */
}

.accordion-button {
    color: #0ea5e9;
    font-weight: 500;
    background: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #e74c3c;
    /* active red */
    background: #fdf2f2;
}

.accordion-body {
    font-size: 0.95rem;
    color: #444;
}


.blog-section {
    padding: 60px 50px;
}
.blog-subtitle {
    color: #0ea5e9;
}
.b-subtitle .blog-subtitle {
    color: #0ea5e9;
    font-size: 40px;
    font-family: 'Brush Script MT', cursive;
}
/* .blog-subtitle p {
    color: #0ea5e9;
    font-size: 40px;
    font-family: 'Brush Script MT', cursive;
} */

@media screen and (max-width:768px) {
    .blog-subtitle {
        font-size: 16px;
    }
    .headline-red1 {
    font-size: 25px !important;
    }
}



.blog-title {
    font-weight: 700;
    color: #e74c3c;
    font-size: 2.2rem;
}

.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}


.blog-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    animation-name: example;
    animation-duration: 0.25s;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-left: 5px solid rgb(206, 0, 2);
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-meta span {
    font-size: 0.9rem;
    color: #6c757d;
    margin-right: 10px;
}

.blog-meta i {
    color: #0ea5e9;
    margin-right: 5px;
}

.blog-card h5 {
    color: #e74c3c;
    font-weight: 600;
    margin-top: 15px;
    min-height: 48px;
}

.blog-card p {
    font-size: 0.95rem;
    color: #444;
}

.read-more {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #0ea5e9;
}


.Tours a {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    margin-left: 20px;
    text-decoration: none;
}



/* Accordion button background aur text */
.accordion-button {
    background-color: #f8f9fa;
    /* halka gray */
    font-size: 18px;
    font-weight: 600;
    color: #0d6efd;
    /* bootstrap primary blue */
}

/* Hover pe text white aur background blue */
.accordion-button:hover {
    background-color: #0d6efd;
    color: #fff;
}

/* Accordion open hone par bhi styling */
.accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: #fff;
    box-shadow: none;
}

/* Accordion body styling */
.accordion-body {
    font-size: 16px;
    line-height: 1.6;
    background-color: #fdfdfd;
    border-left: 4px solid #0d6efd;
    padding: 20px;
    border-radius: 5px;
}






.blog-categories-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 300px;
    overflow: hidden;
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #ff5757;
    /* The red color from the image */
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-item:hover {
    color: #ff5757;
}

.category-name {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
}

/* The right-pointing arrow symbol */
.category-name::before {
    content: '›';
    font-size: 1.5em;
    margin-right: 8px;
    transform: rotate(90deg);
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.category-item:hover .category-name::before {
    color: #ff5757;
}

.category-count {
    background-color: #f0f0f0;
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 12px;
}



.search-box-1 {
    border-bottom: #00b4d8 5px solid black;
    background: #fff;
    width: 280px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-box-1 h3 {
    color: #e74c3c;
    font-size: 18px;
    margin-bottom: 10px;
}

.divider {
    height: 1px;
    background: #ddd;
    margin: 10px 0 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #3498db;
}

.search-btn {
    width: 100%;
    padding: 12px;
    background: #00b4d8;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.search-btn:hover {
    background: #0096c7;
}




.filter-box {
    background: #fff;
    width: 280px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-box h3 {
    color: #e74c3c;
    font-size: 18px;
    margin-bottom: 10px;
}

.divider {
    height: 1px;
    background: #ddd;
    margin: 15px 0;
}

.filter-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #e74c3c;
}

.filter-option {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

input[type="checkbox"] {
    transform: scale(1.1);
    cursor: pointer;
}

.price-range {
    margin: 10px 0;
}

.price-values {
    font-size: 14px;
    margin-top: 8px;
}

.stars {
    color: limegreen;
    font-size: 16px;
}







.search-box {
    background: #fff;
    width: 280px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-box label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 6px;
}

.search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    margin-bottom: 12px;
}

.search-input:focus {
    border-color: #3498db;
}

.search-btn {
    width: 100%;
    padding: 12px;
    background: #00b4d8;
    color: #000;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.search-btn:hover {
    background: #0096c7;
    color: #fff;
}


.rating i {
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
}

.rating i.active {
    color: #f39c12;
}







.content-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar .content-box h4 {
    color: #e63946;
}

.btn-search {
    background-color: #00b4d8;
    font-weight: bold;
    color: #000;
    width: 100%;
}

.btn-search:hover {
    background-color: #0096c7;
    color: #fff;
}



.card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.arrow {
    font-size: 20px;
    color: gray;
    transition: color 0.3s ease;
}

.prev {
    font-size: 12px;
    color: #6bb6e8;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.title {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
    /* red */
    transition: color 0.3s ease;
}

/* Hover effect */
/* .card:hover {
    background: #3498db;
} */

.card:hover .arrow,
.card:hover .prev,
.card:hover .title {
    color: #fff;
    /* text becomes white */
}





.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 33%);
    margin-bottom: 30px;
}

.sidebar-title {
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 15px;
}

.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.recent-post img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    padding-bottom: 10px;
    margin-right: 10px;
}

.recent-post h6 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    color: #333;
}

.recent-post small {
    font-size: 12px;
    color: #45d4ff;
}

.tag-badge {
    display: inline-block;
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin: 5px 5px 0 0;
    color: #333;
    text-decoration: none;
}

.tag-badge:hover {
    background: #45d7ff;
    color: #fff;
}


.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    z-index: 9999;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, opacity .2s;
    opacity: 0.95;
    animation: wapp-pulse 2.2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    opacity: 1;
}



@keyframes wapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Optional: hide on very small screens if needed */
@media (max-width: 360px) {
    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        width: 52px;
        height: 52px;
    }
}


.phone-float {
    position: fixed;
    bottom: 40px;
    /* WhatsApp button ke upar chahiye to thoda upar rakha */
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0A84FF;
    /* iOS blue / change as you like */
    margin-left: 20px;
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    z-index: 9999;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, opacity .2s;
    opacity: 0.95;
    font-family: Arial, sans-serif;
}

.phone-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    opacity: 1;
}

.phone-text {
    font-size: 15px;
    line-height: 1;
}


/* Carousel heading */
.heading {
    display: block;
    text-align: center;
}

/* Container for the entire carousel */
.multi-carousel-container {
    cursor: grab;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

/* Cursor styles for dragging */
.multi-carousel-container.dragging,
#multiCarousel.dragging {
    cursor: grabbing;
}

/* Wrapper for all slides */
.multi-carousel-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual slide */
.multi-carousel-item,
.clone {
    box-sizing: border-box;
    flex: 0 0 33.333333%;
    padding: 0 5px;
    position: relative;
    /* Essential for item-number positioning */
}

/* Control buttons */
.multi-carousel-control-prev,
.multi-carousel-control-next {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    text-decoration: none;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    width: 40px;
    z-index: 10;
}

.multi-carousel-control-prev:hover,
.multi-carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.multi-carousel-control-prev {
    left: 10px;
}

.multi-carousel-control-next {
    right: 10px;
}

/* Image container with dynamic height */
.img-container {
    border-radius: 1.5rem;
    height: var(--carousel-height, 80vh);
    overflow: hidden;
    position: relative;
}

/* Image styling */
.img-container img,
#carouselInner img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    pointer-events: none;
    user-drag: none;
    width: 100%;
    -webkit-user-drag: none;
    transition: transform 0.3s ease;
}

.img-container:hover img {
    transform: translateZ(0) scale(1.02);
}

/* Item number styling - guaranteed visibility */
.item-number {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    display: inline-flex;
    font-size: 120%;
    font-weight: bold;
    height: 35px;
    justify-content: center;
    left: 1rem;
    position: absolute;
    top: 1rem;
    width: 35px;
    z-index: 2;
    /* Higher than default but below controls */
    /* Isolation prevents z-index context issues */
    isolation: isolate;
}

/* Carousel cursor styling */
#multiCarousel {
    cursor: grab;
    touch-action: pan-y;
}

/* Disable text selection during drag */
#multiCarousel.dragging {
    user-select: none;
    -webkit-user-select: none;
}

/* Responsive adjustments for screens smaller than 720px (45em) */
@media (max-width: 45em) {

    .multi-carousel-item,
    .clone {
        flex: 0 0 100%;
    }
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #4daae9;
    font-weight: bold;
}

.carousel-item {
    text-align: center;
    padding: 40px 60px;
}

.testimonial {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
}

.author {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}


h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #4daae9;
    font-weight: bold;
}

.accordion-button {
    font-weight: 600;
    color: #1c9cd6;
}

.accordion-button:not(.collapsed) {
    color: #e74c3c;
    /* Red when opened */
    background-color: #f9f9f9;
}

.accordion-body {
    font-size: 1rem;
    color: #555;
}


.carousel-item {
    height: 100vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.carousel-caption {
    position: absolute;
    top: 30%;
    left: 10%;
    text-align: left;
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight: bold;
    padding-bottom: 450px;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.btn-explore {
    background: #ff5c00;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 25px;
    margin-top: 20px;
    text-transform: uppercase;
}

.carousel-indicators [data-bs-target] {
    background-color: #ff5c00;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    align-items: center;
}

.carousel-indicators .active {
    /* background-color: #000; */
}

/* /////////////////////// */
.why-us {
    padding: 60px 20px;
}

.why-title {
    color: #1296db;
    font-size: 32px;
    margin-bottom: 30px;
}

.why-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.why-left {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.why-left img {
    width: 100%;
    border-radius: 12px;
}

.call-btn {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    cursor: pointer;
}

.why-right {
    flex: 1;
    min-width: 300px;
}

.about-sub {
    color: #1296db;
    font-style: italic;
    font-size: 20px;
    margin-bottom: 10px;
}

.about-title {
    color: #e74c3c;
    font-size: 32px;
    margin-bottom: 20px;
}

.why-right p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #1296db;
    border-radius: 8px;
    text-decoration: none;
    color: #1296db;
    font-weight: bold;
}

******************** body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fdf9f6 url('background-pattern.png') no-repeat center center;
    background-size: cover;
    color: #333;
}

.section {
    text-align: center;
    padding: 60px 20px;
}

.section h3 {
    font-style: italic;
    color: #0094d9;
    margin-bottom: 10px;
    font-size: 22px;
}

.section h1 {
    font-size: 38px;
    color: #e74c3c;
    margin-bottom: 50px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.icon img {
    width: 28px;
    height: 28px;
}

.text h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #e74c3c;
}

.text p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


.hero {
    position: relative;
    background: url('/aurangabadtrips/images/aurangabad.jpg') no-repeat center center/cover;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    color: #fff;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 50, 0.55);
    /* blue transparent overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: left;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #6cd2ff;
    /* light blue text */
}

********* .gallery-section {
    padding: 60px 20px;
    background: #fff;
}

.gallery-heading {
    text-align: center;
    /* heading block ko center */
    margin-bottom: 40px;
}

.gallery-sub {
    font-size: 20px;
    color: #1296db;
    font-style: italic;
    margin-bottom: 10px;
}

.gallery-title {
    font-size: 32px;
    color: #e74c3c;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-wrapper {
    text-align: center;
}

.gallery-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #1296db;
    border-radius: 8px;
    text-decoration: none;
    color: #1296db;
    font-weight: bold;
    transition: 0.3s;
}

.gallery-btn:hover {
    background: #1296db;
    color: #fff;
}


.testimonials {
    text-align: center;
    padding: 60px 20px;
}

.testimonials h3 {
    color: #1296db;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonials h2 {
    font-size: 32px;
    color: #e74c3c;
    margin-bottom: 30px;
}

.testimonial-container {
    max-width: 800px;
    margin: auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fade 1s;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide p {
    font-size: 20px;
    line-height: 1.6;
    color: #1296db;
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author .icon {
    font-size: 28px;
    background: #1296db;
    color: #fff;
    border-radius: 50%;
    padding: 12px;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    margin: 0;
    color: #1296db;
}

.stars {
    color: #e67e22;
}

.dots {
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #1296db;
}

/* Animations */
@keyframes fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

.call-btn,
.chat-btn {
    position: fixed;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 50px;
    padding: 10px 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.call-btn {
    left: 20px;
    color: #333;
}

.chat-btn {
    right: 20px;
    color: #25D366;
}

.call-btn img,
.chat-btn img {
    width: 28px;
    height: 28px;
}

@media screen and (max-width:768px) {
    .contact-section {
        padding: 0px !important;
        background: #fff;
    }
}

.contact-section {
    padding: 60px 10%;
    background: #fff;
}


.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Side */
.contact-info {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.info-box:last-child {
    border-bottom: none;
}

.info-box i {
    font-size: 22px;
    color: #1296db;
    margin-right: 12px;
}

.info-box h4 {
    color: #e74c3c;
    margin: 0 0 5px;
    font-size: 18px;
}

.info-box p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

.info-box a {
    text-decoration: none;
    color: #1296db;
}

/* Right Side */
.contact-form {
    flex: 1;
}

.contact-form h2 {
    color: #e74c3c;
    margin-bottom: 10px;
}

.contact-form h2 span {
    color: #333;
}

.contact-form p {
    margin-bottom: 20px;
    color: #555;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1296db;
}

.contact-form button {
    padding: 12px;
    border: none;
    background: linear-gradient(to bottom, #ff2441, #3d0e14);
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    width: 200px;
}

.contact-form button:hover {
    background: linear-gradient(to bottom, #3d0e14, #ff2441);
}


.map-section {
    padding: 40px 0;
    /* margin: 40px 0; */
    margin-left: 40px;
    margin-right: 40px;
}

.map-container {
    width: 100%;
    height: 450px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* @media screen and (max-width:768px) {
    .map-section {
    padding: 40px 0;
    margin-left: 40px;
    margin-right: 40px;
}
} */
/* ********* .container {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
} */

.left-panel {
    background-color: #fcf6f4;
    padding: 40px;
    width: 40%;
    position: relative;
    z-index: 1;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><path fill="none" stroke="%23ebd5d1" stroke-width="1.5" d="M -5 100 C 100 100, 100 -5, 200 -5" /></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.8;
    z-index: -1;
}

.left-panel h1 {
    color: #e65248;
    font-size: 2.5em;
    font-weight: bold;
    margin-top: 0;
}

.left-panel p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

.right-panel {
    padding: 40px;
    width: 60%;
}

.right-panel h2 {
    color: #e65248;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
}

.faq-question span {
    background-color: #f7f3f1;
    color: #e65248;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question h3 {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.faq-item p {
    color: #666;
    margin-left: 40px;
    margin-top: 10px;
    line-height: 1.5;
}

.footer-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.call-now-btn,
.chat-btn {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    pointer-events: auto;
}

.call-now-btn {
    background-color: #007bff;
    color: #fff;
}

.chat-btn {
    background-color: #28a745;
    color: #fff;
}

/* ////////////////////////// */




.call-btn-1 {
    width: 190px;
    background: linear-gradient(to bottom, #ff0000, #4e000b);
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.call-btn-1:hover {
    color: #fff;
    background: linear-gradient(to bottom, #4e000b, #ff0000);
    /* blue */
}

.call-btn-1 i {
    margin-right: 8px;
}


.red-btn {
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #720101;
    font-size: 15px;
    background: linear-gradient(to bottom, #ff0000, #4e000b);
    color: #fff;
}


.red-btn:hover {
    background: linear-gradient(to bottom, #4e000b, #ff0000);
    color: #fff;
}






/* Left Side */
.faq-left {
    flex: 1;
    padding-right: 40px;
}

.faq-left h2 {
    color: #e74c3c;
    /* Red */
    font-size: 40px;
    margin-bottom: 20px;
}

.faq-left p {
    line-height: 1.6;
    color: #555;
    font-size: 20px;
}

/* Right Side */
.faq-right {
    flex: 2;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    color: #e74c3c;
    font-size: 23px;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    color: #007bff;
    font-weight: bold;
}

.faq-question i {
    margin-right: 10px;
    color: #007bff;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 20px;
    color: #444;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    display: block;
}




.container {
    max-width: 900px;
}

.privacy-section {
    padding: 2rem 0;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17a2b8;
    text-align: left;
    /* A shade of blue similar to the image */
}

.privacy-section h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #17a2b8;
}

.privacy-section p,
.privacy-section li {
    font-size: 1.5rem;
    line-height: 1.6;
}

.privacy-section .list-unstyled li {
    margin-bottom: 10px;
}

.text-muted {
    font-size: 0.90rem;
}


.carousel-item {
    height: 100%;
}

/* Vertical sliding effect */
.carousel.vertical .carousel-item-next,
.carousel.vertical .active.carousel-item-end {
    transform: translateY(100%);
}

.carousel.vertical .carousel-item-prev,
.carousel.vertical .active.carousel-item-start {
    transform: translateY(-100%);
}

.carousel.vertical .carousel-item-next.carousel-item-start,
.carousel.vertical .carousel-item-prev.carousel-item-end {
    transform: translateY(0);
}

/* Smooth custom animation */
.carousel-item {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

/* Fade-in/out effect */
.carousel-item img {
    animation: fadeZoom 1s ease-in-out;
}

@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Indicators vertical */
.carousel.vertical .carousel-indicators {
    flex-direction: column;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
}

/*  */
@media screen and (max-width:768px) {
    .navbar-brand img {
        margin-left: 0 !important;
    }
}

.testimonial-Carousel .carousel-item {

    min-height: 0px !important;
}