@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html {
    overflow: auto;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-image: url('img/noise.svg');
    background-size: cover;
    background-position-x:center;
    background-color: #f2f3f5;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Set minimum height to 100% of the viewport height */
}

header {
    background-color: rgba(6, 41, 61, 0.7);
    color: #fff;
    padding: 20px 0;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    /* align links to the left */
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    /* change link color */
    text-decoration: none;
    /* remove underline */
}

/* Styles for the Hero Section */
.hero {
    padding: 50px 0 30px 0;
    text-align: center;
}

.logo img {
    height: 80px;
}

.hero h1 {
    font-size: 2.4em;
    font-weight: semibold;
    color: rgb(4, 42, 60);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3em;
    color: rgb(10, 104, 115);
}

/* Styles for the Content Section */
.content {
    padding: 0 0 50px 0;
    color: #fff;
    text-align: justify;
    position: relative;
    z-index: 1;
    min-height: 500px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.content-text {
    position: relative;
    margin-top: 60px;
    line-height: 1.5em;
    z-index: 2;
    font-size: 1.2em;
}

.content-text p {
    margin-left: 20%;
    margin-right: 20%;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: auto;
}

@media (max-width: 1100px) {
    .video-container video {
        width: auto;
        transform: translate(-40%, 0);
    }
    .content { 
        text-align: left;
    }
}

.gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}



/* Add styles for the Services Section */
.services {
    padding: 50px 0;
    text-align: center;

    background-image: url('');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
}

.services img {
    width: 120px;
    margin-top: 10px;
    filter: sepia(50%) saturate(120%) hue-rotate(70deg) contrast(110%);
}

.services h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.services .services-cards {
    display: flex;
    justify-content: center;
}

.services .service-card {
    width: 250px;
    background-color: #e8f4fd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 25px;
    padding: 15px;
    line-height: 1.5em;
    text-align: center;
    transition: all 0.3s ease;
}


.services .service-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.services .service-card p {
    font-size: 1.1em;
}

.flex-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 25px;
  margin-top:40px;
}

@media screen and (max-width: 525px) {
  .flex-container {
    flex-direction: column;
    padding: 0 15px 0 15px;
  }
}

.btn {
    padding: 15px 20px;
    background: linear-gradient(to bottom, #365e81 30%, #2c4963);
    color: #fff;
    text-decoration: none;
    display:block;
    text-align:center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn img {
    height: 22px;
    margin-right: 10px;
    margin-left: -2px;
    margin-top: -4px;
    display: inline-block;
    vertical-align: middle;
}

.btn:hover {
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transform: translateY(-2px);
}

.btn_vid {
    padding: 15px 20px;
    background: linear-gradient(to bottom, #00acb6, #207b8c);
    color: #fff;
    text-decoration: none;
    text-align:center;
    border-radius: 5px;
    display:block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.btn_vid img {
    height: 22px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    margin-top: -4px;
}

.btn_vid:hover {
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transform: translateY(-2px);
}

.btn_yt {
    padding: 15px 20px;
    background: linear-gradient(to bottom, #c02e26, #990000);
    color: #fff;
    display:block;
    text-align:center;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn_yt:hover {
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transform: translateY(-2px);
}

.btn_yt img {
    height: 24px;
    display: inline-block;
    margin-right: 10px;
	filter: invert(100%);
    vertical-align: middle;
    margin-top: -4px;
}
/* Add styles for the Contact Section */
.contact {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.3);
    padding-bottom: 70px;
}

.contact h2 {
    color: #333;
    margin-bottom: 40px;
}

.contact span {
    color: #333;
    font-size: 1.3em;
}

.contact span a {
    text-decoration: none;
    color: #207b8c;
}

.spacer {
    margin: 0 50px;
    /* Adjust the margin values as needed */
}


/*Video Lightbox style*/
.lightbox {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: fixed;
    display: none;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.lightbox-container {
    position: relative;
    max-width: 960px;
    margin: 25% auto;
    display: block;
    padding: 0 3%;
    height: auto;
    z-index: 10;
}

.lightbox-content {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
    text-transform: uppercase;
    background: transparent;
    position: absolute;
    font-weight: 300;
    font-size: 12px;
    display: block;
    border: none;
    color: white;
    top: -22px;
    right: 3%;
}

.lb-video-container {
    padding-bottom: 56.25%;
    position: relative;
    padding-top: 0px;
    overflow: hidden;
    height: 0;
}

.lb-video-container iframe,
.lb-video-container object,
.lb-video-container embed {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.lightbox-close {
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

@media only screen and (max-width: 600px) {

    .content-text p {
        margin-left: 10%;
        margin-right: 10%;
    }

    .services .services-cards,
    .contact {
        display: flex;
        flex-direction: column;
    }

    .services .service-card {
        margin: 0px 20px 30px 20px;
        width: auto;

    }


    .contact span {
        width: 100%;
        margin-bottom: 10px;
        /* Optionally adjust width as needed */
    }
}

footer {
    background-color: rgb(18, 36, 53);
    background-image: url('img/waev.svg');
    background-repeat: repeat-x;
    background-size: 10%;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
    /* Push the footer to the bottom */
}