@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* MODERN COLOR PALETTE - Based on Veryeri Logo */
:root {
    /* Primary Colors from Logo */
    --accent: #2563EB;
    /* Logo Blue */
    --accent-dark: #1e3a5f;
    /* Logo Navy */
    --accent-light: #00BCD4;
    /* Logo Cyan */

    /* Base Colors */
    --text: #1a1a1a;
    --text-light: #4a5568;
    --bg: #f8fafc;
    --surface: #ffffff;
    --border: #e2e8f0;

    /* Fonts */
    --f-head: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --f-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --pad-x: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.4s ease;
}

img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    font-family: var(--f-head);
    line-height: 1.2;
    font-weight: 600;
    color: var(--text);
}

.title-xl {
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -0.02em;
}

.title-lg {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.text-lead {
    font-family: var(--f-sub);
    font-size: 1.35rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 60ch;
    line-height: 1.6;
}

.btn-wow {
    display: inline-block;
    padding: 1.2em 3.5em;
    border: 2px solid var(--text);
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: 1;
    transition: 0.4s ease;
}

.btn-wow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-wow:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-wow:hover {
    color: #fff;
}

/* MODERN HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.2rem var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    transition: 0.3s;
}

.header-logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 103px;
    width: auto;
    max-width: 375px;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--f-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
    line-height: 1;
}

.logo-tagline {
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    text-transform: capitalize;
    letter-spacing: 0.3px;
    position: relative;
    transition: 0.3s;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-item:hover {
    color: var(--accent);
}

.nav-item:hover::after {
    width: 100%;
}

/* CTA Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    background: var(--text);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    white-space: nowrap;
}

.header-cta svg {
    transition: 0.3s;
}

.header-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header-cta:hover svg {
    transform: translateX(3px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg)translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    z-index: 1002;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.mobile-menu-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-item {
    padding: 1.5rem 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid #e2e8f0;
    transition: 0.3s;
}

.mobile-nav-item:hover {
    color: var(--accent);
    padding-left: 1rem;
}

.mobile-cta {
    display: block;
    margin-top: 2.5rem;
    padding: 1.2rem 2rem;
    background: var(--accent);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.4rem;
}

@media(max-width: 1024px) {

    .header-nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-container {
        padding: 1rem 1.5rem;
    }

    .logo-image {
        height: 89px;
        max-width: 274px;
    }

    .logo-main {
        font-size: 2.14rem;
    }

    .logo-tagline {
        font-size: 0.95rem;
    }

    .mobile-toggle {
        position: relative;
        z-index: 1003;
    }
}

/* FULLSCREEN HERO SLIDER */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(37, 99, 235, 0.6) 100%);
}

.hero-slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 2rem;
}

.hero-content-inner {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-main-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-divider-line {
    width: 80px;
    height: 4px;
    background: var(--accent-light);
    margin-bottom: 2rem;
    box-shadow: 0 0 20px var(--accent-light);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: var(--accent-light);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
}

.hero-btn-primary svg {
    transition: 0.3s;
}

.hero-btn-primary:hover svg {
    transform: translateX(5px);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: all 0.3s;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.hero-slide-number {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: #fff;
    font-family: var(--f-head);
    z-index: 3;
}

.current-slide {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.slide-divider {
    font-size: 1.5rem;
    opacity: 0.6;
}

.total-slides {
    font-size: 1.5rem;
    opacity: 0.6;
}

.hero-nav-controls {
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-nav-arrow {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.hero-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: scale(1.1);
}

.hero-progress-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.progress-dot {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.progress-fill {
    position: absolute;
    inset: 0;
    background: var(--accent-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
    box-shadow: 0 0 10px var(--accent-light);
}

.progress-dot.active .progress-fill {
    animation: progressFill 8s linear;
}

@keyframes progressFill {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

@media (max-width: 768px) {
    .hero-content-inner {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-slide-number {
        font-size: 0.8em;
    }

    .hero-nav-controls {
        display: none;
    }
}

/* SECTIONS */
.sect {
    padding: 8rem var(--pad-x);
    position: relative;
}

.dark-sec {
    background: var(--surface);
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: center;
}

.about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-img img {
    height: 100%;
    width: 100%;
    transition: transform 0.6s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* PROJECTS MASONRY */
.projects-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    display: block;
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-details {
    padding: 2rem;
}

.project-location {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.project-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* FEATURES */
.feat-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feat-item {
    background: var(--surface);
    padding: 4rem 2.5rem;
    border: 1px solid var(--border);
    transition: 0.4s;
    text-align: center;
    border-radius: 8px;
}

.feat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.feat-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.feat-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feat-item p {
    font-size: 0.95rem;
    color: #666;
}

/* STATS PARALLAX */
.parallax-sect {
    padding: 10rem var(--pad-x);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.parallax-sect::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.stat-box {
    position: relative;
    z-index: 2;
    margin: 2rem;
}

.stat-num {
    font-size: 4.5rem;
    font-family: var(--f-head);
    color: #fff;
    line-height: 1;
    font-weight: 600;
}

.stat-label {
    font-family: var(--f-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.8rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* PAGE HERO (for inner pages) */
.page-hero {
    padding: 12rem var(--pad-x) 6rem;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    position: relative;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* FOOTER */
footer {
    background: #f8fafc;
    color: #64748b;
}

.footer-top {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    padding: 5rem var(--pad-x);
    text-align: center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.footer-cta-btn {
    display: inline-block;
    padding: 1.2em 3.5em;
    background: #fff;
    color: var(--text);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.footer-main {
    padding: 5rem var(--pad-x) 3rem;
    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #64748b;
    transition: 0.3s;
    display: block;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.footer-contact svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact span,
.footer-contact a {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.footer-hours span {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-hours strong {
    color: var(--text);
    font-weight: 600;
}

.footer-bottom {
    background: #f1f5f9;
    padding: 2rem var(--pad-x);
    border-top: 1px solid #e2e8f0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-credit a {
    color: var(--accent);
    font-weight: 600;
    transition: 0.3s;
}

.footer-credit a:hover {
    color: var(--accent-dark);
}

/* RESPONSIVE */
@media(max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        padding: 8rem 2rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 101;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        min-height: 400px;
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .title-xl {
        font-size: 3rem;
    }

    .feat-list {
        grid-template-columns: 1fr;
    }

    .slide-prev,
    .slide-next {
        display: none;
    }

    .projects-masonry {
        grid-template-columns: 1fr;
    }

    .project-layout {
        grid-template-columns: 1fr;
    }

    /* About Page - Mobile */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .about-img {
        min-height: 300px !important;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media(max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        width: 100%;
        right: -100%;
    }

    :root {
        --pad-x: 1.5rem;
    }
}

/* SCROLL TO TOP */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

/* AOS */
.aos-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.aos-up.visible {
    opacity: 1;
    transform: translateY(0);
}