@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Open+Sans:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Nunito:wght@400&display=swap');

.bg-container {
    background-color: white;



}

.contact-img {
    max-width: 100%;
    /* Ensures responsiveness */
    height: 250px;
    /* Maintains aspect ratio */
    border-radius: 20px;
    /* Adds rounded corners */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    /* Adds a subtle shadow */
}

.secondbg {
    background-color: #201d36;
    padding: 10px;
}

.contactbg {
    background-color: #201d36;
    padding: 20px;
}

.thirdbg {
    background-color: white;


    padding: 10px;
}

.navbar {
    background-color: #201d36;
     !important;
    /* Dark Blue */
}

.navbar-toggler {
    /* White background */
    border: 2px solid white !important;
    /* White stroke (border) */
    border-radius: 1px;
    /* Optional: Slightly rounded corners */
    /* Adds space around the icon */
}



.mini-box {
    text-align: center;
    /* Centers content */
    padding: 10px;
}

.mini-img {
    width: 100%;
    /* Makes image responsive */
    height: 150px;
    /* Set a fixed height */
    object-fit: cover;
    /* Ensures images maintain proportion */
    border-radius: 8px;
}

.mini-heading {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #03a83a;
}

.contactheading {
    font-size: 35px;
    font-weight: bold;

    color: white;
    margin-bottom: 3px;
}

.contactopt {
    font-size: 15px;
    font-weight: bold;
    margin-top: 10px;
    color: white;
    text-align: left;
}

.mini-para {
    font-size: 14px;
    color: #555;
}




.videocont {
    width: 100%;
    height: 100vh;
    /* Full height of the viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures no cropping */
}



.sbg-container {
    background-color: red;
    height: 100vh;
}

.videocont {
    background-size: cover;
    height: 35vh;
    overflow: hidden;
    /* Prevents any unwanted scrolling */

    background-color: white;
    position: relative;
}

.video {
    width: 100%;
    /* Stretches to full width */
    height: 100%;
    /* Stretches to full height */
    object-fit: cover;
    /* Ensures the video covers the whole area without black bars */
    pointer-events: none;

}

.whatwe {
    color: black;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 45px;
}

.whatweoffer {
    color: #34db21;
    ;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 45px;
    padding: 3px;
}

.Maxilex {
    color: #34db21;
}

.nav-text {
    font-family: Poppins, sans-serif;
    color: white;
     !important
}

.para {
    color: #161d1f;
    text-align: center;
    padding: 15px;
    font-weight: 100;
    font-size: 15px;
    font-family: Roboto;
    margin-left: 15px;
    margin-right: 15px;
}

.fvideo {
    width: 100%;
    /* Ensures full width */
    height: auto;
    /* Maintains aspect ratio */
    border-radius: 8px;
    /* Optional: Smooth rounded corners */
    object-fit: cover;
    /* Ensures video fills the container without distortion */
    pointer-events: none;
    /* Disables interaction (clicking) */
}

.secondcont {
    text-align: center;
}

.offer-button {
    color: #34db21;
    background-color: #201d36;
    height: 45px;
    width: auto;
    /* Auto width to fit text */
    min-width: 100px;
    /* Ensures minimum size */
    padding: 10px;
    border-width: 0px;
    margin: 8px;
    font-family: Poppins, sans-serif;
    border-radius: 12px;
    font-size: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    background-color: white;
    border-radius: 15px;
    margin: 2px;
    padding: 10px;


    opacity: 0;
    /* Initially hidden */
    animation: fadeInUp 1s ease-out forwards;
    /* Animation applied */
}

.fimg {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.card-image {
    height: 100%;
    border-radius: 15px;
}

.card-heading {
    font-size: 33px;
    text-align: center;
    font-family: Poppins, sans-serif;

    padding: 2px;
}

.second-card-heading {
    font-size: 33px;
    text-align: center;
    font-family: Poppins, sans-serif;
    color: #34db21;
    padding: 2px;
}

.contact {
    font-size: 25px;
    text-align: center;
    color: white;
    font-family: Poppins, sans-serif;

    padding: 5px;
}

.card-para {
    text-align: center;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 500;
}


.secondcont {
    opacity: 0;
    /* Initially hidden */
    transform: translateX(-50px);
    /* Start 50px to the left */
    animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.secondcard {
    background-color: white;
    border-radius: 20px;
    margin-top: 6px;

}

.services-card {
    background-color: white;
    border-radius: 20px;
    margin-top: 6px;

}

.card-imaget {
    width: 100%;
    /* Ensures both images scale equally */
    height: 250px;
    /* Set a fixed height */
    object-fit: cover;
    /* Ensures images scale and crop properly */
    border-radius: 8px;
}


.card-headingso {
    font-size: 20px;
    text-align: center;
    font-family: Poppins, sans-serif;
    padding: 15px;

}

.card-paraso {
    text-align: center;
    font-size: 13px;
    font-family: Roboto;
    font-weight: 500;

}

.ssbg {
    padding: 8px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sssbg {
    padding: 8px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.custom-list {
    list-style: none;
    padding: 0;
    font-family: Poppins, sans-serif;
    color: white;
}




