@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{margin: 0; padding: 0;box-sizing: border-box; font-family: 'Open Sans';}

header {
    height: 90px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header img {
    object-fit: contain;
    width: 310px;
}

.headerLinkBox {
    display: flex;
    gap: 20px;
    align-items: center;
    font-family: 'Open Sans';
    font-weight: bold;
    
}
.headerLinkBox a{
    text-decoration: none;
    color: black;
}
.headerLinkBox a:hover{
    color: #2865E5;
}

.hamburger{
    height: 40px;
    width: 40px;
    display: none;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 12px;
}
.hamStrip{
    display: flex;
    height: 3px; width: 50%;
    background-color: black;
}


.btnBox{
    display: flex;
    gap: 30px;
}
.opqBtn {
    padding: 20px;
    display: flex;
    width: fit-content;
    background: #2865E5;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-family: 'Open Sans';
    transition: background 0.3s ease, transform 0.2s ease;
}
.opqBtn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}
.trnsBtn {
    padding: 20px;
    width: fit-content;
    display: flex;
    border: 2px solid #2865E5;
    border-radius: 12px;
    color: #2865E5;
    text-decoration: none;
    font-family: 'Open Sans';
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.trnsBtn:hover {
    background: #2865E5;
    color: white;
    transform: translateY(-2px);
}
.whtOpqBtn{
    background-color: white;
    color: black;
    font-weight: bold;
}
.whtTransBtn{
    border-color: white;
    color: white;
}



.card-blue {
  background: linear-gradient(135deg, #1e3cfd, #4f7cf9);
}

.card-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.card-turquoise {
  background: linear-gradient(135deg, #0ea5e9, #14b8a6);
}


.card-lblue {
  background: linear-gradient(135deg, #e0ecff, #f0f4ff);
}

.card-lpurple {
  background: linear-gradient(135deg, #f3e8ff, #f7f0ff);
}

.card-ltur {
  background: linear-gradient(135deg, #e0faff, #d1f3f0);
}



footer{
    height: 400px;
    background-color: rgb(20, 20, 20);
    padding: 60px;
    
}
.footer-upper{
    display: flex;
    justify-content: space-between;
}
.footer-lower{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.footer-column h3{
    color: white;
    font-family: 'Open Sans';
    margin-bottom: 20px;
}
.footer-column{
    display: flex;
    flex-direction: column;
}
.footerLogo {
    width: 300px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}
.footer-lower p, .footer-lower a, .footer-column p, .footer-column a{
    color: rgb(106, 106, 106);
    font-family: 'Open Sans';
    font-size: 18px;
    line-height: 33px;
    text-decoration: none;
}

.footer-lower a:hover, .footer-column a:hover {
    color: white;
    font-weight: bold;
}

.socMedBox{
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.fab{
    height: 40px;
    width: 40px;
    border-radius: 10px;
    border: 1px solid rgb(106, 106, 106);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.fab:hover{
    background-color: rgb(106, 106, 106);
    color: white;
}
.legalLinkBox{
    display: flex;
    gap: 30px;
}

a {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover {
    color: white;
    text-shadow: 0 0 5px rgba(40, 101, 229, 0.3);
}
.gridCard,
.comboGridCard,
.card-blue,
.card-purple,
.card-turquoise,
.card-lblue,
.card-lpurple,
.card-ltur {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gridCard:hover,
.comboGridCard:hover,
.card-blue:hover,
.card-purple:hover,
.card-turquoise:hover,
.card-lblue:hover,
.card-lpurple:hover,
.card-ltur:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

ul, ol{
    margin: 0 0 0 30px;
    font-size: 18px;
    line-height: 33px;
}


.formInputs{
    height: 70px;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #dfdfdf;
    border-radius: 12px;
    outline: none;
    background-color: #fafafa;
    margin-bottom: 15px;
}
form p{
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 33px;
}
textarea{
    height: 150px;
}
button{
    font-size: 18px;
}



.spacer-60{
    height: 60px;
}




@media screen and (max-width: 1200px) {
    footer{
        height: fit-content;
    }
    .footer-upper, .footer-lower{
        flex-direction: column;
        align-items: center;
    }
    .footer-lower p, .footer-lower a, .footer-column p, .footer-column a, .footer-column h3{
        text-align: center;
    }
    .socMedBox{
        justify-content: center;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 800px) {
    .hamburger{
        display: flex;
    }
    .headerLinkBox{
        display: none;
    }
}
@media screen and (max-width: 400px) {
    .hamburger{
        display: flex;
    }
    .headerLinkBox{
        display: none;
    }
    header img{
        width: 190px;
    }
    header{
        padding: 0 10px;
    }
}