:root {
    --eyp-blue: #0033a0;
    --eyp-light-blue: #0055cc;
    --eyp-yellow: #ffcc00;
    --eyp-dark: #001a4d;
    --eyp-light: #e6f0ff;
    --gray-light: #f5f7fa;
    --gray-medium: #e8eef7;
    --gray-dark: #666666;
    --text-dark: #333333;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 51, 160, 0.12);
    --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --font-primary: 'Source Sans Pro', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}

* {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
    
    * {
        scroll-margin-top: 80px;
    }
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

#landing {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0033a0 0%, #0055cc 50%, #ffcc00 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    padding-left: 5%;
}

.landing-content {
    text-align: left;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.landing-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Source Sans Pro', sans-serif;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: slideInTitle 0.8s ease-out 0.3s both;
}

.landing-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    animation: slideInSubtitle 0.8s ease-out 0.6s both;
}

.landing-buttons {
    display: flex;
    gap: 30px;
    justify-content: left;
    flex-wrap: wrap;
    animation: slideInButtons 0.8s ease-out 0.9s both;
}

.btn {
    padding: 22px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 60px;
    border: 3px solid white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.btn-portfolio {
    background: rgba(255, 255, 255, 0.25);
}

.btn-portfolio:hover {
    color: var(--eyp-blue);
}

.btn-contact {
    background: rgba(255, 204, 0, 0.8);
    border-color: #ffcc00;
}

.btn-contact:hover {
    color: var(--eyp-dark);
}

.portrait {
    position: fixed;
    bottom: 0;
    right: 5%;
    height: 400px;
    object-fit: cover;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.portrait.hidden {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 20%;
    animation-delay: 9s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    right: 10%;
    animation-delay: 12s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(20px);
    }
}

@keyframes slideInTitle {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInSubtitle {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInButtons {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 51, 160, 0.1);
    transform: translateY(-100%);
    transition: transform 0.8s ease;
}

.nav-container.visible {
    transform: translateY(0);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--eyp-blue);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 600;
    color: var(--eyp-dark);
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--eyp-yellow);
    transition: width 0.4s ease;
}

.nav-link:hover {
    color: var(--eyp-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--eyp-blue);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--eyp-blue);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.component-error {
    background: #ffebee;
    color: #c62828;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin: 10px;
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

      
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        display: flex !important; 
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 12px 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }


    .nav-link:hover {
        background: var(--eyp-light);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        background: var(--eyp-light);
        color: var(--eyp-blue);
    }
}

#portfolio {
    padding-top: 20px;
    background: var(--white);
}

.section {
    padding: 75px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: var(--eyp-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 6px;
    background: var(--eyp-yellow);
    border-radius: 3px;
}

#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: linear-gradient(135deg, var(--eyp-light) 0%, var(--white) 100%);
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--eyp-dark);
}

.hero-title span {
    color: var(--eyp-blue);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--eyp-light-blue);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: right;
    align-items: right;
}

.hero-image-portrait {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--eyp-blue) 0%, var(--eyp-light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    object-fit: cover;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-image-portrait i {
    font-size: 8rem;
    color: white;
    z-index: 2;
}


#volunteer {
    background: var(--white);
}

.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.volunteer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--gray-medium);
}

.volunteer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 51, 160, 0.15);
    border-color: var(--eyp-yellow);
}

.card-header {
    background: linear-gradient(135deg, var(--eyp-blue) 0%, var(--eyp-light-blue) 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-icon {
    min-width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.card-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
}

.card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.card-body {
    padding: 30px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.duration {
    color: var(--eyp-blue);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.duration i {
    color: var(--eyp-yellow);
}

.card-description {
    line-height: 1.8;
    color: var(--text-dark);
}

#experience {
    background: var(--gray-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--eyp-blue);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--eyp-blue) 0%, var(--eyp-light-blue) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 51, 160, 0.15);
}

.timeline-content h3 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--eyp-dark);
}

.timeline-role {
    color: var(--eyp-blue);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

#contact {
    background: linear-gradient(135deg, var(--eyp-dark) 0%, #002366 100%);
    color: white;
}

#contact .section-title {
    color: white;
}

#contact .section-title::after {
    background: var(--eyp-yellow);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--eyp-yellow);
}

.contact-icon {
    font-size: 3rem;
    color: var(--eyp-yellow);
    margin-bottom: 20px;
}

.contact-value {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-description {
    font-size: 0.95rem;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--eyp-yellow);
    color: var(--eyp-dark);
    transform: translateY(-10px);
    border-color: var(--eyp-yellow);
}

footer {
    background: var(--eyp-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--eyp-blue) 0%, var(--eyp-light-blue) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 51, 160, 0.3);
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 51, 160, 0.4);
}

@media (max-width: 992px) {
    .landing-title {
        font-size: 3.5rem;
    }

    .landing-subtitle {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .volunteer-grid {
        grid-template-columns: 1fr;
    }

    #hero {
        flex-direction: column;
    }

    .hero-image-portrait {
        width: 300px;
        height: 300px;
    }

    .hero-image-portrait i {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .landing-title {
        font-size: 2.8rem;
    }

    .landing-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .nav-links {
        display: none;
    }

    .portrait {
        height: 250px;
        right: 2%;
    }

    .hero-image-portrait {
        width: 250px;
        height: 250px;
    }

    .hero-image-portrait i {
        font-size: 5rem;
    }
}

.services-hero {
    background: linear-gradient(135deg, var(--eyp-blue) 0%, var(--eyp-dark) 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-top: 80px;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.services-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 80px;
}

.service-category-title {
    font-size: 2.5rem;
    color: var(--eyp-dark);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.service-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--eyp-yellow);
    border-radius: 3px;
}

.service-category-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 51, 160, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--gray-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 51, 160, 0.15);
    border-color: var(--eyp-yellow);
}

.service-card-header {
    background: linear-gradient(135deg, var(--eyp-blue) 0%, var(--eyp-light-blue) 100%);
    color: white;
    padding: 25px;
}

.service-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-card-duration {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.service-card-body {
    padding: 25px;
}

.service-card-description {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.learning-outcomes {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.learning-outcomes h4 {
    color: var(--eyp-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.learning-outcomes ul {
    padding-left: 20px;
    color: var(--text-dark);
}

.learning-outcomes li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.cost-section {
    background: var(--gray-light);
    padding: 60px 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.cost-section h2 {
    color: var(--eyp-dark);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.cost-principle {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.cost-principle h3 {
    color: var(--eyp-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.covered-costs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.cost-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cost-item i {
    color: var(--eyp-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cost-item h4 {
    color: var(--eyp-dark);
    margin-bottom: 10px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: var(--eyp-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h4 {
    color: var(--eyp-dark);
    margin-bottom: 10px;
}



.btn-services {
    display: inline-block;
    background: linear-gradient(135deg, var(--eyp-blue) 0%, var(--eyp-light-blue) 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 51, 160, 0.2);
}

.btn-services:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 51, 160, 0.3);
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero {
        padding: 80px 20px;
    }

    .services-section {
        padding: 60px 20px;
    }

    .service-category-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .cost-section {
        padding: 40px 20px;
    }

    .cost-principle {
        padding: 25px;
    }

    .service-card-header,
    .service-card-body {
        padding: 20px;
    }
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 51, 160, 0.15);
    min-width: 250px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(0, 51, 160, 0.1);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin-left: 25px;
}

.dropdown-item:hover {
    background: var(--eyp-light);
    color: var(--eyp-blue);
    border-left-color: var(--eyp-yellow);
    padding-left: 25px;
}

@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: 75%;
        margin-top: 10px;
        margin-left: 135px;
        display: none;
    }

    .dropdown-menu.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-item {
        padding: 10px 20px;
        border-left: none;
        border-left: 3px solid transparent;
    }

    .dropdown-item:hover {
        padding-left: 25px;
        background: var(--eyp-light);
    }
}

@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-dropdown:hover .dropdown-toggle .dropdown-icon {
        transform: rotate(180deg);
    }
}
@media (min-width: 380px) {
     .landing-title {
        margin-top: -10vh;
        font-size: 2.3rem;
    }
}

@media (min-width: 300px) {
     .landing-title {
        margin-top: -30vh; 
        font-size: 2.3rem;
    }
}