* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --primary: #309f8a;
    --accent: #38f9d7;
    --gradient: linear-gradient(135deg, #43e97b, #38f9d7);
    --radius: 12px;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fa;
    color: #333;
}
header {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 4px solid var(--primary);
    position: relative;
}
header img {
    width: 100px;
    border-radius: 33%;
    box-shadow: 0 0 30px rgba(56, 249, 215, 0.5);
    animation: logoReveal 1.2s ease-in-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
header img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(56, 249, 215, 0.7);
}
header h1 {
    font-size: 3.0em;
    margin: 10px 0 5px;
    font-weight: 700;
    animation: fadeInDown 1.2s ease-in-out;
}
header p {
    font-size: 1.3em;
    opacity: 0.95;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
    animation: fadeIn 1.5s ease-in-out;
}
nav {
    background-color: white;
    display: flex;
    justify-content: center;
    padding: 16px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav a {
    margin: 0 22px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s, transform 0.2s;
}
nav a:hover {
    color: #009688;
    transform: translateY(-2px);
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(to bottom, #e0f7fa, #ffffff);
    animation: fadeIn 2s ease-in-out;
}
.hero h1 {
    font-size: 3.2em;
    color: var(--primary);
    max-width: 850px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-in-out;
}
.hero p {
    font-size: 1.25em;
    margin: 25px 0 40px;
    max-width: 760px;
    color: #555;
    animation: fadeInUp 1.5s ease-in-out;
}
.cta-button {
    padding: 16px 36px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
}
.cta-button.primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 18px rgba(56, 249, 215, 0.4);
}
.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(56, 249, 215, 0.5);
}
.cta-button.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.cta-button.secondary:hover {
    background: #e0f2f1;
}
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #eeeeee;
    font-size: 0.9em;
    color: #777;
}

@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 2.4em;
    }

    .cta-button {
        width: 90%;
        max-width: 320px;
    }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes logoReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/*    FOOTER*/
footer.footer {
    background: rgba(255, 255, 255, 0.1);  /* transparencë e lehtë */
    backdrop-filter: blur(10px);           /* efekti glass */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #e0eaff;
    padding: 25px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.footer-nav a {
    color: #a0b9ff;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 12px;
    border-radius: 8px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-nav a svg {
    fill: #a0b9ff;
    transition: fill 0.3s ease;
}
.footer-nav a:hover,
.footer-nav a:focus {
    background-color: #4f6ef7;
    color: #fff;
    box-shadow: 0 0 8px #4f6ef7;
}
.footer-nav a:hover svg,
.footer-nav a:focus svg {
    fill: #fff;
}
.footer-copy {
    font-size: 14px;
    color: #a0b9ff;
    font-style: italic;
}
@media (max-width: 480px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    .footer-nav a {
        font-size: 18px;
    }
}