@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.paragraph {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: justify;
    /* word-spacing: -0.05em; */
    line-height: 1.8;
    font-family: 'IBM Plex Serif', sans-serif;

}
@media (max-width:376px ){
    .paragraph {
        margin-bottom: 1rem;
        font-size: 1.1rem;
        text-align: justify;
        word-spacing: -0.15em;
        line-height: 1.8;
        font-family: 'IBM Plex Serif', sans-serif;
    
    }
}
.page-wrapper {
    margin-top: 60px;
    padding: 0;
}

.hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
   
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/site_img16.jpeg");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(93, 176, 114, 0.9) 0%,
            rgba(93, 176, 114, 0.8) 20%,
            rgba(93, 176, 114, 0.6) 40%,
            rgba(93, 176, 114, 0.4) 60%,
            rgba(93, 176, 114, 0.2) 80%,
            rgba(93, 176, 114, 0) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    font-family: 'Crimson Pro';
}
@media (max-width:326px){
    .title {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 0.8rem;
        animation: fadeInUp 1s ease-out;
        font-family: 'Crimson Pro';
    }
    .subtitle {
        font-size: 1.5rem;
        max-width: 600px;
        animation: fadeInUp 1s ease-out 0.5s;
        opacity: 0;
        animation-fill-mode: forwards;
        font-family: 'IBM Plex Serif', sans-serif;
        text-align: justify;
        word-spacing: -0.15em;
    }
    
}

.subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: 'IBM Plex Serif', sans-serif;
}


.sesola-page {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.sesola-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px 20px;
}

.sesola-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/site_img2.jpg");
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: panBackground 30s infinite alternate;
}

@keyframes panBackground {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.1) translate(-50px, -20px);
    }
}

.sesola-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(20, 84, 118, 0.95) 0%, rgba(20, 84, 118, 0.8) 50%, rgba(20, 84, 118, 0.4) 100%);
    z-index: 1;
}

.sesola-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    max-width: 1400px;
    margin: 0 auto;
}

.sesola-main-title {
    font-size: 2rem;
    max-width: 1200px;
    /* margin: 0 auto 20px; */
    line-height: 1.3;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.sesola-subtitle {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin: 20px 0 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1s forwards;
}

.sesola-highlight {
    color: #5DB072;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.sesola-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.sesola-feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: clamp(20px, 3vw, 30px);
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.sesola-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sesola-feature-icon {
    width: clamp(60px, 8vw, 80px);
    height: auto;
    margin-bottom: 20px;
    filter: invert(1);
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.sesola-feature-card:hover .sesola-feature-icon {
    transform: scale(1.1);
}

.sesola-feature-title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 15px;
    color: white;
}

.sesola-feature-desc {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.sesola-projects {
    padding:  30px 0px;
    background-color: #f4f4f4;
}

.sesola-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    max-width: 1400px;
    margin: 0 auto;
}

.sesola-project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sesola-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.sesola-project-image {
    width: 100%;
    height: clamp(200px, 30vw, 250px);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sesola-project-card:hover .sesola-project-image {
    transform: scale(1.05);
}

.sesola-project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(15px, 3vw, 20px);
    background: linear-gradient(transparent, rgba(20, 84, 118, 0.9));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sesola-project-card:hover .sesola-project-info {
    transform: translateY(0);
}

.sesola-project-name {
    font-size: clamp(1.1rem, 1.8vw, 1.2rem);
    margin-bottom: 5px;
}

.sesola-project-location {
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    opacity: 0.9;
}

.sesola-module-type {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #FF6B00;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.sesola-project-card:hover .sesola-module-type {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .sesola-features {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .sesola-project-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

@media (min-width: 1400px) {

    .sesola-content,
    .sesola-features,
    .sesola-project-grid {
        padding: 0;
    }
}

.solution-item {
    background-color: #f4f4f4;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #145476;
    margin-bottom: 1rem;
}

.solution-text {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: justify;
    word-spacing: -0.05em;
    line-height: 1.8;
}

.img-wrapper {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 
.img-wrapper:hover img {
    transform: scale(1.05);
} */

@media (max-width: 991px) {
    .solution-item {
        padding: 1rem;
    }

    .img-wrapper {
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .solution-item {
        padding: 2rem;
    }

    .row {
        align-items: center;
    }
}

/* second section */

/* Section with background image */
.solar-container-unique {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: url('../images/ground-mounted-image.jpg') no-repeat center center/cover;
    padding: 40px;
}

/* Overlay box with text */
.info-box-unique {
    background: rgba(10, 31, 68, 0.9);
    /* Dark blue overlay */
    padding: 40px;
    color: white;
    max-width: 600px;
    border-radius: 10px;
}

/* Strength list styles */
.strength-list-unique {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    
}

.strength-item-unique {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
    font-family: 'IBM Plex Serif', sans-serif;
}

.strength-item-unique:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
}

.strength-item-unique i {
    font-size: 24px;
    margin-right: 10px;
    color: #f8c102;
    /* Yellowish-Gold for icons */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .solar-container-unique {
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .info-box-unique {
        max-width: 100%;
        width: 100%;
    }

    .strength-item-unique {
        justify-content: center;
    }

    .strength-item-unique i {
        margin-right: 5px;
    }
}

.services-section {
    text-align: center;
    padding: 30px 15px;
    background-color: #f4f4f4;
    margin: 0 auto;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center; /* Center the grid items */
    align-items: center; /* Center items vertically */
    max-width: 1400px;
    margin: 0 auto; /* Center the entire grid horizontally */
    text-align: center; /* Center text inside the grid items */
}


.benefit-card {
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background: white;
    background-color: #f4f4f4;
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #007bff;
    margin: 0 auto 15px;
}

.service-icon {
    font-size: 40px;
    color: #007bff;
}

.benefit-text {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.service-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}