* {
    margin: 0;
    padding: 0;
    font-family: "Merriweather", serif !important;
}

html body {
    overflow-x: hidden;
}

.navbar {
    background-color: #2c2f36 !important;
    position: sticky !important;
    z-index: 10 !important;
    top: 0;
    left: 0;
    width: 100%;
}

.navbar-nav {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}

.navbar-nav a {
    font-size: 1.3rem;
    font-weight: 600;
    color: white !important;
    border: 2px solid transparent;
    padding: 0.5rem 1.5rem !important;
    transition: 0.5s all ease;
}

.navbar-nav a:hover {
    border-color: white;
    border-radius: 2rem;
}

.navbar-brand {
    width: 20%;
    text-align: right;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    transition: 0.5s all ease;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.banner-img {
    width: 20%;
    display: flex;
    justify-content: center;
    z-index: 5 !important;
}

.banner-img img {
    height: 4rem;
    margin-left: 2rem;
}

.navbar-nav {
    /* background-color: red; */
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    padding-right: 3rem;
}

#overview,
#gallery,
#features,
#location {
    scroll-margin-top: 80px;
    /* or height of your navbar */
}

#contact {
    scroll-margin-top: 95px;
    /* or height of your navbar */
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 80px;
        left: -250px;
        /* Hidden off-screen */
        width: 250px;
        height: 100vh;
        background-color: #2c2f36;
        /* Match your navbar background */
        padding-top: 1.5rem;
        transition: left 0.3s ease-in-out;
        z-index: 1050;
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-collapse.show {
        left: 0;
    }
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        padding-left: 2rem;
        gap: 1.5rem !important;
    }
    .navbar-nav a {
        padding: 0.5rem 1.5rem !important;
        /* width: 100%; */
    }
    .navbar-toggler {
        z-index: 1060;
    }
}

.background-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.background-slider::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: rgba(0, 0, 0, 0.735); */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.786), rgba(0, 0, 0, 0.786), rgba(0, 0, 0, 0.082), rgba(0, 0, 0, 0.082));
    z-index: 2;
}

@media screen and (max-width:1100px) {
    .navbar-nav {
        width: 100%;
    }
}

@media screen and (max-width:991px) {
    .banner-img {
        width: 40%;
    }
}


/* --------------Home------------------------- */

.hero-container {
    color: #fff;
    /* min-height: 100vh; */
    display: flex;
    /* align-items: center; */
    padding: 3rem 4rem;
}

.hero-content {
    z-index: 6;
    /* max-width: 550px; */
    width: 50%;
    /* background-color: rgba(0, 0, 0, 0.655); */
    padding: 1.5rem 1rem;
    border-radius: 2rem;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight {
    /* color: #cc0000;
    color: white; */
    background-color: rgba(255, 255, 255, 0.53);
    padding: 2px 6px;
    margin-left: 0.2rem;
    border-radius: 4px;
    font-size: 1.7rem;
    font-weight: 700;
    color: #cc0000;
    display: block;
    /* width: 15rem; */
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    animation: scaleLoop 2s infinite ease-in-out;
}

@keyframes scaleLoop {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ffC300;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.cta-button {
    /* background-color: #00e0b8; */
    background-color: #FFC300;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    font-weight: bolder;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
    /* text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; */
}

@media screen and (max-width:1300px) {
    .background-slider {
        height: auto;
    }
    .hero-content {
        width: 70%;
        padding: 0 4rem;
    }
}

@media screen and (max-width:1100px) {
    .hero-container {
        width: 100%;
        padding: 1rem 4rem;
        padding-bottom: 2rem;
    }
    .hero-content {
        width: 80%;
    }
    .navbar-nav {
        gap: 0;
    }
}

@media screen and (max-width:850px) {
    .background-slider {
        height: auto;
        padding-bottom: 5rem;
    }
    .hero-container {
        padding: 0;
    }
    .hero-container h1 {
        font-size: 1.6rem;
    }
    .hero-container h2 {
        margin-top: 2rem;
        font-size: 1.3rem;
    }
    .hero-content {
        margin-top: 3rem;
        padding: 0 1rem;
        width: 100%;
    }
    .hero-content p {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    .highlight {
        margin-top: 1rem;
        display: block;
        /* width: 10rem; */
        width: 90%;
        align-self: center;
        margin: 1rem auto;
    }
    .cta-button {
        margin-top: 1rem;
        font-size: 1.2rem;
    }
}


/* --------------------------OverView--------------------------------- */

.overview {
    padding: 4rem 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    /* align-items: flex-start; */
    align-items: center;
    column-gap: 7rem;
    row-gap: 2rem;
}

.overview-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ov-head {
    font-size: 2rem;
    width: 100%;
    text-align: left;
    color: #006666;
    font-weight: bold;
    text-transform: uppercase;
}

.oc-content {
    line-height: 2rem;
    font-size: 1.1rem;
}

.oc-left {
    margin: 2rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: red;
    font-style: italic;
}

.oc-detail ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.oc-detail li i {
    font-weight: 600;
    font-size: 1.2rem;
}

.oc-list-head {
    color: #008b8b;
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
}

.oc-list ul {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.oc-list ul li {
    list-style: disc;
    font-size: 1rem;
    text-transform: capitalize;
}

.oc-carousel-container {
    width: 560px;
    height: 560px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.oc-carousel-track {
    display: flex;
    /* width: calc(560px * 5); */
    /* Adjust if number of images changes */
    transition: transform 0.5s ease-in-out;
}

.oc-carousel-track img {
    width: 560px;
    height: 560px;
    object-fit: cover;
    flex-shrink: 0;
}


/* .oc-button { */


/* border: 2px solid black; */


/* border: none;
    padding: 1rem 1.5rem;
    width: 12rem;
    border-radius: 2rem;
    background-color: #008b8b;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    word-spacing: 0.3rem;
    letter-spacing: 0.1rem;
    margin-top: 1rem;
} */

.oc-button {
    display: inline-block;
    /* background-color: #005b5b; */
    text-decoration: none;
    border: none;
    background-color: white;
    font-size: 1.2rem;
    background-color: #FFC300;
    color: white;
    font-weight: 700;
    width: 13rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
}

@media screen and (max-width:850px) {
    .overview {
        flex-direction: column-reverse;
        padding: 1.5rem 1rem;
    }
    .ov-head {
        letter-spacing: 0.1rem;
        text-align: center;
        font-size: 1.5rem;
    }
    .oc-carousel-container {
        width: 95%;
    }
    .oc-carousel-track img {
        width: 100%;
    }
    .overview-content {
        width: 90%;
    }
    .oc-button {
        margin: 1rem auto;
    }
}


/* Features */

.feature-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0rem 1rem;
    padding-bottom: 4rem;
}

.fc-head {
    font-size: 1.7rem;
    font-weight: bold;
    /* color: #004d4d; */
    color: #004d4d;
    margin-bottom: 20px;
    text-align: center;
}

.fc-heading {
    font-size: 2.5rem;
    font-weight: bold;
    /* color: #004d4d; */
    color: #008b8b;
    margin-bottom: 20px;
    text-align: center;
}

.fc-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.fc {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    border-radius: 0px !important;
}

.card img {
    border-radius: 0px !important;
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transform: scale(1.3);
    transition: 0.5s all ease-in-out;
}

.card img:hover {
    transform: scale(1);
}

.fcr-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.fcr-feature-icon {
    margin-right: 10px;
    font-size: 20px;
}

.fcr-feature-text {
    font-size: 16px;
    font-weight: 500;
}

.fc-book {
    text-align: center;
    color: red;
    width: 100%;
    /* text-align: center; */
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    word-spacing: 0.3rem;
}

.fc-book p {
    font-size: 1.5rem !important;
    animation: scale 2s infinite ease;
}

@keyframes scale {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.fc-book button {
    border: none;
    background-color: white;
    font-size: 1.2rem;
    background-color: #FFC300;
    color: white;
    font-weight: 700;
    width: 13rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    margin: 0 auto;
}

@media screen and (max-width:950px) {
    .feature-container {
        padding-bottom: 2rem;
    }
    .fc-body {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        row-gap: 3rem;
        margin-top: 2rem;
    }
    .fc {
        gap: 1rem;
    }
    .fcr-features {
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        justify-content: center;
        row-gap: 0rem;
        margin: 0 auto;
    }
    .card {
        width: 110px;
    }
    .fc-book p {
        text-align: center;
    }
    .fc-head {
        font-size: 1.2rem;
    }
    .fc-heading {
        font-size: 1.7rem;
        margin-bottom: 0;
        margin-top: 1rem;
    }
}

@media screen and (max-width:350px) {
    .grid-container {
        gap: 0;
    }
}


/* Display */

.display {
    padding: 2rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.display p {
    font-size: 2rem;
    color: #cc0000;
    font-weight: bold;
    text-align: center;
    animation: display 2s infinite ease;
}

.display button {
    padding: 0.7rem 1.5rem;
    font-size: 1.5rem;
    background-color: #FFC300;
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 2rem;
}

@keyframes display {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


/* --------------------------Footer---------------------------- */

.fcr-footer {
    margin-top: 2rem;
    background-color: #2c2f36;
    color: white;
    padding: 40px 20px 20px;
}

.fcr-footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.fcr-footer-column {
    flex: 1 1 100px;
    min-width: 200px;
}

.fcr-footer-logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.fcr-footer-logo span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: -8px;
}

.fcr-footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

.fcr-footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: serif;
}

.fcr-footer-link,
.fcr-footer-contact {
    font-size: 14px;
    color: #dcdcdc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.fcr-footer-contact i {
    margin-right: 8px;
}

.fcr-footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #ccc;
    border-top: 1px solid #444;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .fcr-footer-container {
        flex-direction: column;
        /* gap: 30px; */
    }
}

.gallry {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 1rem;
    gap: 2rem;
}

.g-heading {
    font-size: 3rem;
    color: #008b8b;
    font-weight: 700;
    font-style: italic;
    text-align: center;
}

.g-body {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.g-card {
    width: 250px;
    cursor: pointer;
    border-radius: 1rem;
    background-size: cover;
    overflow: hidden;
}

.g-card img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    display: block;
    transition: 0.5s all ease;
}

.g-book-card {
    position: relative;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('./images/f1.jpg');
    padding: 0.5rem 0.1rem;
}

.g-book-card::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.694);
    z-index: 2;
}

.g-book-card p {
    z-index: 3;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
}

.g-card img:hover {
    transform: scale(1.2);
}

.g-book-card button {
    border: none;
    background-color: white;
    color: red;
    z-index: 3;
    padding: 0.7rem 1.5rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
}

@media screen and (max-width:1250px) {
    /* .g-body {
        grid-template-columns: repeat(2, 1fr);
    } */
    .g-card {
        width: 180px;
    }
}

@media screen and (max-width:991px) {
    /* .g-body {
        grid-template-columns: repeat(2, 1fr);
    } */
    .gallry {
        margin-top: 2rem;
    }
    .g-card {
        width: 120px;
    }
}

@media screen and (max-width:620px) {
    .g-body {
        grid-template-columns: repeat(2, 1fr);
    }
    .g-heading {
        font-size: 2rem;
    }
    .g-card {
        width: 150px;
    }
}


/* -------------Our Partnership-------------- */

.our-partnership {
    width: 100%;
    padding: 0rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.op-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin: auto;
    padding: 2rem 2rem;
    align-items: flex-start;
    gap: 24px;
}

.image-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.image-section img {
    /* width: 100%; */
    border-radius: 12px;
    /* object-fit: cover; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-section img:hover {
    transform: scale(1.02);
}

.badges {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.badge {
    background-color: #f9fafb;
    /* border-left: 4px solid #3b82f6; */
    border-left: 4px solid #008b8b;
    padding: 12px 14px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.badge:hover {
    background-color: #008b8b1a;
}

.badge-title {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.badge-desc {
    color: #4b5563;
    font-size: 15px;
    text-wrap: wrap;
}

.op-head {
    width: 100%;
    font-size: 3.5rem;
    font-style: italic;
    color: #008b8b;
    font-weight: 800;
    text-align: center;
}

.bd-head {
    font-size: 2rem;
    font-weight: 700;
    /* color: #004d4d; */
    color: #004d4d;
    /* margin-left: 1rem; */
    text-align-last: center;
}

@media (min-width: 768px) {
    .image-section {
        flex-direction: row;
        justify-content: space-between;
    }
    .image-section img {
        width: 48%;
    }
}

@media (max-width: 767px) {
    .bd-head {
        text-align: center;
    }
    .op-head {
        font-size: 1.7rem;
    }
    .badges {
        width: 100%;
    }
    .op-container {
        flex-direction: column;
        padding: 0;
    }
    .image-section img {
        width: 100%;
    }
}

@media screen and (max-width:450px) {
    .bd-head {
        font-size: 1.7rem;
    }
}


/* ---------Location-------------- */

.location {
    width: 100%;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-body {
    display: flex;
    /* gap: 2rem; */
    justify-content: center;
    align-items: flex-start;
}

.loc-left {
    width: 50%;
}

.loc-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.loc-right {
    width: 50%;
    margin-top: 2rem;
}

.loc-right img {
    width: 90%;
}

.loc-heading {
    text-align: center;
    font-size: 3rem;
    font-style: italic;
    color: #008b8b;
    font-weight: 700;
    width: 100%;
}

.loc-heading span {
    color: #ffC300;
}

.key-dest {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 5rem;
    gap: 1rem;
}

.kd-head {
    font-size: 2rem;
    /* color: #ffC300; */
    color: #006666;
    font-weight: 700;
    /* text-align: center; */
    margin-left: 15%;
}

.kd-content li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

@media screen and (max-width:991px) {
    .location {
        padding-bottom: 2rem;
    }
    .key-dest {
        padding: 0;
    }
    .kd-head {
        font-size: 1.5rem;
    }
    .loc-right {
        width: 100%;
        margin-top: 0rem;
    }
    .loc-left {
        margin-top: 2rem;
        width: 100%;
    }
    .location-body {
        flex-direction: column-reverse;
    }
    .loc-heading {
        font-size: 2rem;
    }
}


/* POP UP  */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.838);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    display: flex;
    background: white;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popup-image {
    width: 50%;
}

.popup-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.popup-form-area {
    padding: 30px;
    flex: 1;
}

.popup-form-area h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
    color: #333;
}

.popup-form-area input {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
}

.popup-form-area button {
    width: 100%;
    padding: 12px;
    background-color: #008b8b;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.7rem;
    font-weight: 600;
    cursor: pointer;
    color: black;
}

@media (max-width: 768px) {
    .close-btn {
        color: white;
    }
    .popup-form-area h2 {
        font-size: 1.1rem;
        color: red;
    }
    .popup-content {
        flex-direction: column;
        width: 90%;
        height: 580px;
    }
    .popup-image,
    .popup-form-area {
        width: 100%;
    }
    .popup-image img {
        height: 200px;
        width: 100%;
    }
    .popup-form-area {
        padding: 10px 20px;
    }
}


/* FAQS */

.faq-section {
    padding: 0 20px;
}

.faq-section h2 {
    font-weight: bold;
    color: #008b8b;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 30px;
}

.accordion-button {
    background-color: #004d4d;
    color: white;
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    background-color: #008b8b;
    color: #fff;
}

.accordion-body {
    background-color: #f9f9f9;
}

@media screen and (max-width:850px) {
    .faq-section h2 {
        font-size: 1.7rem;
    }
}

.accordion-button {
    color: white !important;
}

.accordion-button {
    color: white;
    /* Optional: if you want a dark background */
}

.accordion-button::after {
    filter: brightness(0) invert(1);
    /* This turns the default black arrow white */
}


/* Conatct form */

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    padding: 1rem 1rem;
    width: 85%;
    background-color: #fff;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.274);
    margin: 2.5rem auto;
    border-radius: 1rem;
}

.contact-title {
    text-align: center;
    font-size: 3rem;
    color: #008b8b;
    font-weight: bold;
}

.form-container {
    display: flex;
    width: 100%;
    justify-content: center;
    /* background-color: #008b8b; */
    padding: 1rem;
}

.contactUs-info {
    padding: 1rem;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* align-items: flex-end; */
    h2,
    p {
        width: 80%;
        text-align: left;
    }
}

.contactUs-info h2 {
    font-size: 22px;
    font-weight: 600;
    color: #004d4d;
}

.contactUs-info p {
    font-size: 18px;
    margin: 6px 0;
}

.contactUs-phone-label {
    font-weight: bold;
    font-size: 20px;
    margin-top: 2rem !important;
    color: #004d4d;
}

.contactUs-info .contactUs-phone-number {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer !important;
    color: black !important;
}

.contact-form {
    /* padding: 40px ; */
    padding: 1rem;
    border-radius: 20px;
    color: #003b73;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-form h2 {
    margin-left: 10px;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 700;
    color: #cc0000;
    text-align: center;
    animation: displayH2 2s infinite ease;
}

@keyframes displayH2 {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    margin: 10px 0;
    border: 1.5px solid #d0d7de;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input:focus {
    border-color: #008b8b;
    box-shadow: 0 0 8px rgba(0, 119, 182, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    font-size: 14px;
    text-align: left;
}

.checkbox-group input {
    margin-top: 4px;
    margin-right: 10px;
    accent-color: #008b8b;
}

.submit-btn {
    /* background-color: #0077b6; */
    background-color: #FFC300;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

@media screen and (max-width:850px) {
    .contact-container {
        width: 95%;
    }
    .contactUs-info {
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .contactUs-info h2 {
        width: 100%;
        text-align: center;
    }
    .contact-title {
        font-size: 2rem;
    }
    .form-container {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .form-container img {
        width: 100%;
        height: 27rem;
    }
    .contact-form {
        padding: 0;
    }
    .contact-form h2 {
        font-size: 1.5rem;
    }
}

.blur-bt {
    opacity: 0.5;
    cursor: not-allowed !important;
}


/* Thankyou PAGE */

.thankyou {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 5rem 1rem;
    width: 100%;
}

.content-thank {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    /* border: 3px dashed #0056d2; */
    padding: 10rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.219);
    text-align: center !important;
    width: 60%;
}

.thank-headiing {
    font-size: 4rem;
    letter-spacing: 6px;
    font-weight: 900;
    color: #008b8b;
}

.sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: #004d4d;
}

.thankyou a {
    margin-top: 1.5rem;
    text-decoration: none;
    color: white;
    background-color: #FFC300;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

@media screen and (max-width: 900px) {
    .content-thank {
        padding: 10rem 2rem;
        width: 90%;
    }
    .thank-headiing {
        font-size: 2.5rem;
    }
}


/* Amenties */

.amen-section {
    /* background: linear-gradient(135deg, #ffffff, #f0f0f0); */
    /* padding: 60px 20px; */
    padding: 3rem 1rem;
}

.amen-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.amen-title {
    font-size: 3rem;
    color: #008b8b;
    margin-bottom: 50px;
    font-weight: bold;
}

.amen-grid {
    padding: 0 1rem;
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.amen-box {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.5s all ease;
}

.amen-icon {
    width: 100%;
    /* height: 5rem; */
    height: 8rem;
    /* object-fit: cover; */
    margin-bottom: 15px;
}

.amen-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.amen-box:hover {
    transform: scale(1.05);
}

@media (max-width: 990px) {
    .amen-title {
        font-size: 1.7rem;
    }
    .amen-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .amen-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .amen-box img {
        width: 100%;
    }
}