/* Custom Colors */
/* .bg-primary { background-color: #A9CEF4 ; } */
/* .bg-primary { background-color: #000000 ; } */
.bg-primary { background-color: #002830; }
.bg-secondary { background-color: #7EA0B7; }
.text-primary { color: #A9CEF4; }
.text-secondary { color: #7EA0B7; }
.text-black { color: #000000; }
.text-white { color: #FFFFFF; }
.border-primary { border-color: #A9CEF4; }
.border-secondary { border-color: #7EA0B7; }
.hover\:bg-secondary:hover { background-color: #7EA0B7; }
.hover\:text-primary:hover { color: #A9CEF4; }

.box1 { border: red 4px dashed;}
.box2 { border: blue 2px solid; }
.box3 { border: green 3px dotted; }
.box4 { border: black 5px double; }
.box5 { border: purple 4px groove; }
.box6 { border: orange 3px ridge; }
.box7 { border: gray 2px inset; }
.box8 { border: pink 3px outset; }
.box9 { border: cyan 4px solid; border-radius: 10px; }
.box10 { border: lime 2px dashed; border-radius: 20px; }
.box11 { border: magenta 3px solid; background-color: lightyellow; }
.box12 { border: brown 5px solid; }
.box13 { border: navy 2px dotted; }
.box14 { border: teal 3px dashed; box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); }
.box15 { border: maroon 4px solid; border-radius: 15px; background-color: lightblue; }
.box16 { border: olive 3px groove; }
.box17 { border: coral 2px ridge; }
.box18 { border: indigo 3px inset; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); }
.box19 { border: violet 4px outset; border-radius: 25px; }
.box20 { border: crimson 3px dashed; }

.green-underline { text-decoration: underline 4px; text-decoration-color: #87dc97; }

/* Background Image for Welcome Section */
.welcome-section {
    position: relative;
    background: url('hero-background.png') no-repeat center center;
    background-size: cover;
    /* filter: blur(5px);  */
    height: 100vh; /* Ensure the section takes up the full viewport height */
    z-index: 1;
}

/* Blue overlay on the background image */
.welcome-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%;
    height: 100%; */
    background: #002830; /* Adjust the RGBA value for the desired blue shade and transparency */
    z-index: 2;
}

/* Ensure the content within the section is above the overlay */
.welcome-section .container {
    position: relative;
    z-index: 3;
}

/* General styles */
body {
    font-family: 'Open Sans', sans-serif;
    /* margin: 0 auto; */
    /* padding: 0; */
    line-height: 1.6;
    background-color: #FFFFFF;
    color: #333333;
    max-width: 100%;
}

a {
    color: #1D4E89;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header and Navigation */
header {
    color: #FFFFFF;
    /* padding: 1rem 0; */
    /* font-weight: 800; */
    width: 100%;
    text-align: center;
    position: fixed;
    z-index: 9;
    box-shadow: inset;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.push-right {
    margin-right: 10px;
}

.background {
    /* max-width: 1400px; */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #FFFFFF;
    /* text-transform: uppercase; */
    /* padding: 5px 10px; */
    transition: background 0.3s;
}

nav ul li a:hover {
    background: #7EA0B7;
}

/* Main content */
main {
    /* padding: 20px; */
    z-index: 1;
}

/* Sections */
section {
    /* margin-bottom: 20px; */
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#about-section {
    position: relative;
    z-index: 0;
    height: 80vh; /* Adjust the height as needed */
    background-image: url('home_image1.png');
    background-size: 250px 250px; /* Adjust the size of the background image */
    background-repeat: no-repeat;
    /* background-position: bottom right; Position the image at the bottom-right corner */
    background-position: calc(100% + 10px) calc(100% + 70px); /* Adjust the values as needed */
    /* background: linear-gradient(to bottom left, #011f24, #003138); */


    /* padding-bottom: 250px;
    padding-right: 250px; */
}

#about {
    position: relative;
    z-index: 1;
}

.blur-box {
    /* background-color: rgba(255, 255, 255, 0.4); */
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    /* opacity: 50%; */
}

#about-us {
    opacity: 100%;
}



/* #about-image {
    position: absolute;
    border-radius: 50%;
    width: 500px;
    height: 500px;
    bottom: -375px;
    right: -175px;
    z-index: 0;
} */

#services-section {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom left, #011f24, #003138);
}

#services {
    position: relative;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-box {
    flex: 0 0 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.service-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
}

.drawer-toggle {
    cursor: pointer;
    padding: 10px;
    /* background-color: #87dc97; */
    color: white;
    border-radius: 5px;
    margin-top: 10px;
  }
  
  .drawer-content {
    display: none;
    padding: 10px;
    background-color: transparent; /* or any desired color */
    border-radius: 5px;
    margin-top: 10px;
  }
  
  .drawer-content.open {
    display: block;
    background-color: transparent; /* or any desired color */
}

h1, h2 {
    margin-top: 0;
    color: #1D4E89;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333333;
}

input[type="text"],
input[type="email"],
input[type="phonenumber"],
textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #7EA0B7;
    border-radius: 20px;
}

input[type="submit"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #F5A623;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.3s;
}

input[type="submit"]:hover {
    background: #1D4E89;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}
  
.inset-container {
    display: inline-block;
    padding: 20px;
    border-radius: 30px;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
}
  
.raised-button {
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    background-color: #87dc97;
    color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

/* Footer */
footer {
    background: #1D4E89;
    color: #FFFFFF;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9;
}

.footer-box {
    max-width: 1200px;
}

footer p {
    margin: 0;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #FFFFFF;
}

footer ul li a:hover {
    text-decoration: underline;
}

.footer-section {
    background: linear-gradient(to top, #01252C, #002830);
    padding: 20px 0;
    height: 20vh;
    justify-content: space-between;
    align-items: center;
    /* display: flex; */
}

/* .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
} */

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
}

.logo-footer {
    margin-right: 20px;
}

.logo-image {
/* width: 108px; */
}

/* .social-media-icons {
display: flex;
}

.social-link {
margin-right: 10px;
}

.social-link img {
width: 24px;
height: 24px;
} */

.footer-right {
text-align: right;
}

.footer-nav-links {
    margin-right: 20px;
    display: flex;
    flex-wrap: wrap;
}

.footer-nav {
    /* margin-right: 10px; */
    color: #333;
    text-decoration: none;
}

.btn--primary {
    background-color: #FFAE00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Responsive design */
/* @media (max-width: 400px) {
    nav ul li {
        display: block;
        margin: 5px 0;
    }

    form {
        width: 100%;
    }

    footer {
        position: static;
        padding: 20px 0;
    }
} */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .logo {
        max-width: 100%;
        height: 150px;
    }

    .container {
        max-width: 1140px;
    }

    .welcome-section {
        padding: 150px 0;
    }

    .hero {
        margin-top: 100px;
    }

    .welcome-section h1 {
        font-size: 72px;
    }

    .welcome-section p {
        font-size: 32px;
    }

    .raised-button {
        font-size: xx-large;
    }

    #about-section {
        padding: 80px 0;
        background-size: 600px 600px; /* Adjust the size of the background image */
        background-position: calc(100% + 10px) calc(100% + 70px); /* Adjust the values as needed */
    }

    .blur-box {

    }

    #about-us {
        font-size: 80px;
    }

    .about-us-text {
        font-size: 36px;
    }

    #services-section {
        padding: 100px 0;
    }

    #services h2 {
        font-size: 80px;
        margin-bottom: 32px;
    }

    .service-title {
        font-size: 48px;
    }

    .service-description {
        font-size: 24px;
    }

    .service-box {
        flex: 0 0 calc(33.333% - 30px);
    }

    #contact {
        padding: 100px 0;
    }

    #contact h2 {
        font-size: 80px;
        margin-bottom: 32px;
    }

    input {
        height: 60px;
        border-radius: 20px;
    }

    input[type="text"],
    input[type="email"],
    input[type="phonenumber"],
    textarea {
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #7EA0B7;
        border-radius: 20px;
        height: 60px;
    }

    .input-div {
        margin-bottom: 36px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .logo {
        max-width: 100%;
        height: 100px;
    }

    .container {
        max-width: 960px;
    }

    .welcome-section {
        padding: 150px 0;
    }

    .hero {
        margin-top: 100px;
    }

    .welcome-section h1 {
        font-size: 66px;
    }

    .welcome-section p {
        font-size: 24px;
    }

    .raised-button {
        font-size: xx-large;
    }

    #about-section {
        padding: 80px 0;
        background-size: 500px 500px; /* Adjust the size of the background image */
        background-position: calc(100% + 10px) calc(100% + 70px); /* Adjust the values as needed */
    }

    .blur-box {

    }

    #about-us {
        font-size: 60px;
    }

    .about-us-text {
        font-size: 28px;
    }

    #services-section {
        padding: 100px 0;
    }

    #services h2 {
        font-size: 60px;
        margin-bottom: 32px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-description {
        font-size: 16px;
    }

    .service-box {
        flex: 0 0 calc(33.333% - 30px);
    }

    #contact {
        padding: 100px 0;
    }

    #contact h2 {
        font-size: 60px;
        margin-bottom: 32px;
    }

    input {
        height: 60px;
        border-radius: 20px;
    }

    input[type="text"],
    input[type="email"],
    input[type="phonenumber"],
    textarea {
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #7EA0B7;
        border-radius: 20px;
        height: 60px;
    }

    .input-div {
        margin-bottom: 36px;
    }
}
  

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .logo {
        max-width: 100%;
        height: 100px;
    }

    /* .container {
        max-width: 960px;
    } */

    .welcome-section {
        padding: 150px 0;
    }

    .hero {
        margin-top: 100px;
    }

    .welcome-section h1 {
        font-size: 48px;
    }

    .welcome-section p {
        font-size: 24px;
    }

    .raised-button {
        font-size: x-large;
    }

    #about-section {
        padding: 80px 0;
        background-size: 450px 450px; /* Adjust the size of the background image */
        background-position: calc(100% + 10px) calc(100% + 70px); /* Adjust the values as needed */
    }

    .blur-box {

    }

    #about-us {
        font-size: 48px;
    }

    .about-us-text {
        font-size: 24px;
    }

    #services-section {
        padding: 100px 0;
    }

    #services h2 {
        font-size: 48px;
        margin-bottom: 32px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 12px;
    }

    .service-box {
        flex: 0 0 50%;
      }

    #contact {
        padding: 100px 0;
    }

    #contact h2 {
        font-size: 48px;
        margin-bottom: 32px;
    }

    input {
        height: 60px;
        border-radius: 20px;
    }

    input[type="text"],
    input[type="email"],
    input[type="phonenumber"],
    textarea {
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #7EA0B7;
        border-radius: 20px;
        height: 60px;
    }

    .input-div {
        margin-bottom: 36px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .logo {
        max-width: 100%;
        height: 100px;
    }

    .container {
        max-width: 600px;
    }

    .welcome-section {
        padding: 150px 0;
    }

    .hero {
        margin-top: 80px;
    }

    .welcome-section h1 {
        font-size: 40px;
    }

    .welcome-section p {
        font-size: 24px;
    }

    .raised-button {
        font-size: x-large;
    }

    #about-section {
        padding: 80px 0;
        background-size: 400px 400px; /* Adjust the size of the background image */
        background-position: calc(100% + 10px) calc(100% + 70px); /* Adjust the values as needed */
    }

    .blur-box {

    }

    #about-us {
        font-size: 40px;
    }

    .about-us-text {
        font-size: 20px;
    }

    #services-section {
        padding: 100px 0;
    }

    #services h2 {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-description {
        font-size: 12px;
    }

    .service-box {
        flex: 0 0 50%;
    }

    #contact {
        padding: 100px 0;
    }

    #contact h2 {
        font-size: 48px;
        margin-bottom: 32px;
    }

    input {
        height: 60px;
        border-radius: 20px;
    }

    input[type="text"],
    input[type="email"],
    input[type="phonenumber"],
    textarea {
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #7EA0B7;
        border-radius: 20px;
        height: 40px;
    }

    .input-div {
        margin-bottom: 36px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .logo {
        max-width: 100%;
        height: 100px;
    }

    .container {
        max-width: 420px;
    }

    .welcome-section {
        padding: 150px 0;
    }

    .hero {
        margin-top: 80px;
    }

    .welcome-section h1 {
        font-size: 30px;
    }

    .welcome-section p {
        font-size: 20px;
    }

    .raised-button {
        font-size: large;
    }

    #about-section {
        padding: 80px 0;
        background-size: 300px 300px; /* Adjust the size of the background image */
        background-position: calc(100% + 10px) calc(100% + 70px); /* Adjust the values as needed */
    }

    .blur-box {

    }

    #about-us {
        font-size: 30px;
    }

    .about-us-text {
        font-size: 18px;
    }

    #services-section {
        padding: 100px 0;
    }

    #services h2 {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-description {
        font-size: 12px;
    }

    .service-box {
        flex: 0 0 70%;
      }

    #contact {
        /* padding: 100px 0; */
    }

    #contact h2 {
        font-size: 24px;
        margin-bottom: 4px;
    }

    input {
        height: 32px;
        border-radius: 10px;
    }

    input[type="text"],
    input[type="email"],
    input[type="phonenumber"],
    /* textarea {
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #7EA0B7;
        border-radius: 20px;
        height: 40px;
    } */
    textarea {
        padding: 10px;
        margin-bottom: 8px;
        border: 1px solid #7EA0B7;
        border-radius: 10px;
        height: 32px;
    }

    .input-div {
        margin-bottom: 24px;
    }
}

/* Tiny devices (small phones, 320px and down) */
@media (max-width: 320px) {
    .logo {
        max-width: 100%;
        height: 80px;
    }

    .container {
        max-width: 300px;
    }

    .welcome-section {
        padding: 150px 0;
    }

    .hero {
        margin-top: 40px;
    }

    .welcome-section h1 {
        font-size: 24px;
    }

    .welcome-section p {
        font-size: 16px;
    }

    .raised-button {
        font-size: small;
    }

    #about-section {
        padding: 80px 0;
        background-size: 200px 200px; /* Adjust the size of the background image */
        background-position: calc(100% + 10px) calc(100% + 70px); /* Adjust the values as needed */
    }

    .blur-box {

    }

    #about-us {
        font-size: 24px;
    }

    .about-us-text {
        font-size: 12px;
    }

    #services-section {
        padding: 60px 0;
    }

    #services h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .service-box {
        padding: 8px;
    }

    .service-title {
        font-size: 12px;
    }

    .service-description {
        font-size: 8px;
    }

    .service-box {
        flex: 0 0 70%;
    }

    #contact {
        padding: 20px 0;
    }

    #contact h2 {
        font-size: 24px;
        margin-bottom: 4px;
    }

    input {
        height: 32px;
        border-radius: 10px;
    }

    input[type="text"],
    input[type="email"],
    input[type="phonenumber"],
    textarea {
        padding: 10px;
        margin-bottom: 8px;
        border: 1px solid #7EA0B7;
        border-radius: 10px;
        height: 32px;
    }

    .input-div {
        margin-bottom: 8px;
    }

    /* .form button {
        margin-bottom: 12px;
    } */

    footer {
        background: #1D4E89;
        color: #FFFFFF;
        text-align: center;
        font-size: x-small;
        padding: 4px 0;
        position: fixed;
        width: 100%;
        bottom: 0;
        z-index: 9;
    }
}
