* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:  "Jost", sans-serif;
    text-align: center;
    margin-top: 0px;
    background-color:white;
   
}
header{
    position: sticky;
    top: 0;
    z-index: 1000;
}

h1 {
    color: #E0EAEC  ;
    padding-top: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    text-align: left;
    font-size: -webkit-xxx-large;
    padding-left: 50px;
}

button {
    padding: 10px 20px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family:  "Jost", sans-serif;
    border-bottom: 4px solid #dcab41;
    z-index: 1000;
    padding: 20px 40px;

    background-color: white;
    opacity: 1;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #01414f ;
    font-weight: bold;
}

nav img {
    height: 100px;
}

/* ================== Home ================== */

#home{
    scroll-margin-top: 100px;
    background-color: #04328C;
    padding: 50px;

}

/* =================== about ===================*/

#about{
    scroll-margin-top: 200px;
    position: relative;
    background-color: #FFFFFF;
    padding-top: 0px;
    padding-bottom: 50px;
    z-index: -1;
}

/* ================== Services ================== */
#services{
    scroll-margin-top: 200px;
    background-color:#04328C;
    margin-top: 80px;
    margin-bottom: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
}


h2 {
    padding: 20px;
    color:#032569;
    font-size:xx-large;
    text-align: center;
}

h3 {
    color:#eaf5f7;
    font-size:x-large;
    text-align: center;
}

.ourservice-title{
    color: #eaf5f7;
}

.card {

    width: 300px;
    height: 150px;
    flex-direction: column;
    align-content: center;
    background-color: #032569;

    border: 0px solid #04BFBF;
    border-radius: 0px;

    padding: 20px;

    transition: all 0.3s;

    margin: 20px;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(0, 12, 35, 0.45);
}
.card:hover {
    transform: translateY(-10px);
}

.card-text {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    color:#E0EAEC;
    font-size:large;
    text-align:center;
}

.serviceCards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    
}
/*-----making cards a ling--------*/
.serviceCards a {
    display: block;
    text-decoration: none;
    color: inherit;
}


.logo {
    width: 200px;
    height: auto;
}

/* ================== FOOTER ================== */
footer {
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #04328C;;
}

.footerText {
    font-size: medium;
    font-family:sans-serif;
    color: #E8EDF2;
    text-align: left;
}
.footer-column{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.about-text{
    margin-top: 0px;
}
.aboutText {
    font-size: large;
    color:#032569;
    position: relative;
    margin-right: 200px;
    margin-left: 200px;
}



.section-divider {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -80px;
    margin-bottom: -20px;
}
.section-bottom-divider {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -20px;
    margin-bottom: -80px;
}



/*----------------------------COST-------------------------------------*/

.CostText{
    text-align: justify;
    font-size: large;
    color:#032569;
    position: relative;
    padding-right: 150px;
    padding-left: 150px;
    padding-bottom: 150px;
}

/*-----------------------------SERVICE PAGE ----------------------------*/
.ourservice-page-title{
    color: #032569;
}
.services-page{
    
    max-width: 1000px;
    margin: 0 auto 100px auto;

}
.services-page section {
    scroll-margin-top: 120px;
}

.service-text {
    color: #1F3A5F;
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
    padding-left: 80px;
    padding-right: 200px;
    text-align: justify;
}

.service-title {
    color: #1F3A5F;
    text-align: left;
    font-size: 20px;
    line-height: 1.7;
    padding-left: 80px;
}

.service-items{
    color: #333;
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
    padding-left: 120px;    
    padding-right: 200px;
}
/*----------------------------------CONTACT FORM-----------------------------------*/

.contact-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 40px;

}

.contact-section h1 {
    margin-bottom: 15px;
}

.contact-section p {
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

form label {
    margin-bottom: 8px;
    margin-top: 20px;
    font-weight: 500;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
}

form textarea {
    resize: vertical;
}

form button {
    margin-top: 30px;
    padding: 14px 25px;
    border: none;
    border-radius: 6px;
    background-color: #04328C;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

form button:hover {
    opacity: 0.9;
}