﻿.footer {
    background-color: #131C21;
    padding: 50px 0;
    margin-top: 5px;
    margin-bottom: 5px;
}

.footer-col {
    width: 33%;
    /* padding: 0 15px; */
}

    .footer-col h4 {
        font-size: 18px;
        color: #ffffff;
        margin-bottom: 35px;
        font-weight: 500;
        /* position: relative; */
    }

/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50% !important;
        margin-bottom: 30px !important;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100% !important;
    }
}


/* NAV BAR CSS */


#nav-bar-button {
    background-color: #0D5195;
    border-color: transparent;
}




.sliderbutton {
    background-color: #0D5195;
    color: white;
    border-color: transparent;
    padding: 15px;
}

    .sliderbutton:hover {
        transform: scale(1.05,1.05);
        -webkit-transform: scale(1.05,1.05);
        -moz-transform: scale(1.05,1.05);
        border-color: transparent;
    }


/* for row and column in homepage */
.column {
    float: left;
    width: 50%;
}

/* Clear floats after the columns  */
.row:after {
    content: "";
    display: table;
    clear: both;
}



.services-move-animation:hover {
  
    transform: scale(1.04);
    transition: all 0.4s ease;
}



#pic {
    margin: auto;
    margin-top: 30px;
}

.accomplishments:hover {
    transform: scale(1.1);
    transition: all 0.4s ease;
}


/* TESTIMOMNIAL SLIDER CSS */
.card {
    border: solid black wheat;
}

.user-content p {
    margin-top: 5px;
    font-size: 14px;
}


/* About page top image  */
.aboutContainer {
    position: relative;
    text-align: center;
    color: white;
}


.aboutCentered {
    position: absolute;
    top: 50%;
    color: #000000;
    font-family: 'Poppins';
    left: 50%;
    transform: translate(-50%, -50%);
    
}





/* home page fade in animations */

.fadeIn {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Form NEW on ASP */
.formTextField {
    width: 100%;
    text-align: center;
    border-radius: 5px;
    border: #ced4da;
    background-color: #ffffff;
    font-size: 14px;
    height: 50px;
}



.formButton {
    background-color: #0D5195;
    color: #fff;
    border-radius: 5px;
    border-color: transparent;
    padding: 10px;
}

    .formButton:hover {
        transform: scale(1.02,1.02);
        -webkit-transform: scale(1.02,1.02);
        -moz-transform: scale(1.02,1.02);
        border-color: transparent;
    }


.labelStyleWelcomePage {
    font-weight: bold;
    font-size: 24px;
}


/* Style for the FAB button */
.fab-container {
   
    z-index: 1 !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.fab {
   
    background-color: #0D5195;
    color: #fff;
    border: none;
    /* height: 100px;*/
    font-size: 18px;
    cursor: default;
    display: flex;
    /*    justify-content: center;*/
    text-align: center;
    align-items: center;
    align-content: center;
}

.btnText {
    padding-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
}

.myIcon{
    margin-left: 10px;
}

.fab:hover {
    transform: scale(1.05);
    transition: all 0.5s ease;
    background-color: #FAA736;
}


/* Style for the modal */
.modal {
  
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    margin: 5%;
    padding: 20px;
    border: 1px solid #888;
    height: 65%;
    align-content: center;
    align-items: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    cursor: pointer;
}

.myiframe {
    height: 100%;
    width: 90%;
}

/* Additional media query for small screens if needed */
@media (max-width: 767px) {
    .btnText {
        display: none;
        padding-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
    }

    .myIcon {
        padding: 10px;
        margin-left: 0px;
        margin-right: 0px;
    }
}










.dialog {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}