@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #333;
}

p, li, button {
    font-family: 'Roboto', sans-serif;
    color: #555;
}

a {
    text-decoration: none;
    color: inherit;
}

/*Header and navbar*/
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 6em 1em 6em;
    background-color: #fff;
    width: 100%;
}

.top-header p {
    font-size: 1.7rem;
    font-weight:;
    color: #333;
}


.action-button button {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.7em 1.5em 0.7em 1.5em;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 0.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.action-button button:hover {
    background-color: #45a049;
}

header {        
    display: flex;
    justify-content: space-between;  
    align-items: center;   
    padding: 1em 6em 1em 6em;          
    position: relative; 
}

.company-logo img {
    height: 60px;
}

.mobilemenu {
    display: none;
    padding: 1rem;
    margin-top: 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    text-align: left;
    position: relative;
    left: 0;
    z-index: 1000;
}



.mobilemenu li {
    margin-bottom: 1rem;
    list-style-type: none;
    font-size: 1rem;
}

.mobilemenu a {
    text-decoration: none;
}

.mobilemenu ul a:hover {
    color: green;
}

.mobilemenu.active {
    display: block;
}


/* Navbar */
.nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-bar ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-bar li {
    font-weight: ;
    font-size: 1.7rem;
    color: #007700;
}

.nav-bar a {
    text-decoration: none;
    color: black;  
    position: relative;
    padding-bottom: 0.2em;
}

.nav-bar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #fec928;
    transform: scaleX(0); 
    transition: transform 0.3s ease-in-out;
}

.nav-bar a:hover::after,
.nav-bar a:focus::after,
.nav-bar a:active::after {
    transform: scaleX(1); /* Show underline */
}

.omnibar {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333; /* Adjust color as needed */
    position: absolute; 
    right: 1rem; 
}

/*Hero Section*/
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../assets/images/herosectionhomepage.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 6rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-text {
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

.hero-section h1 {
    font-size: 4em;
    margin: 0 0 1rem 0;
    color: #fff;
}

.hero-section p {
    color: #fff;
    font-size: 1.7em;
    line-height: 1em;
}

.hero-tagline  {
    margin-bottom: 1.5em;
    
}


.hero-buttons {
    display: flex;
    gap: 2rem;
}

.hero-buttons button {
    font-size: 1.5rem;
    padding: 0.8em 2em;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 0.3em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-buttons button:hover {
    background-color: #45a049;
}

.hero-buttons a .contact-button {
    background-color: #ffa500;
}

.hero-buttons a .contact-button:hover {
    background-color: #e7a221;
}

/*About Section*/
.about-det {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 6rem 3rem 6rem;
    margin-bottom: 0;
}

.about-det h2 {
    font-size: 1.5rem;
    color: green;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-det h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.about-det p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7em;
    color: #555;
}

.about-det button {
    font-size: 1em;
    padding: 0.8em 2em;
    background-color: #ffa500;
    color: white;
    border: none;
    border-radius: 0.3em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.about-det button:hover {
    background-color: #e7a221;
}

.about-det img {
    max-height: 650px;
    max-width: 670px;
    border-radius: 1.5em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-sum {
    display: flex;
    justify-content: space-between;
    padding: 6rem;
    flex-wrap: wrap;
}

.about-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 128, 0);
    background: linear-gradient(145deg, #e4a735, #15af10);
    padding: 1rem;
    width: 420px;
    height: 120px;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 1rem;
}

.about-banner p {
    color: #fff;
}

.bannerabout {
    background-image: url('../assets/images/aboutbanner.jpg');
}


/* Services Section */
.services {
    padding: 6rem;
    background-color: #f9f9f9;
}

.service-text {
    text-align: center;
    margin-bottom: 3rem;
}

.service-text h2 {
    color: green;
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.service-text h3 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #333;
}

.service-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bannerservice {
    background-image: url(../assets/images/bannerservice.jpg);
}

.service-det {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    width: 400px;
    height: 450px;
    background: linear-gradient(145deg, #92fe04, #e0b816d7);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-det img {
    width: 100%;
    height: 60%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-det p:nth-of-type(1) {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.service-det p:nth-of-type(2) {
    line-height: 1.2rem;
}

.service-det:hover {
    transform: scale(1.05);
}

/*Contact section*/
.contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 6rem 0 6rem;
    padding-bottom: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bannercontact {
    background-image: url(../assets/images/contactbanner.jpg);
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 2rem;
    color: #008000;
    margin-bottom: 0.5rem;
}

.contact-text h3 {
    font-size: 2rem;
    color: #444;
    margin-bottom: 1rem;
}

.contact-text img {
    width: 400px;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.google-map {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: green;
    margin-bottom: 2rem;
}

.contact form {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #008000;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 128, 0, 0.3);
}

.submit-button {
    font-size: 18px;
    padding: 12px;
    background: linear-gradient(45deg, #ffa500, #ff6347);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: linear-gradient(45deg, #ff6347, #ffa500);
    transform: scale(1.05);
}

/*Footer Section*/
footer {
    display: flex;
    padding: 6rem;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: #f4e1b25c; 
    border-radius: 8px;
    letter-spacing: 2px;
}


footer h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

footer p {
    margin-bottom: 1rem;
    font-size: 1rem;
}
.socials {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

footer a:hover {
    color: #000;
}

.socials i {
  /*  border: 1px solid white;
    border-radius: 50%;
    height: 60px;
    width: 60px; */
    font-size: 1.5em; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.socials a {
    text-decoration: none;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 1rem;
}

footer a {
    text-decoration: none;
}


/*Banners for each pages*/
.banner-section {
    height: 35vh;
    margin-bottom: 2rem;
}








/*MEDIA QUERIES*/
/* Small devices (phones, 320px and up) */
@media (max-width: 485px) { 
    /* Styles for very small screens */
    .top-header {
        display: none;
        padding: 0.5rem;
    }
    .top-header p {
        font-size: 1rem;
        color: #333;
    }
    .action-button button {
    font-size: 0.7rem;
    }
    header {
        padding: 0.5rem;
    }

    .company-logo img {
        height: 30px;
    }
    .nav-bar ul {
        display: none;
    }

    .omnibar {
        display: block;
        
    }

    .hero-section.bannerabout, .hero-section.bannercontact, .hero-section.bannerservice {
        height: 20vh; 
    }

    .hero-section {
        text-align: center;
        height: 80vh;
        padding: 0.5rem;
        align-items: center;
        margin-bottom: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.2rem;
    }

    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .hero-buttons button {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }
    .hero-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    .about-det {
        flex-direction: column;
        padding: 1rem 1rem 3rem 1rem;
        align-items: flex-start
    }
    
    .about-det h2 {
        font-size: 1rem;
        color: green;
        margin-top: 0;
        margin-bottom: 0rem;
    }
    .about-det h3 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #333;
    }

    .about-det p {
        font-size: 1rem;
        text-align: justify;
        margin-bottom: 1rem;
        line-height: 1.7em;
        color: #555;
    }

    .about-det img {
        display: none;
    }
    
    .about-sum {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 1rem 0 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .services {
        padding: 1rem 1rem 0 1rem;
    }

    .service-text {
        margin-bottom: 0;
    }
    
    .service-text h2 {
        font-size: 1rem;
        text-align: left;
    }

    .service-text h3 {
        font-size: 1.5rem;
        margin-bottom: 3rem;
        text-align: left;
    }
    
    .contact {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1rem 0 1rem;
        border-radius: 10px;
        background: #f8f9fa;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .contact-text h2 {
        font-size: 1rem;
        color: #008000;
        margin-bottom: 0.5rem;
    }

    .contact-text h3 {
        font-size: 1.5em;
        color: #444;
        margin-bottom: 0;
    }

    .contact-text img {
        display: none;
    }

    .google-map {
        margin-top: 2rem;
    }
    .google-map iframe {
        width: 100%;
    }
    .contact-form {
    margin-bottom: 2rem;
    width: 100%;
    }

    .contact textarea {
        height: 200px;
    }

    footer { 
        padding: 3rem 1rem 0 1rem;
        margin-top: 0;
        letter-spacing: 1px;

    footer h4 {
        margin-top: 0;
        font-size: 1.5em;
    }

    footer p {
        margin-bottom: 1rem;
        font-size: 1em;
    }

    footer ul li {
        margin-bottom: 1rem;
    }
}

@media (min-width: 485px) and (max-width: 1024px) {
    .top-header {
        padding: 2rem 2rem 0 2rem;
    }
    .top-header p {
        font-size: 1rem;
        color: #333;
    }
    .action-button button {
    font-size: 1rem;
    }
    header {
        padding: 0 2rem 0 2rem;
    }

    .company-logo img {
        height: 30px;
    }
 
    .nav-bar li {
        font-size: 1rem;
    }

    .hero-section {
        height: 60vh;
        padding: 2rem;
        align-items: flex-start;
    }

    .hero-section.bannerabout, .hero-section.bannercontact, .hero-section.bannerservice {
        height: 35vh; 
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section h1 {
        font-size: 1.5rem;
        margin: 0.5rem 0 0.5rem 0;
    }

    .hero-buttons button {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .hero-buttons {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .about-det {
        flex-direction: column;
        padding: 3rem 2rem 0 2rem;
        align-items: flex-start;
        flex-direction: column-reverse;
        margin-top: 3rem;
    }
    
    .about-det h2 {
        font-size: 1.5rem;
        color: green;
        margin-top: 2rem;
        margin-bottom: 0rem;
    }
    .about-det h3 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #333;
    }

    .about-det p {
        font-size: 1.5rem;
        text-align: justify;
        margin-bottom: 1rem;
        line-height: 1.7em;
        color: #555;
    }

    .about-sum {
        display: flex;
        justify-content: center;
        padding: 0.5rem 2rem 0 2rem;
        flex-wrap: wrap;
    }

    .about-sum div {
        margin: 0 2rem 2rem 0;
    }

    .about-banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 300px;
    }

    .services {
        padding: 3rem 2rem 0 2rem;
        padding-bottom: 3rem;
    }

    .service-text {
        margin-bottom: 0;
    }
    
    .service-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0rem;
        text-align: left;
    }

    .service-text h3 {
        font-size: 2rem;
        margin-bottom: 3rem;
        text-align: left;
    }

    .service-det {
        width: 320px; 
    }
    
    .contact {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem 0 2rem;
        border-radius: 10px;
        background: #f8f9fa;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding-top: 2rem;
    }

    .contact-text {
        flex: 1;
    }

    .contact-text h2 {
        font-size: 1.5rem;
        color: #008000;
        margin-bottom: 0.5rem;
    }

    .contact-text h3 {
        font-size: 2em;
        color: #444;
        margin-bottom: 3rem;
    }

    .contact-text img {
        display: none;
    }

    .contact-form {
        margin-bottom: 2rem;
        width: 100%;
    }

    .contact textarea {
        height: 200px;
    }

    footer { 
        padding: 3rem 1rem 0 1rem;
    }

    footer h4 {
        margin-top: 0;
        font-size: 1.5em;
    }

    footer p {
        margin-bottom: 1rem;
        font-size: 1em;
    }

    footer ul li {
        margin-bottom: 1rem;
    }
}


  