* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.section {
    min-height: 90vh;
}

body {
    font-family: 'Inter', sans-serif;
    background: #090909;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

body.hamburger-opened {
    overflow: hidden;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.navbar-wrapper {
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.navbar {
    margin: 25px 0;
    border-radius: 35px;
    position: fixed;
    top: 0;
    width: 100%;
    max-width: min(1210px, 95%);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 995;
    transition: all 0.3s ease;
    height: 69px;
}

#navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ham-menu {
    display: none;
    cursor: pointer;
    color: #48b864;
    font-size: 35px;
}

.ham-menu.hidden {
    display: none !important;
}


.logo {
    font-size: 28px;
    font-weight: bold;
    color: #48b864;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 30px;
    flex-shrink: 0;
}

.logo:hover {
    text-shadow: 0 0 20px #48b864;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
}

.nav-links a:hover {
    color: #48b864;
    text-shadow: 0 0 20px #48b864;
}

.glass-effect {
    backdrop-filter: blur(25px);
    border: 1px solid #181d1d;
    transition: all 0.3s ease;
}

.hero {
    margin-top: 130px;
    display: flex;
    min-height: 80vh;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services-hero h3 {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 30px;
    text-align: center;
}




.footer {
    color: #fff;
    padding: 3rem 2rem;
    border-top: 2px solid #181d1d;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.footer-left {
    flex: 1;
}

.footer-left img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.footer p {
    font-size: 1rem;
    margin: 10px 0;
    opacity: 0.8;
}

.createdBy {
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #48b864;
}

.createdBy:hover {
    transform: scale(1.03);
}

.poweredBy {
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #48b864;
}

.poweredBy:hover {
    transform: scale(1.03);
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #48b864;
    transform: scale(1.2);
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h3 {
    color: #48b864;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-right ul {
    list-style: none;
}

.footer-right li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-right a:hover {
    color: #48b864;
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-right {
        text-align: center;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        text-align: center;
    }
    
}


.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 18px 32px;
    font-size: 18px;
    z-index: 996;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.cookie-banner a {
    color: #48b864;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#cookie-accept {
    color: #48b864;
    border: 1px solid #48b864;
    border-radius: 999px;
    background: transparent;
    font-weight: 500;
    font-size: 1.1rem;
    width: 220px;
    margin-right: 10px;
    transition: transform 0.3s;
    padding: 10px;
    cursor: pointer;
}

#cookie-accept:hover {
    transform: scale(1.03);
}

#cookie-decline {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 999px;
    background: transparent;
    font-weight: 500;
    font-size: 1.1rem;
    width: 160px;
    margin-right: 10px;
    transition: transform 0.3s;
    padding: 10px;
    cursor: pointer;
}

#cookie-decline:hover {
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        font-size: 16px;
    }

    .cookie-banner span {
        margin: 10px 70px;
        display: block;
        font-size: 23px;
    }

    .cookie-buttons {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    #cookie-accept,
    #cookie-decline {
        border-radius: 999px;
        text-align: center;
        width: 70%;
        font-size: 1rem;
        padding: 12px;
        margin: 0;
    }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .toggle-hamburger { display: flex !important; }
}

.toggle-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    height: 30px;
    cursor: pointer;
    z-index: 998;
}

.toggle-hamburger .line {
    height: 3px;
    background-color: #48b864;
    border-radius: 2px;
    width: 30px;
    transition: background-color 0.25s;
}

.toggle-hamburger:hover .line {
    background-color: #48b864aa;
}

.toggle-hamburger.open .line:nth-child(1) { animation: hamburger-icon-firstline 1s forwards; }
.toggle-hamburger.open .line:nth-child(2) { animation: hamburger-icon-midline 1s forwards; }
.toggle-hamburger.open .line:nth-child(3) { animation: hamburger-icon-lastline 1s forwards; }

.toggle-hamburger.close .line:nth-child(1) { animation: hamburger-icon-firstline 1s forwards reverse; }
.toggle-hamburger.close .line:nth-child(2) { animation: hamburger-icon-midline 1s forwards reverse; }
.toggle-hamburger.close .line:nth-child(3) { animation: hamburger-icon-lastline 1s forwards reverse; }

@keyframes hamburger-icon-firstline {
    0% { transform: none; }
    100% { transform: rotate(45deg) translateY(7px) translateX(7px); }
}
@keyframes hamburger-icon-midline {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes hamburger-icon-lastline {
    0% { transform: none; }
    100% { transform: rotate(-45deg) translateY(-7px) translateX(7px); }
}


.hamburger {
    display: flex;
    margin: 25px 0;
    border-radius: 35px;
    position: fixed;
    top: 80px;
    width: 100%;
    max-width: min(1250px, 95%);
    padding: 0 40px;
    justify-content: space-between;
    align-items: center;
    z-index: 995;
    transition: all 0.3s ease;
    height: calc(100vh - 80px - 40px);
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 20px;
}

.hamburger-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 994;
    background: rgba(0, 0, 0, 0.6); 
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hamburger-wrapper.opened {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.hamburger-wrapper.closed {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

@media (min-width: 901px) {
    .hamburger-wrapper {
        display: none !important;
    }
}

.hamburger a {
    font-size: 35px;
    font-weight: 500;
}


.services-hero {
    margin-top: 170px;
    text-align: center;
}

.cta-button-blue{
    color: #48b864;
    border: 1px solid #48b864;
    border-radius: 999px;
    background: transparent;
    font-weight: 500;
    font-size: 1.1rem;
    width: 160px;
    margin-right: 10px;
    transition: transform 0.3s;
    padding: 10px;
    cursor: pointer;
}

.cta-button-blue:hover {
    transform: scale(1.03);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.service-card {
    padding: 35px;
    border: 1px solid #181d1d;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover i {
    box-shadow: #48b86421 0 5px 15px;
    font-size: 28px;
}

.service-card i {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #48b864;
    background: linear-gradient(135deg, rgba(72, 184, 100, 0.1) 0%, rgba(72, 184, 100, 0.05) 100%);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-card p {
    font-size: 16px;
    color: #ffffffa8;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #181d1d;
    margin-top: 10px;
}

.card-footer a {
    color: #48b864;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-footer a:hover {
    color: #48b864d5;
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.cta-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    border-radius: 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.cta-container:hover {
    transform: translateY(-6px);
}

.cta-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 30px;
    color: #ffffffa8;
}

@media (max-width: 768px) {
    .services-hero .heroLeft h3 {
        font-size: 50px;
    }

    .services-hero .heroLeft p {
        font-size: 18px;
    }

    .services-grid {
        padding: 0 18px;
        margin: 30px 0;
    }
}