:root {
            --main-green: #27ae60;
            --dark-green: #219150;
            --white: #fff;
            --gray: #f7f7f7;
            --black:#222;
            --light-blue: #3498db;
            --dark-blue: #2980b9;
            --primary-blue: #3498db;
            --primary-blue-light: #5bc0de;
            --light-gray: #ecf0f1;  
            --overlay-blue: rgba(52, 152, 219, 0.8);
            --overlay: rgba(39, 174, 96, 0.8);
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body, html {
            height: 100%;
            font-family: 'Montserrat', Arial, sans-serif;
            background: var(--white);
            color: var(--white);
            /* overflow-x: hidden; */
            font-size: 1rem;
        }
        .nav-hero-container {
            min-height: 100vh;
            /* width: 100vw; */
            width: 100%;
            display: flex;
            flex-direction: column;
            padding-top: 60px; /* Adjust to nav height */

        }

        nav {
                /* flex-direction: column; */
                width: 100%;
                position: fixed;
                top: 0;
                left: 0;
                gap: 1rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                background: var(--dark-blue);
                z-index: 5;
                padding: 10px 20px;
                overflow-x: hidden;

        }

        .logo {
            width: 80px;
        }
        .nav-links {
            display: flex;
            gap: 1rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.2s;
        }
        .nav-links a:hover {
            color: #d4f8e8;
        }
        .hero {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: url('./bg2.jpg') center/cover no-repeat;
            /* Uncomment the line below to use an image from Unsplash */
            /* background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat; */
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: var(--overlay-blue);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            padding: 0px 5%;
        }
        .hero-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.1;
        }
        .hero-desc {
            font-size: 1rem;
            margin-bottom: 2rem;
            font-weight: 400;
            text-align: justify;
        }


        .animate-fade-in {
            opacity: 0;
            animation: fadeIn 1.2s ease-in forwards;
        }
        .animate-slide-up {
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 1.2s 0.5s ease-out forwards;
        }
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        @keyframes slideUp {
            to {
            opacity: 1;
            transform: translateY(0);
            }
        }


        /* .hero-btn {
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            background: var(--white);
            color: var(--main-green);
            border: none;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .hero-btn:hover {
            background: var(--dark-green);
            color: var(--white);
        } */


/* .about{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-color: var(--gray);
    color: var(--black);
    padding: 30px;
} */

.about_us {
	/* text-align: center; */
	display: flex;
	width: 100%;
	justify-content: center;
	background-color: var(--white);
    /* flex-direction: column; */
}
.clients{
    display: flex;
	width: 100%;
	justify-content: center;
	background-color: var(--light-gray);
    gap: 2rem;
    flex-wrap: wrap;
    padding: 20px;
    align-items: center;

}

.client_images img{
    height: 25px;
    width: auto;
}
#client_images img{
    height: 40px;
}
#client_image img{
height: 50px;
}
#anan img{
    height: 70px;
}

.about {
	/* display: flex; */
	/* justify-content: space-evenly; */
	/* flex-wrap: wrap; */
	background-color: var(--white);
	color: var(--black);
	padding: 30px 20px;
	/* justify-content: ; */
	text-align: justify;
	/* max-width: 800px; */
}

/* .about_head {
    text-align: center;
    color: #2DF788;
    margin-bottom: 20px;    
    font-size: 2rem;
    font-weight: 700;   
    letter-spacing: 2px;
    text-decoration: underline;
    text-decoration-color: #F2BE22;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}   */

.about_head {
    text-align: center;
    margin-bottom: 20px;    
    text-underline-offset: 5px;
}  



.about p {
    margin-bottom: 20px;        
    line-height: 1.5;
    /* font-size: 1.2rem; */
    /* font-weight: 400; */
    text-align: justify;
    color: var(--black);
    text-decoration: none;
    text-decoration-color: var(--black);
    max-width: 800px;
}

.contact_us{
    padding-top: 20px;
    background-color: var(--light-blue);

}

.contact_head {
            width: fit-content;
            margin: 0px auto;
            padding: 5px;
            margin-bottom: 20px;
            color: white;
            letter-spacing: 2.3px;
            border: 1px solid #F2BE22;
            border-radius: 50px;   
            text-underline-offset: 5px;
        }

        .contact_flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
        }

        .mapbox-iframe {
            border: 2px dotted #F2BE22;
            height: 310px;
            margin: 0px 10px 30px 10px;
        }

        .map-frame {
            width: 100%;
            height: 100%;
        }

        .write_ups div {
            margin-bottom: 20px;
            margin-right: 10px;
            color: white;
        }

        .write_ups a {
            color: white;
        }

        .write_ups h4 {
            color: #F2E52E
        }

        #socials {
            text-align: center;
            padding-top: 3px;
            background-color: var(--white);
        }


        .card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            gap: 20px;
            flex-direction: row;
            color: var(--black);
            margin: 30px 15px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 20px;
            /* padding: 20px; */
            width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        .service-card h4 {
            color: var(--black);
            text-align: center;
            margin-bottom: 5px;
        }
        .service-card p {
            text-align: center;
            color: var(--black);
            /* font-size: 1rem; */
            margin-bottom: 10px;
            padding: 15px;
            text-align: justify;
        }
        .service-card a {
            text-decoration: none;
            color: var(--dark-green);
            font-weight: 500;
            /* font-size: 1rem; */
            transition: color 0.2s;
        }
        .service-card a:hover {
            color: var(--main-green);
        }
        .service-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 20px 20px 0px 0px;
            margin-bottom: 10px;
        }
        .service-card:hover {
            transform: scale(1.05);
        }

        .it-services {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            color: var(--black);
        }
        .it-services-title {
            width: fit-content;
            text-align: center;
            margin-bottom: 20px;
            color: var(--main-green);
            font-size: 1.5rem;
            font-weight: 700;
        }
        .it-services-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .it-service-card {
            background-color: var(--white);
            /* border-radius: 20px; */
            padding: 20px;
            width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        .it-service-card h3 {
            color: var(--black);
            text-align: center;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .it-service-card p {
            text-align: justify;
            color: var(--black);
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .it-service-card img{
            margin-left: 80px;
            height: 100px;
            width: 100px;
        }

.solar-energy{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background-color: var(--light-gray);

}

.solar-energy-container {
    display: flex;
    color: var(--black);
    /* max-width: 800px; */
    text-align: justify;
    background-image: url('./images/blob6.svg');
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

    /* align-items: center; */
    /* background-size: cover; */
    /* background-position: center; */
}

#solar-energy-card {
    width: 300px;
    padding: 20px;
    border:2px solid white;
}

#solar-energy-card h3 {
margin-bottom: 10px;
text-align: center;
}

.solar-energy-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--main-green);
    font-size: 1.5rem;
    font-weight: 700;
}
.solar-energy p {
    /* margin-bottom: 20px; */
    /* line-height: 1.5; */
    font-size: 1.2rem;
    text-align: justify;
    color: var(--black);
}


        .get_free_quote_form{
            padding-top: 30px;
            background-color: white;
            display: flex;
            flex-direction: column;
        }
        .get_free_quote_form h3{
            color: var(--black);
            text-align: center;
        }
        .quote-form{
            display: flex;
            flex-direction: column;
        }

        input,textarea{
            width: 80vw;
            margin: 10px auto;
            padding: 10px;
        }

        textarea{
            height: 130px;
        }

        .quote-form button{
            /* width: fit-content; */
            margin: 5px auto 30px auto;
            background-color: var(--main-green);
            color: #fff;
            box-shadow: white;
            border: none;
	        padding: 0.75rem 2rem;
	        border-radius: 25px;
	        font-size: 1rem;
	        cursor: pointer;
	        transition: background 0.2s;
	        /* text-decoration: none; */
        }     

        footer {
        height: 80px;
        background-color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        }

        footer p,
        footer span {
        color: white;
        text-align: center;
        }
        footer p {
        padding: 10px;
        }

        @media screen and (min-width: 400px) {
             .logo {
            width: 100px;
        }
        .nav-hero-container {
            padding-top: 85px;
        }

        .nav-links {
            gap: 2rem;
        }
        }

        @media screen and (min-width: 700px) {

             .logo {
            width: 120px;
            }
            .nav-hero-container {
            padding-top: 105px;

        }

            .hero-content {
            padding: 0px 4%;
            }


            .hero-title {
                font-size: 2.6rem;
             }
            .hero-desc {
                font-size: 1.4rem;
             }

             
            .client_images img{
                height: 45px;
            }
            #client_images img{
                height: 60px;
            }
            #client_image img{
                height: 70px;
            }
            #anan img{
                height: 90px;
            }

             input,textarea{
            width: 70vw;
        
        }
        }

        @media screen and (min-width:750px) {
            .services {
                /* min-width: ; */
                width: 50%;
            }
            .service-card{
                width: 350px;
            }
        }

        @media screen and (min-width: 800px){
         .hero-content {
            max-width: 700px;
            padding: 0px;
            }

            input,textarea{
            width: 60vw;
        
        }

        }

        @media screen and (min-width: 1000px){
         .hero-content {
            max-width: 70vw;
            padding: 0px;
            }

         .service-card{
            width: 400px;
         }

        }