/* styles.css */

.bg-primary-blue {
    background-color: #3498db;
}

.hero {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/1\ \(1\).jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}


.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.hero-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.hero-button:hover {
    background-color: #2c3e50;
}


.btn-primary-blue {
    background-color: #3498db;
    border-color: #3498db;
    color: #fff;
}

.btn-primary-blue:hover {
    background-color: #2c3e50;
    border-color: #2c3e50;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.about-card {
    transition: all 0.3s ease-in-out;
        background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.about-card-icon {
    animation: spin 2s infinite;
    font-size: 36px;
    color: #3498db;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.section-heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-text {
    font-size: 18px;
    margin-bottom: 40px;
}

.about-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-card-icon {
    font-size: 72px;
    color: #3498db;
    margin-bottom: 10px;
}

.about-card-heading {
     font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-card-text {
     font-size: 16px;
}

/* Training Section */

.training-card {
    transition: all 0.3s ease-in-out;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.training-card-heading {
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.training {
    padding: 100px 0;
    background-color: #fff;
}

.training-card {
    background-color: #f7f7f7;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.training-card-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.training-card-text {
    font-size: 16px;
    margin-bottom: 20px;
}

.training-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-card-list li {
    margin-bottom: 10px;
}

.btn-primary-blue {
    background-color: #3498db;
    border-color: #3498db;
    color: #fff;
}

.btn-primary-blue:hover {
    background-color: #2c3e50;
    border-color: #2c3e50;
}

/* Services Section */

.service-card {
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.service-card-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}




.services {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.service-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-card-icon {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 10px;
}

.service-card-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-card-text {
    font-size: 16px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #fff;
}

.why-choose-us-card {
    background-color: #f7f7f7;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.why-choose-us-icon {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 10px;
}

.why-choose-us-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.why-choose-us-text {
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.testimonial-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial-author-name {
    font-size: 18px;
    font-weight: bold;
}

.testimonial-author-title {
    font-size: 16px;
    color: #666;
}

/* Our Team Section */
.our-team {
    padding: 100px 0;
    background-color: #fff;
}

.team-member {
    text-align: center;
    margin-bottom: 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member-name {
    font-size: 18px;
    font-weight: bold;
}

.team-member-title {
    font-size: 16px;
    color: #666;
}

.team-member-bio {
    font-size: 14px;
    margin-bottom: 10px;
}

.team-member-social {
    margin-top: 10px;
}

.team-member-social a {
    margin-right: 10px;
    font-size: 18px;
    color: #3498db;
}

.team-member-social a:hover {
    color: #2c3e50;
}

/* Contact Us Section */
.contact-us {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.contact-info {
    margin-top: 20px;
}

.contact-info i {
    margin-right: 10px;
}

/* Map Section */
.map {
    padding: 0;
}

/* Footer Section */
.footer {
    padding: 50px 0;
    background-color: #2c3e50;
    color: #fff;
}

.footer h3 {
    margin-top: 0;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fff;
}

.footer ul li a:hover {
    color: #ccc;
}

.navbar-brand i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffffff;
}

/* Domestic Solar Systems Section */
.domestic-solar-systems {
    padding: 100px 0;
    background-color: #fff;
}

.domestic-solar-systems .benefit-card {
    background-color: #f7f7f7;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.domestic-solar-systems .benefit-card-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.domestic-solar-systems .benefit-card-text {
    font-size: 16px;
}

/* Light Industrial Solar Systems Section */
.light-industrial-solar-systems {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.light-industrial-solar-systems .benefit-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.light-industrial-solar-systems .benefit-card-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.light-industrial-solar-systems .benefit-card-text {
    font-size: 16px;
}


/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.gallery-item {
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}




.navbar.scrolled {
    background-color: #3498db;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



.navbar-brand.scrolled {
    color: #fff;
}
.navbar {
    background-color: #fff; /* White background */
    /* background-color: transparent; */ /* Transparent background */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: sticky;
     top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

.nav-link {
    font-size: 18px;
    margin-left: 20px;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: #3498db;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


@media (max-width: 768px) {
    .navbar-nav {
        background-color: #3498db;
        padding: 1rem;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.why-choose-us-card {
    transition: all 0.3s ease-in-out;
}

.why-choose-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.why-choose-us-icon {
    animation: spin 2s infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.benefit-card {
    transition: all 0.3s ease-in-out;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.benefit-card-heading {
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.benefit-card-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.benefit-card-icon.blue {
    color: #3498db;
}

.light-industrial-solar-systems {
    background-color: #f7f7f7;
    padding: 100px 0;
}

.light-industrial-solar-systems .section-heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.light-industrial-solar-systems .section-text {
    font-size: 18px;
    margin-bottom: 40px;
}

.light-industrial-solar-systems .benefit-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.light-industrial-solar-systems .benefit-card-icon {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 10px;
}

.light-industrial-solar-systems .benefit-card-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.light-industrial-solar-systems .benefit-card-text {
    font-size: 16px;
}

.light-industrial-solar-systems .benefit-card {
    transition: all 0.3s ease-in-out;
}

.light-industrial-solar-systems .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.our-offerings {
    padding: 50px 0;
    background-color: #f7f7f7;
}

.benefit-card-icon {
    margin-bottom: 20px;
}

.benefit-card-icon i {
    color: #3498db;
}

.training-programs {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.program-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}

.program-card-icon {
    color: #3498db;
    margin-bottom: 20px;
}

.program-card-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.program-card-text {
    font-size: 16px;
}

.section-heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-text {
    font-size: 18px;
    margin-bottom: 40px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item {
    height: 250px; /* adjust the height as needed */
    margin-bottom: 20px;
}