
      
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-wrapper {
            margin: 0;
            padding: 0;
        }

      .hero-section {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            overflow: hidden;
            margin-top: 60px;
        }


        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("../images/image.png");
            background-size: cover;
        }

        @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: 3rem;
    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'; 
}

.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;
}

@media (max-width:424px){
    .title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    font-family: 'Crimson Pro'; 
}

.subtitle {
    font-size: 1rem;
    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("https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80");
            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: clamp(40px, 6vw, 60px) 20px;
            background-color: #f8f9fa;
        }


        .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;
            }
        }

        .solution-points {
            list-style: none;
            padding-left: 0;
        }

        .solution-points li {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .point-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .point-icon {
            font-size: 24px;
            color: #145476;
        }

        .text-alignment {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            text-align: justify;
            word-spacing: -0.04em;
            line-height: 1.5;
        }