:root {
    --primary-color: #DBC07D;
    --secondary-color: #174056;
}

.home-sec-1 {
    background-image: url('../../assets/img/home/sec-1/home-top.png');
    /* Replace with your image path */
    background-size: cover;
    /* Adjusts image to fill the div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    width: 100%;
    /* Or set a fixed width */
    min-height: 750px;
    /*aspect-ratio: auto; !* Allows height to match image's natural height *!*/
}

@media (min-width: 1700px) {
    .home-sec-1 {
        background-image: url('../../assets/img/home/sec-1/home-top.png');
        /* Replace with your image path */
        background-size: cover;
        /* Adjusts image to fill the div */
        background-position: center;
        /* Centers the image */
        background-repeat: no-repeat;
        width: 100%;
        /* Or set a fixed width */
        height: 900px;
        /*aspect-ratio: auto; !* Allows height to match image's natural height *!*/
    }
}

.contact-sec-1 {
    background-image: url('../../assets/img/contact/head.png');
    /* Replace with your image path */
    background-size: cover;
    /* Adjusts image to fill the div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    width: 100%;
    /* Or set a fixed width */
    min-height: 450px;
    /*aspect-ratio: auto; !* Allows height to match image's natural height *!*/
}

@media (min-width: 1700px) {
    .contact-sec-1 {
        background-image: url('../../assets/img/contact/head.png');
        /* Replace with your image path */
        background-size: cover;
        /* Adjusts image to fill the div */
        background-position: center;
        /* Centers the image */
        background-repeat: no-repeat;
        width: 100%;
        /* Or set a fixed width */
        height: 630px;
        /*aspect-ratio: auto; !* Allows height to match image's natural height *!*/
    }
}

.about-sec-1 {
    background-image: url('../../assets/img/about/sec-1/home-top.png');
    /* Replace with your image path */
    background-size: cover;
    /* Adjusts image to fill the div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    width: 100%;
    /* Or set a fixed width */
    min-height: 450px;
    /*aspect-ratio: auto; !* Allows height to match image's natural height *!*/
}

@media (min-width: 1700px) {
    .about-sec-1 {
        background-image: url('../../assets/img/about/sec-1/home-top.png');
        /* Replace with your image path */
        background-size: cover;
        /* Adjusts image to fill the div */
        background-position: center;
        /* Centers the image */
        background-repeat: no-repeat;
        width: 100%;
        /* Or set a fixed width */
        height: 630px;
        /*aspect-ratio: auto; !* Allows height to match image's natural height *!*/
    }
}

.home-sec-1 h1,
.home-sec-1 h6 {
    color: white;
    margin-left: 100px;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");

.sec_1_gallery * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sec_1_gallery {
    min-height: 40vh;
}

.sec_1_gallery .img-galary {
    width: 90%;
    margin: 50px auto;
    padding: 10px 0;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    animation: opacity 2.5s;
}

.sec_1_gallery .img-galary__coloumn {
    width: 19%;
    display: flex;
    flex-direction: column;
}

.sec_1_gallery .img-galary__coloumn img {
    width: 100%;
    border-radius: 0px;
    transition: all 0.5s;
    animation: scale 1s 2.2s;
}

.sec_1_gallery .img-galary__coloumn *+* {
    margin-top: 10px;
}

.sec_1_gallery .img-galary:hover {
    border-radius: 0px;
}

.sec_1_gallery .img-galary:hover img {
    transform: scale(0.95);
    z-index: 99;
}

.sec_1_gallery .img-galary__coloumn img:hover {
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.287);
    cursor: pointer;
    transform: scale(1.05);
    border-radius: 20px;
    z-index: 100;
}

@keyframes scale {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 1500px) {
    .sec_1_gallery .img-galary__coloumn5 {
        display: none;
    }

    .sec_1_gallery .img-galary__coloumn {
        width: 24%;
    }
}

@media (max-width: 1200px) {

    .sec_1_gallery .img-galary__coloumn5,
    .sec_1_gallery .img-galary__coloumn4 {
        display: none;
    }

    .sec_1_gallery .img-galary__coloumn {
        width: 32%;
    }
}

@media (max-width: 900px) {

    .sec_1_gallery .img-galary__coloumn5,
    .sec_1_gallery .img-galary__coloumn4,
    .sec_1_gallery .img-galary__coloumn3 {
        display: none;
    }

    .sec_1_gallery .img-galary__coloumn {
        width: 49%;
    }
}

@media (max-width: 600px) {

    .sec_1_gallery .img-galary__coloumn5,
    .sec_1_gallery .img-galary__coloumn4,
    .sec_1_gallery .img-galary__coloumn3,
    .sec_1_gallery .img-galary__coloumn2 {
        display: none;
    }

    .sec_1_gallery .img-galary__coloumn {
        width: 99%;
    }
}

footer {
    background-color: #000;
    color: #d5d5d5 !important;
    padding: 40px 0;
}

footer a {
    color: #e0e0e0 !important;
    text-decoration: none;
}

footer a:hover {
    color: #d4af37 !important;
    text-decoration: underline;
}

footer h5 {
    color: #d4af37;
}

footer h6 {
    color: #ffffff;
}

.social-icons a {
    margin-right: 10px;
    color: #fff;
    font-size: 1.5rem;
}

.section-6-card-text-1 {}

.section-6-card-text-2 {}

.section-6-card-text-1:hover {
    bottom: 100px;
}

.section-6-card-text-2:hover {
    bottom: 80px;
}

/*scroll animation*/
/*body {*/
/*    !*height: 300vh;*!*/
/*    background-color: white;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

.spacer {
    height: 100px;
}

#scrollLine {
    position: relative;
    width: 100%;
    /*max-width: 800px;*/
}

#linePath {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 4s ease-out;
}

.booking-form {
    margin-top: -100px;
}

.card {
    margin: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 10px;
}

.rating-badge {
    background-color: #fff6c7 !important;
    color: #0a3622 !important;
    font-weight: lighter;
}

.sec-8-div {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.3);
    /* Semi-transparent white */
    backdrop-filter: blur(8px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(8px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle border */
}

.info-cards-section .card img {
    height: 200px;
    object-fit: cover;
}

/* Contact Form */
.contact-form-section {
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-form-section input,
.contact-form-section textarea {
    border: none;
    background: #F9F9F9;
}

.social-icons a img {
    width: 40px;
    margin: 0 0.5rem;
}

/* Map Styling */
.mapouter {
    position: relative;
    text-align: right;
    width: 100%;
    height: 400px;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 400px;
}

.get-in-touch-section {
    background: #F9F9F9;
}

.social-media-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Custom color for carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #174056 !important;
    /* Custom color for prev/next buttons */
}

/* Custom styles for the navigation dots */
.carousel-indicators button {
    background-color: #b0b0b0 !important;
    /* Grey for inactive dots */
    top: 100px !important;
}

.carousel-indicators .active {
    background-color: #174056 !important;
    /* Custom color for active dot */
}

.travels-tab-bottom {
    background-image: url('../../assets/img/packages/travels-tab-bottom-image.png');
    /* Replace with your image path */
    background-size: cover;
    /* Adjusts image to fill the div */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    width: 100%;
    /* Or set a fixed width */
}

/*Bootstrap CSS Override*/
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: #174056 !important;
}

.btn-primary {
    color: white !important;
    background-color: var(--primary-color) !important;
    border-color: #d7b666 !important;
}

.btn-primary:hover {
    background-color: #d3a535 !important;
    border-color: #d7b666 !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-secondary {
    color: white !important;
    background-color: var(--secondary-color) !important;
    border-color: #0d3a52 !important;
}

.btn-secondary:hover {
    background-color: #052434 !important;
    border-color: #023148 !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}