
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}


.container {
    max-width: auto;
    margin: 0 auto;
    padding: 0 20px;
}


.top-bar {
    position: absolute;
    margin-top: 17px;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background-color: white;
    z-index: 1; 
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 10; 
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    height: 80px;
    z-index: 2;
    margin-left: 20px; 
}

.menu-icon {
    display: flex;
    margin-right: 30px;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 2px;
}
.slide-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: #67c2ffa1;
    color: rgb(0, 0, 0);
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 200px;
}

.slide-menu ul {
    list-style: none;
    padding: 0 20px;
}

.slide-menu ul li {
    margin-bottom: 25px;
}

.slide-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.slide-menu ul li a:hover {
    color: #082c36;
}

.slide-menu.active {
    right: 0;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1000;
}

.menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #87CEEB 0%, #ffffff 100%);
    overflow:hidden; 
    padding-top: 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1;
}

.hero-text {
    max-width: 800px;
    text-align: center; 
}

.text-hero-h1-1 {
    font-size: 70px;
    font-weight: bold;

   
    background: linear-gradient(90deg, #c72cc7, #eb6ee3, #00c6ff, #0072ff);
    background-size: 300% 100%;  

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: inline-block;
    animation: gradientMove 7s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.text-hero-h1-2 {
    font-size: 60px;
    color: #000000;
    margin-bottom: 20px;
}

.dot-loader {
    display: inline-block;
    font-weight: bold;
    color: #000000;  
    margin-left:1pxpx; 
    position: relative;
    width: 20px;
}

.dot-loader::after {
    content: '.';
    animation: dots 3s steps(3, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}


.hero-text p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}


.hero-fade {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}


.sustainability-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.sustainability-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(115, 131, 107, 0.111);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
}

.sustainability-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111334;
}

.sustainability-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 60px;
}

/* Two-column blocks */
.sustainability-blocks {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.sustainability-block {
    max-width: 380px;
    text-align: left;
}

.sustainability-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111334;
}

.sustainability-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.turbine-section {
    position: relative;
    max-height: 800px;
    min-height: 600px;
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,0.7) 30%,
            rgba(255,255,255,0) 60%
        ),
        url("./bg2.jpg");
    background-repeat: no-repeat;
    background-position:center ;
    background-size:cover;
    background-color: #87ceeb; /* sky blue base */
    overflow: hidden;
    display: flex;
    align-items: center;
}

.turbine-content {
    width: 100%;
    max-width: 1200px;
    padding-left: 80px;
    position: relative;
    z-index: 2;
}

.turbine-text-box {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.1); /* 10% transparency */
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.turbine-text-box h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #111334;
}

.turbine-text-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

