/* Font */
@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Allerta&family=Allura&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Hurricane&family=Mulish:ital,wght@0,600;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@300;500&family=Ubuntu:wght@300;400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Allerta&family=Allura&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Hurricane&family=Mulish:ital,wght@0,600;1,400&family=Roboto:wght@300;500&family=Ubuntu:wght@300;400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Nav */

header a {
    transition: color 0.3s ease-in-out;
}

header a:hover {
    color: #007587;
    /* Adjust the hover color as desired */
}

.header-scrolled {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 767px) {
    .header-scrolled {
        background-color: white;
    }
}

#mobile-menu a {
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.navbar {
    display: flex;
    justify-content: center;
}

#mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #007587;
    /* Adjust the hover color as desired */
}

@media (max-width: 767px) {
    header {
        background-color: white;
    }

    .navbar {
        justify-content: space-between;
        height: 75px;
    }
}

.contact-button {
    background-color: rgba(0, 117, 135, 1)
}

.contact-button:hover {
    background-color: #023e47;
}


/* Banner Section */
.banner {
    background-image: url('images/Murdeshwar.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;

}

.banner-overlay {
    background: rgba(14, 13, 13, 0.6);

}

.welcome-header {
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    font-weight: 550;
    line-height: 44px;
    letter-spacing: 0em;
    text-align: center;
    color: rgba(0, 117, 135, 1);
}

.welcome-text {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 0em;
    color: rgba(31, 68, 74, 1);

}

.font-style-p {
    font-family: "Poppins", sans-serif;
}

.banner-text {
    font-family: 'Playfair Display';
    font-size: 64px;
    font-weight: 600;
    line-height: 85px;
    letter-spacing: 0em;
    text-align: left;

}


.the-hero-img-1 {
    height: 100%;
    width: 70%;
    position: relative;
    z-index: 1;
    top: 15%;
    /* box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */

}

.the-hero-img-2 {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 90%;
    bottom: 0.5%;
    z-index: 0;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

@media (max-width: 767px) {
    .the-hero-img-1 {
        width: 350px;
        height: 220px;
    }

    .the-hero-img-2 {
        width: 100%;
        /* height: 100%; */

    }

    .welcome-image-div {
        padding-right: 30px
    }

    .banner {
        height: 350px
    }
}


@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}





/* Welcome Section */
/* .grid img {
    width: 100%;
    height: auto;
} */

.spinner_container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.spinner_item {
    font-size: 40px;
    /* Adjust size as needed */
    color: #007bff;
    /* Adjust color as needed */
}

.text-color {
    color: rgba(0, 117, 135, 1);
    font-family: "Poppins", sans-serif;

}

.img-container {
    width: 100%;
    height: 350px;
    /* Adjust the height as needed */
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .img-container {
        width: 100%;
        height: 220px;
        /* Adjust the height as needed */
        overflow: hidden;
    }

    .img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}


/* Things Section */

#things {
    background-color: rgba(234, 248, 255, 1);
}

.things-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    gap: 12px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.things-text {
    font-family: "Cormorant Garamond", serif;
    /* font-size: 44px; */
    /* font-weight: 700; */
    /* line-height: 53px; */
    /* letter-spacing: 0em; */
}


.other-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}


/* Transport Section  */



#transport {
    background-image: url('images/transport-bg1.jpeg');
    background-color: rgba(255, 255, 255, 0.96);
    /* Set the background color to white with 80% opacity */
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* #transport::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(184, 181, 181, 0.92);
    
z-index: 1;
}

*/
.content-container {
    position: relative;
    z-index: 10;
}




/* css loader */
.loader {
    width: 48px;
    height: 48px;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #ccc;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: scale(0.5) translate(0, 0);
    background-color: rgba(0, 117, 135, 1);
    border-radius: 50%;
    animation: animloader 1s infinite ease-in-out;
}

.loader::before {
    background-color: #000;
    transform: scale(0.5) translate(-48px, -48px);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animloader {
    50% {
        transform: scale(1) translate(-50%, -50%);
    }
}