body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    margin: 0;
    background: transparent;
    color: #afb0c1;
    position: relative;
    z-index: 0;
}

header {
    padding: 10px 0;
    width: 100%;
    transition: all 0.5s ease; 
}

header.sticky {
    position: fixed;
    top: -100px; 
    width: 100%;
    background-color: #172944;
    z-index: 1000;
    box-shadow: 0 4px 2px -2px gray;
    padding: 5px 0; 
    transform: translateY(100px); 
    transition: transform 0.5s ease, background-color 0.3s ease, padding 0.3s ease; 
}



.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #172944 25%, #1a1a1a 100%);
}

.bg-shape {
    position: absolute;
    width: 20px;
    height: 20px;
    animation: move 30s linear infinite, rotate 10s linear infinite;
}

@keyframes move {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.bg-shape.square {
    background-color: rgba(0, 197, 185, 0.5);
}

.bg-shape.cross {
    clip-path: polygon(40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%);
}

.bg-shape.triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

header {
    padding: 10px 0;
    width: 100%;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 10px;
}

#nodemine-text {
    font-size: 18px;
    font-weight: 600;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.button {
    background-color: transparent;
    border: 2px solid #ffae00;
    border-radius: 8px;
    color: #ffae00;
    font-size: 18px;
    transition: 0.4s;
    cursor: pointer;
    padding: 10px 20px;
    text-align: center;
}

.clientareaButton {
    border-color: #00c5b9;
    color: #00c5b9;
}

.accesspanelButton:hover, .clientareaButton:hover {
    color: white;
}

.accesspanelButton:hover {
    background-color: #ffae00;
}

.clientareaButton:hover {
    background-color: #00c5b9;
}

.hero-section {
    background: transparent;
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    padding-top: 40px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {

    font-size: 3em;
}

.hero-content h2 {
    margin-bottom: 60px; 
}

.hero-button {
    background-color: #ffae00;
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.hero-button:hover {
    background-color: #00c5b9;
}


.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.features-section, .testimonials-section, .quote-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #172944;
    color: white;
}


.features-section .features-container {
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px; /* Increased the gap */
    justify-items: center;
    align-items: start;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: start;
}

.feature, .testimonial {
    background-color: #1c3b5a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    animation: fade-in 1s forwards;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.feature:hover, .testimonial:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 3rem;
    color: #ffae00;
    margin-bottom: 10px;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

footer {
    background: #182436;
    padding: 50px 20px;
    color: white;
}

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

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

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #afb0c1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffae00;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}

.terms-section {
    padding: 50px 20px;
    background-color: #172944;
    color: #afb0c1;
}

.terms-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h3 {
    color: #ffae00;
    margin-top: 20px;
    font-size: 1.5rem;
}

.terms-content p {
    line-height: 1.6;
    margin: 10px 0;
}

.terms-content p:last-child {
    margin-bottom: 0;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    background-color: #1c3b5a;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem; 
    color: #ffffff;
}

.quote h3 {
    margin-top: 20px;
    font-size: 1.2rem; 
    color: #ffae00;
}

.partners-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #172944;
    color: white;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.partner-logo {
    max-height: 100px;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}
