.navbar {
    background-color: transparent;
    /* Make navbar transparent */
    position: absolute;
    width: 100%;
    z-index: 1000;
    /* Ensure navbar is above other elements */
}

.navimg1 {
    width: 280px;
    height: auto;
}

.hero-section {
    padding-bottom: 200px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-top: 200px;
    flex-direction: column;
    text-align: center;
    color: white;
    /* Ensure text is readable */
}

.fullhero {
    background-image: url('./images/heroback.png');
    /* Background image for both navbar and hero */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.navbar .navbar-brand {
    color: #ffffff;
}

.navbar .nav-link {
    color: #ffffff;
    font-size: 20px;
    margin: 0 10px;
    /* Add spacing between links */
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    /* Adjust based on the spacing you want */
    width: 0;
    height: 2px;
    /* Adjust the thickness of the border */
    background-color: #ffffff;
    /* Border color */
    transition: width 0.3s ease;
    /* Controls the speed of the animation */
}

.navbar .nav-link:hover::after {
    width: 100%;
    /* Expand the border to the full width of the link */
}


.line-under-heading {
    width: 20%;
    height: 1px;
    background-color: #000;
    /* Change to your preferred color */
    margin: 10px auto 0;
}

.line-under-heading4 {
    width: 10%;
    height: 1px;
    background-color: #000;
    /* Change to your preferred color */
    margin: 10px auto 0;
}

.line-under-heading1 {
    width: 26%;
    height: 1px;
    background-color: #000;
    /* Change to your preferred color */
    margin: 10px auto 0;
}

.line-under-heading3 {
    width: 15%;
    height: 1px;
    background-color: #000;
    /* Change to your preferred color */
    margin: 10px auto 0;
}


.sicons img {
    transition: transform 0.3s ease-in-out;
    /* Smooth transition for scaling */
}

.sicons img:hover {
    transform: scale(1.2);
    /* Increase size by 20% on hover */
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    /* Initially hidden */
    background-color: #024d8e;
    /* Black background */
    color: #fff;
    /* White arrow */
    border-radius: 50%;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    /* Ensure it appears above other elements */
    transition: opacity 0.3s;
}

.back-to-top:hover {
    background-color: #b40202;
    /* Slightly lighter on hover */
}

/* .card1 {
    border-radius: 5px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.615);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important
    ; 
    Added transition property for smooth effect
}

.card1:hover {
    transform: translateY(-10px) !important;
   
} 
.card3 {
    transition: transform 0.5s ease, box-shadow 0.5s ease !important;
}

.card3:hover {
    transform: scale(1.05) !important; 
} */


.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Removes the bottom margin/gap issue with images */
}

/* Default styling for larger screens */
.large-font {
    font-size: 70px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .large-font {
        font-size: 40px;
        /* Adjust as needed for better readability on mobile */
    }

    .text1 {
        font-size: 20px;
        /* Adjust base font size for readability */
    }

    .mt-5 {
        margin-top: 2rem;
        /* Adjust top margin for better spacing on mobile */
    }

    .mt-3 {
        margin-top: 1rem;
        /* Adjust top margin for consistency */
    }

    .navbar {
        background-color: #091E35;
        /* Make navbar transparent */
    }
}



.navbar-toggler {
    background-color: none;
    border: none !important;
}


.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: none;
    border: none !important;
}

.img-container {
    margin-bottom: -50px;
    border-radius: 20px;
    overflow: hidden;
}

.skewed {
    width: 250px;
    height: 320px;
    margin: 50px 0 -50px 0;
    border-radius: 30px;
    transform: skewY(15deg);
    overflow: hidden;
}

#img1 {
    width: 100%;
    height: 100%;
    margin-top: -30px;
    transform: skewY(-15deg);
    background-image: url("./images/ceo1.jpg");
    background-size: 100%;
    background-position: center;
    transition: all 0.3s ease;
}

#img1:hover {
    background-size: 110%;
}

#img2 {
    width: 100%;
    height: 100%;
    margin-top: -30px;
    transform: skewY(-15deg);
    background-image: url("./images/d2.jpg");
    background-size: 100%;
    background-position: center;
    transition: all 0.3s ease;
}

#img2:hover {
    background-size: 110%;
}

#img3 {
    width: 100%;
    height: 100%;
    margin-top: -30px;
    transform: skewY(-15deg);
    background-image: url('./images/m3.jpg');
    background-size: 100%;
    background-position: center;
    transition: all 0.3s ease;
}

#img3:hover {
    background-size: 110%;
}

.content {
    width: 350px;
    height: 170px;
    padding: 50px 9px 0px 10px;
    border-radius: 5px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content h3 {
    font-size: 25px;
    color: #353535;
}

.content p {
    font-size: 14px;
    margin-top: 1px;
    color: #353535;
}


.btn1 {
    background-color: #0D253F;
    color: #fff;
    font-size: 20px;
    border: 2px solid black;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn1:hover {
    transform: scale(1.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-nav {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin: 0;
}


@media (max-width: 767px) {
    .navbar-container {
        flex-direction: column;
        /* Stack the items vertically */
        align-items: flex-start;
        /* Align items to the start (left side) */
    }

    .navbar-nav {
        width: 100%;
        /* Make the navbar take up the full width */
    }

    .button-container {
        margin-top: 10px;
        /* Add some space above the button */
        width: 100%;
        /* Make the button container take up the full width */
        display: flex;
        justify-content: flex-start;
        /* Align the button to the left */
        margin-bottom: 20px;
    }

    .fullhero {
        background-image: url('./images/heromobile.png');
        /* Background image for both navbar and hero */

    }

    .hero-section {

        padding-top: 200px;

    }
    .navimg1 {
        width: 180px;
        height: auto;
    }
}




.btn11 {
    background-color: #0D253F;
    color: #fff;
    font-size: 20px;
    border: 2px solid black;
    padding: 10px 20px 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn11:hover {
    transform: scale(1.1);
}



.modalBtn {
    background-color: #ffffff;
    color: #000000;
    font-size: 17px;
    border: 2px solid black;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.modalBtn:hover {
    transform: translateY(-10px);
}