@charset "utf-8";
/* CSS Document */
/* Turn off parallax scrolling for tablets and phones */

@media only screen and (max-device-width: 1024px) {
    .sticky {
        position: fixed;
        top: 0;
        width: 100%
    }
    .bgimg-1,
    .bgimg-2,
    .bgimg-3 {
        background-attachment: scroll;
        min-height: 400px;
    }
}

.header {
    padding: 10px 16px;
    color: white;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    opacity: 1;
    z-index: 1000;
    position: fixed;
    top: 0;
    width: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
}

.logo-header {
    height: 90px;
    width: auto;
}

.nav {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-item {
    display: inline-block;
}

.nav-link {
    text-decoration: none;
    color: aliceblue;
    padding: 10px 15px;
    font-size: 16px;
}

/* Hide menu on small screens and show toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 80px;
        right: 0;
        width: 200px;
        padding: 10px;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .logo-header {
        height: 60px; /* Smaller logo on mobile */
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem; /* Medium font for tablets */
        padding-top: 10%;
    }

    .content-title {
        font-size: 3rem; /* Medium font for tablets */
        padding-top: 5%;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem; /* Smaller font for mobile */
        padding-top: 15%;
    }

    .content-title {
        font-size: 2.5rem; /* Medium font for tablets */
        padding-top: 10%;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem; /* Even smaller font for very small devices */
        padding-top: 20%;
    }

    .content-title {
        font-size: 2rem; /* Medium font for tablets */
        padding-top: 15%;
    }
}

.hero-title {
    text-align: center;
    color: white;
    vertical-align: middle;
    padding-top: 20%;
    font-size: 5rem; /* Large font for desktops */
    font-weight:500;
    font-stretch: expanded;
}

.content-title {
    text-align: center;
    color: white;
    vertical-align: middle;
    padding-top: 10%;
    font-size: 5rem; /* Large font for desktops */
    font-weight:500;
    font-stretch: expanded;
}

.content+.sticky {
    padding-top: 102px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

body {
    background-color: #000000;
    position: relative;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato", sans-serif;
    text-align: left;
}

body,
html {
    height: 100%;
    color: #4B4B4B;
    line-height: 1.8;
}

.slogan {
    font-style: italic;
    align-content: center;
    text-align: center;
    margin-bottom: 30px;
}

.w3-wide {
    letter-spacing: 10px;
}

.w3-hover-opacity {
    cursor: pointer;
}


/* Create a Parallax Effect */
.bgimg-1,
.bgimg-2,
.bgimg-3 {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* First image (Logo. Full height) */
.bgimg-1 {
    background-image: url("../images/bghome.jpg");
    min-height: 100%;
    opacity: 0.6;
}

/* Second image (Portfolio) */
.bgimg-2 {
    background-image: url("../images/services.webp");
    min-height: 50%;
    opacity: 0.6;
}

/* Third image (Contact) */
.bgimg-3 {
    background-image: url("../images/contact.jpg");
    min-height: 50%;
    opacity: 0.5;
}

.home {
    padding: 16px 100px;
    background-color: white;
}

.about {
    padding: 5% 15%;
    background-color: #f8f8f8;
}

.services {
    padding: 16px 100px;
    background-color: white;
}

.service-content h2 {
    font-size: 28px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 80px;
    padding-top: 30px;
}

.service-content {
    padding: 5% 15%;
    color: white;
    background: #0f2027;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0f2027, #203a43, #2c5364);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.service-table {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
}

.service-name {
    flex: 1;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
}

.service-desc {
    flex: 2;
    text-align: left;
    font-weight: light;
    color: #f8f8f8;
    font-size: 17px;
}

.footer-row {
    color: white;
    background: #0f2027;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0f2027, #203a43, #2c5364);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.footer {
    background: #0f0c29;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


}