@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

/* Apply DM Sans globally to every single element on your website */
* {
    box-sizing: border-box;  
    font-family: 'Sora', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
}

.div-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
    margin-bottom: 50px;
}

    .div-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

        .title-box {
            width: 100%;
            text-align: center;   
        }

            .header {
                font-weight: bold;
                font-size: 32px;
            }

            .sub {
                color: #808080;
            }

        .contact-box {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: stretch;
            width: 100%;
            gap: 20px;
        }

            .enquiry {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding: 40px;
                font-size: small;
                gap: 20px;
                border-radius: 40px;
                box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
            }

                .full-blue-area {
                        display: inline-flex;
                        justify-content: center;
                        align-items: center;
                        padding: 10px 20px;
                        background-color: #1B03A3;
                        color: #ffffff;
                        border-radius: 20px;
                    }

                hr {
                    border: none;
                    height: 1px;
                    width: 50%;
                    background-color: #1B03A3;
                }

                .sub-small {
                    color: #808080;
                    font-size: small;
                }

         .stay-box {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        a {
            text-decoration: none;
        }

            .media-box {
                display: flex;
                flex-direction: row;
                width: 400px;
                padding: 20px 40px;
                border-radius: 20px;
                background-color: #1B03A3;
                color: #ffffff;
                gap: 20px;
                cursor: pointer;
                transition: transform 0.3s ;
            }

            .media-box:hover {
                transform: scale(1.05);
                box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);

            }

.slide-left,
.slide-right {
    opacity: 0;
    transition: opacity 1.0s ease, transform 1.0s ease;
}

/* Starting positions */
.slide-left {
    transform: translateX(-50px);
}

.slide-right {
    transform: translateX(50px);
}

/* When visible */
.slide-left.show,
.slide-right.show {
    opacity: 1;
    transform: translateX(0);
}



/*____________________________________________________________________________________________________________________________________*/

/* Mobile Styles */
@media only screen and (max-width: 873px) {

body {
    font-size: 12px;  
}

.div-container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 100px;
}

        .header {
            font-size: 24px;
        }

        .contact-box {
            flex-direction: column;
            gap: 20px;
        }

        .media-box {
                width: 300px; 
            }
}

/*____________________________________________________________________________________________________________________________________*/
/* Tablet Styles */
@media only screen and (min-width: 874px) and (max-width: 1280px) {

body {
    font-size: 14px;  
}

.div-container {
    padding-left: 40px;
    padding-right: 40px;
}

    .full-blue {
                    padding: 5px 5px;
                    font-size: small;
                }

}
        

