@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #B24648;
    --secondary-color: #021641;
    --heading-color: #FDE1C6;
}




/* .container {
    max-width: 1450px;
    padding-inline: 30px;
} */

body {
    font-family: "Nunito", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

.top-bar {
    background: #8d2d2c;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
    font-family: "Nunito", sans-serif;
}

.top-bar a {
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
}

.top-bar .social-icons a {
    margin-right: 12px;
    font-size: 15px;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Header */
.main-header {
    background: #fff;
    font-family: "Nunito", sans-serif;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #000 !important;
    margin: 0 10px;
    font-size: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #8d2d2c !important;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.search-box input {
    border-radius: 50px;
    padding-left: 20px;
    padding-right: 50px;
    border: 1px solid #a94442;
    height: 40px;
    font-size: 14px;
}

.search-box input:focus {
    box-shadow: none;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: #a94442;
    border: none;
    border-radius: 0 50px 50px 0;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.search-box button:hover {
    background: var(--secondary-color);
}

.btn-login {
    margin: 0 10px;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
}

.btn-login i {
    margin-left: 5px;
    color: white;
    background: var(--primary-color);
    padding: 7px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
}

.btn-book {
    background: #0b1c3d;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-book:hover {
    background: var(--primary-color);
    color: #fff;
}

.logo img {
    max-height: 70px;
}


.Hero-section {
    min-height: 82dvh;
    color: white;
    place-content: center;
    position: relative;
}

.Hero-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right,
            rgba(1, 22, 64, 0.7) 0%,
            rgba(15, 15, 15, 0.12) 100%);
}

.hero-content {
    max-width: 50%;
}

.sub-title {
    font-weight: 600;
}

.Hero-section h1 {
    font-size: 50px;
    color: var(--heading-color);
    font-weight: 700;
    text-transform: uppercase;
}

.learn_more {
    color: #fff;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    background: var(--primary-color);
}

.learn_more:hover {
    background: white;
    color: var(--primary-color);
}

.title-wrapper span {
    text-transform: uppercase;
    color: var(--secondary-color);
}

.title-wrapper h2 {
    font-size: 45px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 800;
}

/* about-us-section  */

.about-us-section {
    background: var(--heading-color);
    padding: 2rem 0;
    padding-top: 0;
    margin-top: 7rem;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-wrapper img {
    border-radius: 10px;
    transition: transform 0.4s ease;
    /* smooth zoom */
}

.image-wrapper img:hover {
    transform: scale(1.2);
}

.about-us-section .image-wrapper {
    margin-top: -5rem;
    margin-bottom: 1rem;
}

.about-counter {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.about-counter div {
    flex: 1;
}

.about-counter img {
    height: 60px;
}

.about-counter h4 {
    font-weight: 700;
    color: var(--secondary-color);
}

.about-us-section .learn_more:hover {
    background: var(--secondary-color);
    color: white;
}

/* about-us-section end */
.service-box {
    background: var(--heading-color);
    padding: 20px;
    border-radius: 14px;
    height: 100%;
    /* make it equal height too */

}

.image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    flex: 1;
}

/* actual image layer */
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    display: block;
}

/* scale image on hover */
.image-card:hover img {
    transform: scale(1.2);
}

/* gradient overlay (hidden by default) */
.image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #021641bf;
    z-index: 1;
    opacity: 0;
    transition: opacity .4s ease;
}

/* show gradient on hover */
.image-card:hover::before {
    opacity: 1;
}

.image-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    /* stays above image & gradient */
}

.image-card h5 {
    margin: 0;
    font-weight: 600;
    font-family: "Nunito", sans-serif;
}

.image-card p {
    font-size: 14px;
    margin: 5px 0 0;
}

.image-card .icon img {
    width: 47px;
    margin-bottom: 0.3rem;
    display: block;
    padding: 5px;
    height: auto;
    z-index: 3;
    position: relative;
}

.image-card .arrow {
    font-size: 18px;
    background: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 28px;
    padding: 6px;
    transition: background .3s;
    z-index: 3;
}

.image-card:hover .arrow {
    background: white;
    color: #000;
}


/* Testimonial css */

.testimonial_slider .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

.testimonial_slider .owl-item {
    display: flex !important;
    height: auto !important;
}

.testimonial_slider .item {
    display: flex;
    flex: 1 1 auto;
}

.testimonial_slider {
    padding: 2rem 0;
}

.testimonial-card {
    background: #fde1c675;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    transition: all .3s;
}

.testimonial-card:hover {
    background: var(--secondary-color);
    color: white;
}



.testimonial-card .info {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #bfbfbf;
    padding: 5px 0;
}

.quote-img {
    width: 40px !important;
    filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(-20deg) saturate(600%) brightness(90%) opacity(0.3);
    height: 40px;
}

.testimonial-card:hover .quote-img {

    filter: none;
}

.info img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
}


.testimonial-nav {
    display: flex;
    gap: 10px;
}

.testimonial-nav button {
    background: var(--primary-color);
    border: none;
    width: 40px;
    color: white;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-nav button:hover {
    background: var(--secondary-color);
}

.testimonial-nav i {
    font-size: 18px;
    color: white;
}


.testimonial-card p {
    margin: 1rem 0;
    font-size: 18px;
}

.progressbar-wrapper {
    width: 100%;
    height: 5px;
    background: #ddd;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 1rem;
    padding: 0;
}

.progressbar {
    height: 100%;
    width: 0%;
    background: var(--secondary-color, #f78c40);
}

.testimonial-section {
    padding: 2rem 0;
}

.latest-blog-sec {
    background: white;
    padding: 2rem 0;
}


.latest-blog-slider .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

.latest-blog-slider .owl-item {
    display: flex !important;
    height: auto !important;
}

.latest-blog-slider .item {
    display: flex;
    flex: 1 1 auto;
    height: auto;
}

.blog-card {
    background: #fde1c675;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    background: var(--secondary-color);
}


.blog-card:hover h5,
.blog-card:hover p {
    color: white;
}

.latest-blog-slider .owl-stage {
    padding: 2rem 0;
}

.blog-card h5 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.blog-card p {
    flex-grow: 1;
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.blog-img {
    margin-top: auto;
    text-align: center;
    position: relative;
}

.blog-img img {
    max-width: 100%;
    border-radius: 8px;
}

a.arrow-imgs img {
    width: 25px !important;
}

.arrow-imgs {
    background: var(--primary-color);
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px;
    border: 4px solid #fef1e5;
    border-right: 0;
    border-bottom: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}


.newsletter-sec {
    position: relative;
    background: #fdf5f0;
    /* light background */
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

/* Left image */
.newsletter-sec::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    bottom: 0;
    width: 30%;
    background: url(../img/newsletter-left.png) no-repeat left center;
    background-size: contain;
    opacity: 0.9;
    pointer-events: none;
    height: 100%;
}

.newsletter-sec::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background: url("../img/newsletter-right.png") no-repeat right center;
    background-size: contain;
    opacity: 0.9;
    pointer-events: none;
}


.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
}

.icon-msg img {
    width: 40px;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #444;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
}

.newsletter-form button {
    background: #b24648;
    color: #fff;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #922f32;
}


.top-footer {
    background: #b24648;
    color: #fff;
    padding: 15px 0;
}

.contact-top {
    display: flex;
    justify-content: space-between;
}

.contact-top .col {
    flex: 1;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.contact-top i {
    font-size: 20px;
    margin-bottom: 5px;
    display: block;
}

/* Main Footer */
.main-footer {
    background: var(--secondary-color);
    /* navy blue */
    color: #fff;
    padding: 40px 20px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-widgets h5 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FDE1C6;
}

.footer-widgets ul {
    list-style: inside;
    padding: 0;
    margin: 0;
}

.footer-widgets ul li {
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-widgets ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-widgets ul li a:hover {
    text-decoration: underline;
}

.contact-info i {
    margin-right: 8px;
    /* border: 1px solid white; */
    padding: 4px;
    width: 27px;
    text-align: center;
}

.contact-info {
    list-style: none !important;
}

.contact-info li {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    align-items: center;
}

/* Bottom Footer */
.bottom-footer {
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 300;
    font-size: 16px;
}

.bottom-footer a {
    color: #FDE1C6;
    text-decoration: none;
}

.bottom-footer a:hover {
    text-decoration: underline;
}

.bottom-footer p {
    margin: 0;
    padding: 0;
    color: #FDE1C6;
    font-weight: 300;
}

/* Added by Kousik */
.inner-hero {
    position: relative;
    padding: 100px 0;
    color: #fff;
}

.inner-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.inner-hero .inner-hero-content {
    position: relative;
    z-index: 2;
}

.top-footer a {
    color: white;
}

section.newsletter-sec .gjs-cell {
    border-radius: 56px;
    border: 1px solid #928392;
    margin: 0 auto;
    display: flex;

}

section.newsletter-sec form[data-form-id="3"] .es-form-field-container .gjs-cell {
    flex-grow: inherit;
    flex-basis: 500px;
    overflow: hidden;
}

section.newsletter-sec input#esfpx_email_0fe74ada6116e {
    flex: 1;
}

section.newsletter-sec input[type="submit"] {
    background: var(--primary-color);
    color: white;
    transition: .3s;
}

section.newsletter-sec input[type="submit"]:hover {
    background: var(--secondary-color);
}


section.newsletter-sec input {
    padding: 6px 25px;
    border: none;
    outline: none;
}


.breadcrumbs a {
    color: #ffe1e1;
}

.list-group.list-group-flush li a {
    color: #000000db;
}

.card-img-top img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.faq-accordion .accordion-button {
    background-color: #fff;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-accordion .accordion-button:hover {
    background-color: #f1f3f5;
}

.faq-accordion .accordion-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.faq-accordion .accordion-item {
    border-radius: 0.75rem;
    overflow: hidden;
}

/* .accordion-button {
    border: 1px solid #a7a7a7cc;
    border-radius: 15px;
    overflow: hidden;
} */

.contact-forms {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 20px;
    border-radius: 20px;
}

.service-img img {
    max-height: 300px;
}

.contact-form form p {
    margin-bottom: 1rem;
}




.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: none;
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Submit button */
.contact-form input[type="submit"] {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background-color: var(--secondary-color);
}

.contact-page a {
    color: var(--secondary-color);
}


.services-section .card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-flow: wrap;
}

.card-footer P {
    flex: 1;
}

.es_subscription_message.success {
    font-weight: 600;
}
span.sub-heading {
    margin: 1rem;
    display: inline-block;
}
/* Responsive css */
@media (max-width: 1024px) {
    .newsletter-sec::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .search-box-wrapper {
        margin-top: 15px;
        flex-direction: column;
        width: 100%;
    }

    .search-box {
        max-width: 400px;
        margin-bottom: 10px;
    }

    .btn-login,
    .btn-book {
        font-size: 13px;
    }

    header .btn-book {
        max-width: 120px;
    }

    .title-wrapper h2 {
        font-size: 28px;
    }


    .about-counter img {
        height: 45px;
    }

    .footer-widgets {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-us-section .image-wrapper {
        margin-top: 0;
        margin-bottom: 0;
    }

    .about-us-section {
        padding: 1rem 0;
        margin: 0;
    }

    .newsletter-content {
        padding: 43px 0;
    }

    .Hero-section h1 {
        font-size: 40px;
    }

    .card-footer {
        text-align: center;
        flex-direction: column;
    }



    .newsletter-content p {
        color: black;
    }

    .newsletter-sec::after {
        width: 50%;
        background-size: cover;
        opacity: 0.5;
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-top {
        flex-direction: column;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-widgets ul {
        text-align: left;
    }

    .footer-widgets h5 {
        text-align: left;
    }

    .testimonial-nav {
        margin: 1rem 0;
    }

    .newsletter-sec {
        padding: 10px 0;
    }

    .icon-msg img {
        width: 30px;
        margin: 1rem;
    }

    .title-wrapper h2 {
        font-size: 22px;
    }

    .newsletter-content p {
        font-size: 14px;
    }

    .contact-top .col {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width:600px) {
    .newsletter-content {
        padding: 0 0;
    }
}

@media (max-width:600px) {
    section.newsletter-sec form[data-form-id="3"] .es-form-field-container .gjs-cell {
        flex-basis: auto;
    }

    .Hero-section {
        min-height: 450px;
    }

    .top-bar .container {
        flex-direction: column;
        padding: 0;
        font-size: 11px;
    }

    section.newsletter-sec input#esfpx_email_0fe74ada6116e {
        width: 100%;
        border: 1px solid #bbafaf;
        border-radius: 19px;
        margin-bottom: 1rem;
    }

    section.newsletter-sec input[type="submit"] {
        border-radius: 19px;
    }

    section.newsletter-sec .gjs-cell {
        border: none;
        margin: 0;
        display: block;

    }

    section.newsletter-sec form[data-form-id="3"] .es-form-field-container .gjs-cell {
        flex-basis: auto;
        flex-direction: column;
        border-radius: 0;

    }

    .about-counter img {
        height: 40px;
        width: 40px;
        object-fit: contain;
    }

    .about-counter h4 {
        margin: 0;
    }

}


@media (max-width:480px) {
    .bottom-footer p {
        font-size: 10px;
    }

    .title-wrapper h2 {
        font-size: 20px;
    }

    .about-counter {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width:350px) {
    :root {
        font-size: 10px;
    }

    .main-footer a,
    .main-footer p {
        font-size: 12px;
    }

}