/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h3{
	font-family: 'Georgia', serif; /* Another serif font for harmony */
    font-size: 38px;
    color: #4CC343;
    font-weight: 700;
    margin: 0 15px 35px 0;
    letter-spacing: 1px;
    text-transform: capitalize; /* Optional: Makes the heading title-case */
	text-align: center;
}

/* Header Styles */
header {
    position: relative;
    z-index: 10; /* Ensure header appears on top of the slider */
}

/* Header container (for logo and menu) */
.header-container {
    position: absolute; /* Position on top of the slider */
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 25px 0px 0px;
    z-index: 10;
    background: none; /* Remove background color */
}

/* Header container (for logo and menu) */
.header-about {
    position: absolute; /* Position on top of the slider */    
	margin-top: 25px;
	margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;    
    z-index: 10;
    background: none; /* Remove background color */
}

.about {
    position: relative;
    width: 100%;
    height: 90px; /* Adjust height of the slider */
    overflow: hidden;
}

/* Logo Styles */
.logo img {
    height: 35px;
    margin: 0;
	padding: 0px 25px  0px;
}

/* Navigation Menu */
.menu ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 20px 20px 0px 0px ;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.menu a:hover {
    color: #9EF16D; /* Hover effect color */
}

/* Image Slider Styles */
.slider {
    position: relative;
    width: 100%;
    height: 750px; /* Adjust height of the slider */
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Adjusted for better responsiveness */
}

/* Slide content positioning */
.slide-content {
    position: absolute;
    bottom: 120px; /* Positioning at the bottom */
    left: 20px;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Dark background for better text visibility */
    border-radius: 10px;
    max-width: 60%;
}

/* Heading Style */
.slide-content h2 {
	font-family: bernard; /* Another serif font for harmony */
    font-size: 36px;
    margin: 0 0 10px 0;
}

/* Slogan Style */
.slogan {
    font-size: 18px;
    margin: 0 0 20px 0;
    font-weight: lighter;
}

/* Description Style */
.description {
    font-size: 14px;
    margin: 10px 0;
    font-weight: 400;
}

/* Button Style */
.button {
    text-decoration: none;
    background-color: #9EF16D;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #e04a2f; /* Darker shade for button hover */
}

/* Section Background */
.cards-section {
    
	background-color: #f5f5f5;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Cards Container */
.cards-container {
	
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card Styles */
.card {
    background: #9EF16D;
    border-radius: 10px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Image Wrapper */
.card-image-wrapper {
    position: relative;
    margin-bottom: 15px;
}

/* Circle Image */
.card-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: full;
    border: 3px solid #ddd;
}

/* Icon on Corner */
.card-icon img{
    position: absolute;
    top: 115px;
    right: 5px;
    background-color: #ff5733;
    color: white;
    font-size: 14px;
    border-radius: 50%;
    padding: 5px;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Title */
.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    color: white;
}

/* Card Description */
.card-description {
    font-size: 16px;
    color: black;
    margin-bottom: 20px;
	line-height: 1.5rem;
}

/* Card Button */
.card-button {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
	font-weight: bold;
}

.card-button:hover {
    background-color: #9EF16D;
	color: black;
	font-weight: bold;
}

/* Parallax Section Styling */
.parallax-section {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    padding: 100px 0;
    background-image: url('images/hero.jpg'); /* Background image URL */
    background-attachment: fixed; /* Parallax effect */
    background-size: cover;
    background-position: center;
    height: 550px; /* Set the height of the parallax section */
	margin-bottom: 50px;
}

/* Overlay to make the background dull */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    filter: brightness(60%); /* Dull effect on background */
    z-index: 1; /* Behind the content */
}

/* Content Layer (Text & Images) */
.parallax-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2; /* Content is above the background and overlay */
}

/* Left Side Image */
.image {
    flex: 1;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.image img {
    width: 70%;
    height: auto;
    border-radius: 10px;
}

/* Right Side Text Content */
.parallax-text {
    flex: 1;
    padding: 20px 40px;
    text-align: left;
    color: white;
}

.parallax-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.parallax-slogan {
    font-family: 'Georgia', serif;
    font-size: 18px;
    color: white;
    font-style: italic;
    margin-bottom: 20px;
}

.parallax-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: white;
}

/* Button */
.parallax-button {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.parallax-button:hover {
    background-color: #0056b3;
}
 

  /* Section styling */
        .energy-calculator-section {
            background-color: #f0f0f0;
            padding: 40px 0;
            text-align: center;
        }

        .energy-calculator-container {
            max-width: 500px;
            margin: 0 0 0 50px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
 

        label {
            font-size: 18px;
            margin: 10px 0;
        }

        input[type="number"] {
            padding: 10px;
            font-size: 16px;
            width: 90%;
            margin-bottom: 15px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }

        input[type="submit"] {
            padding: 12px 20px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }

        input[type="submit"]:hover {
            background-color: #0056b3;
        }

        .results {
            margin-top: 20px;
            font-size: 18px;
        }


    /* Product Categories Section */
        .product-categories-section {
            background-color: #9EF16D;
            padding: 40px 40px;
			
        }

        .product-categories-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .categories-heading {
            font-size: 36px;
            color: #333;
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
        }

        .categories-description {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
        }

        .categories-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .category-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 275px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-10px);
        }

        .category-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .category-content {
            padding: 20px;
        }

        .category-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .category-description {
            font-size: 16px;
            color: #666;
            margin-bottom: 15px;
        }

        .category-button {
            text-decoration: none;
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        .category-button:hover {
            background-color: #0056b3;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .categories-grid {
                flex-direction: column;
                align-items: center;
            }
        }


/* about us */

.about-container {
    display: flex;
	padding-left: 40px;
    align-items: left;
    justify-content: justify;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

 .about-container p{
    flex: 1;
    padding: 40px;
    text-align: left;
    justify-content: justify;
	font-size: 14px;
    line-height: 1.8;
    margin: 10px 0;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.contact-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Left Side: Form Section */
.form-section {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.contact-form-heading {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.contact-form-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

.contact-form textarea {
    resize: none;
}

.contact-form input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form input[type="submit"]:hover {
    background-color: #0056b3;
}


/* Footer Styles */
.classic-footer {
    background-color: #9EF16D;
    color: #fff;
    padding: 40px 0;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin: 10px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin: 10px 0;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin: 5px 0;
}

.footer-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-menu ul li a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff;
}

/* Newsletter */
.newsletter form {
    margin-top: 10px;
}

.newsletter input[type="email"] {
    padding: 10px;
    width: 80%;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.newsletter button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: #0056b3;
}

#popup-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin: 100px auto;
    text-align: center;
}

/* Right Side: Image Section */
.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

 
/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        flex-direction: column;
    }
	
	.parallax-content {
        flex-direction: column;
		height: 100%;
    }

    .image {
        height: 250px;
        margin-bottom: 20px;
    }

    .parallax-text {
        text-align: center;
        padding: 20px;
    }

    .parallax-heading {
        font-size: 28px;
    }

    .parallax-description {
        font-size: 14px;
    }

    .parallax-button {
        font-size: 14px;
        padding: 10px 20px;
    }
	
    .form-section,
    .image-section {
        flex: none;
        width: 100%;
    }

    .form-section {
        padding: 20px;
    }

    .image-section img {
        height: 250px;
        object-fit: cover;
    }
	.footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .newsletter input[type="email"] {
        width: 100%;
    }
	.highlight {
    color: #9EF16D; /* Example: Gold color */
    font-weight: bold;
	font-size: 35px;
	}
	/* Header */
    .header-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .logo img {
        height: 40px;
        margin-left: 0;
    }

    .menu {
        width: 100%;
        text-align: center;
    }

    .menu ul {
        flex-wrap: nowrap; /* Prevent wrapping */
        justify-content: space-around; /* Adjust spacing for items */
    }

    .menu li {
        margin: 0 10px; /* Reduce margin to fit in one line */
    }

	.slide-content {
		position: absolute;
		bottom: 120px; /* Positioning at the bottom */
		left: 20px;
		color: white;
		padding: 20px;
		background: rgba(0, 0, 0, 0.5); /* Dark background for better text visibility */
		border-radius: 10px;
		max-width: 30%;
	}
	
	    .energy-calculator-container {
        width: 90%;
		height: 90%;
        margin: 0 auto;
        padding: 15px;
    }

    label {
        font-size: 16px;
    }

    input[type="number"] {
        font-size: 14px;
        padding: 8px;
    }

    input[type="submit"] {
        font-size: 14px;
        padding: 10px;
    }

    .results {
        font-size: 16px;
    }
	/* Slide content positioning */
.slide-content {
    position: absolute;
    bottom: 90px; /* Positioning at the bottom */
    left: 20px;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Dark background for better text visibility */
    border-radius: 10px;
    max-width: 60%;
}

/* Heading Style */
.slide-content h2 {
	font-family: bernard; /* Another serif font for harmony */
    font-size: 26px;
    margin: 0 0 10px 0;
}

/* Slogan Style */
.slogan {
    font-size: 18px;
    margin: 0 0 20px 0;
    font-weight: lighter;
}
}

 

/* Responsive Styles */

/* For tablets and smaller desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    .header-container {
        padding: 10px;
    }

    .logo img {
        height: 45px;
        margin-left: 10px;
    }

    .menu ul {
        justify-content: flex-end;
    }

    .menu li {
        margin: 0 10px;
    }

    .slider {
        height: 650px;
    }

    .slide-content {
        max-width: 70%; /* Allow more space for text */
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slogan {
        font-size: 16px;
    }

    .description {
        font-size: 12px;
    }

    .button {
        font-size: 14px;
        padding: 8px 16px;
    }
.card-icon img{
    position: absolute;
    top: 115px;
    right: 25px;
    background-color: #ff5733;
    color: white;
    font-size: 14px;
    border-radius: 50%;
    padding: 5px;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}
}
 

/* For small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Header */
    .logo img {
        height: 35px;
    }
	
	h3{
	font-family: 'Georgia', serif; /* Another serif font for harmony */
    font-size: 18px;
    color: #4CC343;
    font-weight: 700;
    margin: 0 0 5px;
    letter-spacing: 1px;
    text-transform: capitalize; /* Optional: Makes the heading title-case */
	text-align: center;
	}

    .menu ul {
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Allow horizontal scrolling if needed */
    }

    .menu li {
        margin: 0 5px; /* Further reduce margin */
        white-space: nowrap; /* Prevent text wrapping inside menu items */
    }

    /* Slider */
    .slider {
        height: 350px; /* Further reduce the slider height */
    }

    .slide-content {
        left: 5px;
        right: 5px;
        bottom: 10px;
    }

    .slide-content h2 {
        font-size: 10px;
    }

    .slogan {
        font-size: 8px;
    }

    .description {
        font-size: 8px;
    }

    .button {
        font-size: 8px;
        padding: 6px 12px;
    }
	

	.slide-content {
		position: absolute;
		bottom: 20px; /* Positioning at the bottom */
		left: 10px;
		color: white;
		padding: 20px;
		background: rgba(0, 0, 0, 0.5); /* Dark background for better text visibility */
		border-radius: 10px;
		max-width: 30%;
	}
	
	    .energy-calculator-container {
        width: 100%;
		height: 100%;
        padding: 10px;
    }

    label {
        font-size: 12px;
    }

    input[type="number"] {
        font-size: 12px;
        padding: 6px;
    }

    input[type="submit"] {
        font-size: 12px;
        padding: 8px;
    }

    .results {
        font-size: 14px;
    }
}

/* Responsive card Layout */
@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}
 
 