:root {
    --green: #F79521;
    --black: #212529;
    --orange: #F79521;
    --border-color: #E9DEDE;
}

html {
    scroll-behavior: smooth;
  }

body {
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

a {
    text-decoration: none;
}



.logo img {
    width: 150px;
}

nav {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    transition: background-color 0.3s ease;
    z-index: 1000;
}
nav a {
    padding: 26.7815px 0;
}

.active, a:hover {
    background-color: var(--green);
    /* color: var(--black) !important ; */
}

.nav-btn {
    /* display: none; */
    border: 1px solid var(--green);
    border-radius: 5px;
      
}

.nav-btn span {
    width: 30px;
    height: 4px;
    margin: 6px;
   
    display: block;
    border-radius: 3px;
    background-color: var(--green);
}

.mobile-menu a {
    display: block;
}  

.hidden {
    display: none;
}

/* hero section styling */

#hero img {
    width: 100%;
}

#hero {
    
    background-image: url("img/hero-svg-img.svg");
    
    /* background-repeat: no-repeat; */
    height: calc(100vh + 77px);
    width: 100%;
    filter: brightness(90%);
}

.hero-content {
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
}

#hero a {
    background-color: var(--orange) ;
}

#hero button:hover {
    color: var(--black) !important;
    opacity: 50%;
}

.hero-content p:first-of-type {
    color: var(--orange) !important;
}

.hero-content h1 {
   font-weight: bold;
}

/* Services styling section */

#services h1, #about h1 {
    border-bottom: 3px solid var(--black);
    display: inline-block;
}

#services a {
    text-decoration: none;
    background-color: var(--green);
    border-radius: 3px;
}

#services img, #about img {
    width: 100%;
    border: 8px solid var(--border-color);
    border-radius: 5px;
}

#services a:hover {
    color: white !important;
}

.mobile-menu-btn {
    display: none !important;
}

.transparent {
    background-color: transparent;
}

.black {
    background-color: var(--black);
}

.btn-green {
    background-color: var(--green);
}

.hidden-text {
    visibility: hidden;
}

select {
    background: url('img/arrow.png') no-repeat right 10px center;
  background-size: 20px;
}


/* footer */
footer i {
    color: white;
}

.h2 {
    color: var(--orange);
}

footer ul li {
    margin: 3px 0;
    
}

footer ul a {
    color: white;
}

.page-title {
    
    /* background-repeat: no-repeat; */
    height: 80vh;
    width: 100%;
}

.title-1 {
    background-image: url("img/image-1.jpeg")
}

.title-2 {
    background-image: url("img/image-2.jpeg");
}

.title-3 {
    background-image: url("img/image-3.jpeg");
}

.title-4 {
    background-image: url("img/image-4.jpeg");
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity (0.5) to darken */
    z-index: 1; /* Keeps the overlay on top */
}

footer .row {
    --bs-gutter-x: 0 !important;
}

@media (max-width: 520px) {
    #hero {
        background-repeat: no-repeat;
        height: calc(100vh - 77px);
    }
    #menu-link {
        position: fixed;
        top: 77px;
        left: 0;
        right: 0;
        z-index: 999999;
    }
    /* .logo {
        width: 25%;
        display: inline;
    } */
    nav img {
        width: 100px !important;
      
    }

    .mobile-menu-btn {
        display: inline-block !important;
    }

    .lg-screen {
        display: none !important;
      
    }

    #services img {
        width: 100%;  
    }

    .service-img {
    
        margin-bottom: 60px;
        
    }

    #about img {
        margin: 50px 0;
    }

    footer img {
        width: 150px;
        background-color: white;
    }

    
}

@media only screen and (min-width: 521px) and (max-width: 1024px) {

    #menu-link {
        position: fixed;
        top: 77px;
        left: 0;
        right: 0;
        z-index: 999999;
    }

    .mobile-menu-btn {
        display: inline-block !important;
    }

    .lg-screen {
        display: none !important;
      
    }
}