:root {
    --avyro-blue: #1677e8;
    --avyro-blue-light: #20a4f3;
    --avyro-green: #8bd52b;
    --avyro-green-light: #b5ed45;
    --navy: #071a33;
    --navy-light: #132c4d;
    --text: #142844;
    --muted: #60718a;
    --white: #ffffff;
    --light-bg: #f4f9ff;
    --border: rgba(22, 119, 232, 0.14);
    --shadow: 0 20px 60px rgba(7, 26, 51, 0.1);
    --radius: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font-family: inherit;
}

.avyro-hero {
    position: relative;
    min-height: 98vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 70px;
    background-image:
        linear-gradient(
            rgba(4, 17, 34, .50),
            rgba(4, 17, 34, .45)
        ),
        url("assets/hero.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 1;
}


.orb-one {
    width: 220px;
    height: 220px;
    left: -80px;
    top: 18%;
    background: rgba(20, 126, 232, .16);
    animation: floatOrb 8s ease-in-out infinite;
}


.orb-two {
    width: 180px;
    height: 180px;
    right: -60px;
    top: 30%;
    background: rgba(139, 215, 42, .10);
    animation: floatOrb 10s ease-in-out infinite reverse;
}

.orb-three {
    width: 130px;
    height: 130px;
    left: 45%;
    bottom: 5%;
    background: rgba(20, 126, 232, .10);
    animation: floatOrb 7s ease-in-out infinite;
}
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: heroReveal .8s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 30px;
    padding: 9px 16px;
    border: 1px solid rgba(20, 120, 232, .15);
    border-radius: 50px;
    color: #071a33;
    background: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 700;
}
.badge-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #8bd72a;
    box-shadow:
        0 0 0 5px rgba(139, 215, 42, .12),
        0 0 15px rgba(139, 215, 42, .35);
}


.hero-content h1 {
    max-width: 900px;
    margin: 0 0 24px;
    color: #ffffff;
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: clamp(42px, 5.5vw, 76px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2.5px;
}

.hero-content h1 span {
    display: inline-block;
    background: linear-gradient(
        90deg,
        #147ee8,
        #8bd72a
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 760px;
    margin: 10px;
    color: #ffffff !important;
    opacity: 1 !important;
    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 38px;
}


.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.hero-btn span {
    transition: transform .3s ease;
}


.hero-btn:hover {
    transform: translateY(-3px);
}


.hero-btn:hover span {
    transform: translate(3px, -2px);
}


.hero-btn-primary {
    color: #ffffff;

    background: linear-gradient(
        120deg,
        #147ee8,
        #6255f5
    );

    box-shadow:
        0 12px 30px rgba(20, 105, 216, .28);
}


.hero-btn-primary:hover {
    color: #ffffff;

    box-shadow:
        0 17px 38px rgba(20, 105, 216, .38);
}


.hero-btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(8px);
}


.hero-btn-secondary:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, .18);
}
.hero-services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 70px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
    font-weight: 600;
    list-style: none;
}

.hero-services li {
    display: flex;
    align-items: center;
}


.hero-services li + li::before {
    content: "";

    display: inline-block;

    width: 4px;
    height: 4px;

    margin: 0 9px;

    border-radius: 50%;

    background: #8bd72a;
}


@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -15px);
    }
}

@media (max-width: 1100px) {
    .hero-content h1 {
        font-size: clamp(40px, 6vw, 62px);
    }
}


@media (max-width: 600px) {

    .avyro-hero {
        min-height: 100vh;

        padding: 125px 0 55px;

        background-position: center;
    }

    .hero-container {
        padding: 0 18px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 18px;
        font-size: 13px;
        line-height: 1.4;
        position: relative;
        z-index: 2;
    }
    .hero-content h1 {
        margin-bottom: 17px;

        font-size: clamp(38px, 10vw, 52px);

        line-height: 1.06;

        letter-spacing: -1.5px;
    }

    .hero-description {
        max-width: 95%;

        margin-top: 0;

        font-size: 14px;

        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 10px;

        margin-top: 22px;
    }

    .hero-btn {
        width: 100%;
        max-width: 250px;

        min-height: 49px;
    }

    .hero-services {
        margin-top: 20px;

        line-height: 1.8;
    }

    .hero-services li {
        font-size: 11.5px;
    }
}


@media (max-width: 380px) {

    .logo img {
        width: 120px;
    }

    .avyro-hero {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-description {
        font-size: 13px;
    }
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(7, 26, 51, .12);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;

    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 10px;
    background: #071a33;
    transition: transform .3s ease, opacity .3s ease;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: flex !important;
        flex-shrink: 0;
    }

}
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 155px;
    height: auto;
    object-fit: contain;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--avyro-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        var(--avyro-blue),
        var(--avyro-green)
    );
}


.section {
    position: relative;
    padding: 100px 0;
}





.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--avyro-blue),
        var(--avyro-blue-light)
    );
    box-shadow: 0 12px 28px rgba(20, 120, 232, .25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(20, 120, 232, .35);
}

.form-note {
    margin-top: 15px;
    color: var(--muted);
    font-size: 12px;
}

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: #20c967;
    font-size: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 15px 35px rgba(32, 201, 103, .35);
}



.hero-btn-secondary {
    border: 1px solid var(--border);
    color: var(--navy);
    background: #fff;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-card {
    position: relative;
    z-index: 4;
    width: min(450px, 100%);
    padding: 28px;
    border: 1px solid rgba(20, 120, 232, .12);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-brand img {
    width: 105px;
    height: auto;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--avyro-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.live-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--avyro-green);
}

.card-heading {
    margin-top: 35px;
}

.card-heading small {
    color: var(--avyro-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.card-heading h2 {
    margin-top: 8px;
    color: var(--navy);
    font-size: 38px;
    line-height: 1.1;
}

.card-heading h2 strong {
    color: var(--avyro-blue);
}

.card-heading p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}

.mini-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 25px;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e6eef7;
    border-radius: 13px;
    background: #fafdff;
    transition:
        transform var(--transition),
        border-color var(--transition);
}

.mini-card:hover {
    transform: translateY(-3px);
    border-color: rgba(20, 120, 232, .25);
}

.mini-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    border-radius: 9px;
    color: var(--avyro-blue);
    background: #edf6ff;
    font-weight: 800;
}

.mini-card strong {
    display: block;
    color: var(--navy);
    font-size: 11px;
}

.mini-card span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 9px;
}

.growth-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 14px;
    background: #071a33;
}

.growth-header {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 11px;
}

.growth-header strong {
    color: var(--avyro-green);
}

.growth-bars {
    height: 75px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 10px;
}

.growth-bars span {
    flex: 1;
    height: var(--height);
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(
        to top,
        var(--avyro-blue),
        var(--avyro-green)
    );
    opacity: .9;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border: 1px solid rgba(20, 120, 232, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--shadow-md);
    animation: floatingCard 4s ease-in-out infinite;
}

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    color: var(--avyro-blue);
    background: #edf6ff;
}

.green-icon {
    color: var(--avyro-green-dark);
    background: #f0f9e6;
}

.floating-card strong {
    display: block;
    color: var(--navy);
    font-size: 11px;
}

.floating-card span {
    display: block;
    color: var(--muted);
    font-size: 9px;
}

.floating-web {
    left: -20px;
    top: 90px;
}

.floating-growth {
    right: -25px;
    bottom: 85px;
    animation-delay: 1.5s;
}

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.visual-circle {
    position: absolute;
    border: 1px solid rgba(20, 120, 232, .14);
    border-radius: 50%;
}

.circle-one {
    width: 430px;
    height: 430px;
}

.circle-two {
    width: 330px;
    height: 330px;
}

.reveal {
    animation: revealUp .7s ease both;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1000px) {
    .main-nav {
        gap: 18px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 70px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-services {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 768px) {

    .section {
        padding: 70px 0;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .hero-content h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .floating-web {
        left: -5px;
    }

    .floating-growth {
        right: -5px;
    }

    .digital-card {
        padding: 22px;
    }

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

    .footer-bottom {
        flex-direction: column;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 40px;
    }

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

    .hero-btn {
        width: 100%;
    }

    .hero-services {
        gap: 8px;
        font-size: 11px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .digital-card {
        width: 100%;
        padding: 18px;
        border-radius: 20px;
    }

    .card-heading h2 {
        font-size: 30px;
    }

    .mini-services {
        gap: 7px;
    }

    .mini-card {
        padding: 8px;
    }

    .mini-icon {
        width: 30px;
        height: 30px;
    }

    .floating-card {
        padding: 9px 11px;
    }

    .floating-web {
        left: -8px;
        top: 45px;
    }

    .floating-growth {
        right: -8px;
        bottom: 45px;
    }

    .floating-card strong {
        font-size: 9px;
    }

    .floating-card span {
        font-size: 8px;
    }

    .floating-icon {
        width: 30px;
        height: 30px;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }
}

.avyro-services {
    position: relative;
    padding: 105px 0 110px;
    background: #fff;
    overflow: hidden;
}

.services-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.services-intro {
    margin-bottom: 55px;
}

.direction-label,
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: #1478e8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.direction-label span,
.section-label span {
    width: 35px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, #1478e8, #8bd72a);
}

.services-direction h2,
.services-intro h2 {
    max-width: 750px;
    margin: 0;
    color: #071a33;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.services-direction h2 em,
.services-intro h2 em {
    color: #1478e8;
    font-style: normal;
}

.services-list {
    border-top: 1px solid #dce8f5;
}

.service-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    padding: 32px 0;
    border-bottom: 1px solid #dce8f5;
    transition: padding-left .3s ease, background .3s ease;
}

.service-item:hover {
    padding-left: 12px;
}

.service-number {
    color: #1478e8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding-top: 4px;
}

.service-content {
    max-width: 850px;
}

.service-content h3 {
    margin: 0 0 9px;
    color: #071a33;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 750;
    transition: color .3s ease;
}

.service-item:hover .service-content h3 {
    color: #1478e8;
}

.service-content p {
    max-width: 780px;
    margin: 0;
    color: #61708a;
    font-size: 16px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 15px;
    color: #071a33;
    font-size: 13px;
    font-weight: 750;
    transition: color .3s ease, gap .3s ease;
}

.service-link span {
    color: #1478e8;
    font-size: 17px;
    transition: transform .3s ease;
}

.service-link:hover {
    color: #1478e8;
    gap: 13px;
}

.service-link:hover span {
    transform: translateX(3px);
}

.services-direction {
    margin-top: 100px;
    padding-top: 75px;
    border-top: 1px solid #dce8f5;
}

.services-direction p {
    max-width: 850px;
    margin-top: 22px;
    color: #61708a;
    font-size: 17px;
    line-height: 1.75;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 850px;
    margin-top: 40px;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 1px solid #dce8f5;
    border-radius: 16px;
    background: #f8fbff;
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.approach-item:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 120, 232, .3);
    box-shadow: 0 15px 35px rgba(20, 120, 232, .09);
}

.approach-item > strong {
    color: #1478e8;
    font-size: 13px;
}

.approach-item span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #61708a;
    font-size: 13px;
}

.approach-item b {
    color: #071a33;
    font-size: 15px;
}



.services-cta span {
    font-size: 18px;
}

.services-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(20, 120, 232, .32);
}

.avyro-services::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -280px;
    top: 100px;
    border-radius: 50%;
    border: 1px solid rgba(20, 120, 232, .08);
    pointer-events: none;
}

.avyro-services::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    left: -170px;
    bottom: 100px;
    border-radius: 50%;
    background: rgba(139, 215, 42, .06);
    pointer-events: none;
}

@media (max-width: 800px) {
    .avyro-services {
        padding: 80px 0;
    }

    .services-intro {
        margin-bottom: 40px;
    }

    .service-item {
        grid-template-columns: 55px 1fr;
        gap: 20px;
        padding: 27px 0;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .services-direction {
        margin-top: 75px;
        padding-top: 55px;
    }
}

@media (max-width: 600px) {
    .services-container {
        width: min(100% - 30px, 1180px);
    }

    .avyro-services {
        padding: 65px 0 75px;
    }

    .services-direction h2,
    .services-intro h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .direction-label,
    .section-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 25px 0;
    }

    .service-number {
        padding: 0;
        font-size: 12px;
    }

    .service-content h3 {
        font-size: 21px;
    }

    .service-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .service-link {
        font-size: 12px;
    }

    .services-direction {
        margin-top: 60px;
        padding-top: 50px;
    }

    .services-direction p {
        font-size: 15px;
    }

    .approach-item {
        padding: 17px;
    }

    .services-cta {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }
}





.avyro-logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 42px 0 45px;
    background: #fff;
    border-top: 1px solid #e7f0fa;
    border-bottom: 1px solid #e7f0fa;
}

.avyro-logo-heading {
    margin-bottom: 30px;
    text-align: center;
    color: #526b89;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.avyro-logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: avyroLogoSlide 24s linear infinite;
    will-change: transform;
}

.avyro-logo-item {
    width: 220px;
    height: 80px;
    margin: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avyro-logo-item img {
    display: block;
    width: 180px;
    height: auto;
    max-height: 75px;
    object-fit: contain;
    opacity: .85;
    transition: opacity .3s ease, transform .3s ease;
}

.avyro-logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes avyroLogoSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.avyro-logo-slider::after,
.avyro-logo-slider::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.avyro-logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.avyro-logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.avyro-logo-slider:hover .avyro-logo-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .avyro-logo-slider {
        padding: 32px 0 35px;
    }

    .avyro-logo-heading {
        padding: 0 20px;
        font-size: 11px;
        letter-spacing: 1.2px;
        margin-bottom: 22px;
    }

    .avyro-logo-item {
        width: 170px;
        margin: 0 15px;
    }

    .avyro-logo-item img {
        width: 145px;
        max-height: 65px;
    }

    .avyro-logo-track {
        animation-duration: 18s;
    }
}





.avyro-tech-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0 90px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(20, 120, 232, .18),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(139, 215, 42, .08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071d35 0,
            #092d50 50%,
            #082548 100%
        );
    color: #fff;
}

.avyro-tech-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .035) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    pointer-events: none;
}

.avyro-tech-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: -250px;
    border-radius: 50%;
    border: 1px solid rgba(30, 130, 235, .25);
    box-shadow:
        0 0 0 70px rgba(30, 130, 235, .025),
        0 0 0 140px rgba(139, 215, 42, .02);
    pointer-events: none;
}

.avyro-tech-section .container {
    position: relative;
    z-index: 2;
}

.avyro-tech-header {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}

.avyro-tech-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    margin-bottom: 22px;
    border: 1px solid rgba(30, 130, 235, .45);
    border-radius: 50px;
    background: rgba(20, 120, 232, .12);
    color: #63aaff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .8px;
}

.avyro-tech-header h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -2.5px;
    font-weight: 800;
    color: #fff;
}

.avyro-tech-header h2 span {
    display: block;
    color: #2186ed;
    font-style: normal;
}

.avyro-tech-header h2 span::after {
    content: "";
}

.avyro-tech-header p {
    max-width: 720px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    line-height: 1.75;
}

.avyro-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.avyro-tech-card {
    position: relative;
    min-height: 280px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(55, 145, 230, .3);
    border-radius: 17px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, .055),
        rgba(255, 255, 255, .018)
    );
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.avyro-tech-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(30, 130, 235, .08);
    filter: blur(5px);
}

.avyro-tech-card::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, #1685ed, #8bd72a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.avyro-tech-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 145, 240, .65);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .2);
}

.avyro-tech-card:hover::after {
    transform: scaleX(1);
}

.avyro-tech-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    border: 1px solid rgba(90, 180, 245, .3);
    border-radius: 12px;
    background: linear-gradient(
        145deg,
        rgba(50, 150, 230, .28),
        rgba(30, 110, 180, .14)
    );
    font-size: 25px;
}

.avyro-tech-number {
    position: absolute;
    top: 31px;
    right: 30px;
    color: rgba(139, 215, 42, .8);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.avyro-tech-card h3 {
    position: relative;
    margin: 0 0 10px;
    color: #fff;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}

.avyro-tech-card p {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.75;
}

.avyro-ai-strip {
    position: relative;
    margin-top: 55px;
    text-align: center;
}

.avyro-ai-title {
    display: block;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.avyro-ai-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.avyro-ai-logo {
    min-width: 125px;
    height: 52px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 28px;
    background: #fff;
    color: #303844;
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
    font-size: 15px;
    white-space: nowrap;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.ai-logo-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}

.avyro-ai-logo small {
    margin-left: -7px;
    color: #8a9098;
    font-size: 12px;
    font-weight: 700;
}

.avyro-ai-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}
@media (max-width:700px){.avyro-ai-strip{margin-top:40px}.avyro-ai-logos{gap:9px}.avyro-ai-logo{min-width:auto;height:46px;padding:0 15px;font-size:13px}.ai-logo-symbol{font-size:18px}}

@media (max-width:950px){.avyro-tech-section{padding:85px 0 75px}.avyro-tech-grid{grid-template-columns:repeat(2,1fr)}.avyro-tech-card:last-child{grid-column:span 2}}


@media (max-width:650px){
.avyro-tech-section{padding:70px 0 60px}
.avyro-tech-header{margin-bottom:42px}
.avyro-tech-header h2{font-size:38px;letter-spacing:-1.5px}.avyro-tech-header p{font-size:15px}.avyro-tech-grid{grid-template-columns:1fr;gap:16px}

.avyro-tech-card:last-child {
    grid-column: auto;
}

.avyro-tech-card {
    min-height: auto;
    padding: 25px;
}

.avyro-tech-pill {
    min-width: 90px;
    padding: 11px 15px;
    font-size: 13px;
}

}
.avyro-portfolio-section{
    position:relative;
    padding:70px 0;
    background:linear-gradient(
        135deg,
        #dff1ff 0%,
        #f7fbff 50%,
        #e8f7dc 100%
    );
    overflow:hidden;
}

.avyro-portfolio-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -350px;
    right: -250px;
    background: radial-gradient(
        circle,
        rgba(25, 126, 235, .1),
        transparent 68%
    );
    pointer-events: none;
}

.avyro-portfolio-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.avyro-portfolio-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 55px;
}

.avyro-portfolio-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border: 1px solid #b9eaff;
    border-radius: 50px;
    background: #f5fcff;
    color: #078fd9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.avyro-portfolio-head h2 {
    margin: 22px 0 12px;
    color: #071b35;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -2px;
    font-weight: 800;
}

.avyro-portfolio-head h2 span {
    background: linear-gradient(90deg, #1676e8, #00aeea);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.avyro-portfolio-head p {
    max-width: 780px;
    margin: 0 auto;
    color: #5c6f87;
    font-size: 16px;
    line-height: 1.7;
}

.avyro-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.avyro-portfolio-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5edf5;
    box-shadow: 0 8px 25px rgba(8, 41, 78, .06);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.avyro-portfolio-card:hover {
    transform: translateY(-8px);
    border-color: #b9dfff;
    box-shadow: 0 22px 50px rgba(12, 93, 170, .15);
}

.avyro-portfolio-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
    background: #f3f7fb;
}

.avyro-portfolio-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .55s ease;
}

.avyro-portfolio-card:hover .avyro-portfolio-image img {
    transform: scale(1.045);
}

.avyro-portfolio-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 18px;
}

.avyro-portfolio-info > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eef7ff;
    color: #147be8;
    font-size: 11px;
    font-weight: 800;
}

.avyro-portfolio-info h3 {
    margin: 0 0 3px;
    color: #0a203b;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.avyro-portfolio-info p {
    margin: 0;
    color: #718198;
    font-size: 12px;
    line-height: 1.4;
}

.avyro-portfolio-button {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

.avyro-portfolio-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 50px;
    background: #087ff0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(8, 127, 240, .22);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.avyro-portfolio-button a span {
    font-size: 18px;
    transition: transform .3s ease;
}

.avyro-portfolio-button a:hover {
    transform: translateY(-3px);
    background: #056ed4;
    box-shadow: 0 17px 35px rgba(8, 127, 240, .28);
}

.avyro-portfolio-button a:hover span {
    transform: translateX(5px);
}


/* Portfolio Responsive */

@media (max-width: 1050px) {

    .avyro-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 750px) {

    .avyro-portfolio-section {
        padding: 80px 0;
    }

    .avyro-portfolio-head {
        margin-bottom: 40px;
    }

    .avyro-portfolio-head h2 {
        font-size: 36px;
        letter-spacing: -1.4px;
    }

    .avyro-portfolio-head p {
        font-size: 15px;
    }

    .avyro-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}

@media (max-width: 520px) {

    .avyro-portfolio-section {
        padding: 65px 0;
    }

    .avyro-portfolio-section .container {
        padding: 0 18px;
    }

    .avyro-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .avyro-portfolio-head h2 {
        font-size: 32px;
    }

    .avyro-portfolio-button {
        margin-top: 40px;
    }

    .avyro-portfolio-button a {
        width: 100%;
    }

}
.avyro-tools-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0 70px;
    background: #fff;
}
.avyro-tools-head {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}
.avyro-tools-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #1478ed;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.avyro-tools-head .eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #1478ed, #8bd72a);
}

.avyro-tools-head h2 {
    margin: 0;
    color: #071a36;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 800;
}

.avyro-tools-head h2 span {
    color: #1478ed;
}

.avyro-tools-head p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.avyro-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 24px;
    padding: 5px 0;
}

.avyro-marquee::after,
.avyro-marquee::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.avyro-marquee::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #fff,
        rgba(255, 255, 255, 0)
    );
}

.avyro-marquee::after {
    right: 0;
    background: linear-gradient(
        270deg,
        #fff,
        rgba(255, 255, 255, 0)
    );
}

.avyro-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 18px;
    animation: avyro-slide 32s linear infinite;
}

.avyro-tool {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    padding: 0 24px;
    border: 1px solid #e1e8f2;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(15, 35, 70, .06);
    color: #253858;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.avyro-tool i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eef6ff;
    color: #1478ed;
    font-size: 17px;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.avyro-tool:hover {
    transform: translateY(-4px);
    border-color: #b9d8ff;
    box-shadow: 0 14px 35px rgba(20, 120, 237, .12);
}

.avyro-tool:hover i {
    background: #1478ed;
    color: #fff;
    transform: scale(1.08);
}

.marquee-reverse .avyro-marquee-track {
    animation: avyro-slide-reverse 36s linear infinite;
}

@keyframes avyro-slide {

    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }

}

@keyframes avyro-slide-reverse {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}

.avyro-marquee:hover .avyro-marquee-track {
    animation-play-state: paused;
}
@media (max-width: 768px) {
    .avyro-tools-section {
        padding: 25px 0 20px !important;
        min-height: auto !important;
        height: auto !important;
        margin-bottom: 0 !important;
    }

    .avyro-tools-section .container {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .avyro-tools-head {
        margin-bottom: 22px !important;
    }

    .avyro-tools-section .btn,
    .avyro-tools-section a {
        margin-bottom: 0 !important;
    }

    .avyro-tools-section .container > :last-child,
    .avyro-tools-section > :last-child {
        margin-bottom: 0 !important;
    }

}
@media (max-width: 480px) {
    .avyro-tools-section {
        padding: 20px 0 15px !important;
    }

    .avyro-tools-head {
        margin-bottom: 18px !important;
    }

}
@media (prefers-reduced-motion: reduce) {

    .avyro-marquee-track {
        animation: none;
    }

}
.avyro-reviews-section {
  width: 100%;
  padding: 100px 0;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 169, 130, 0.07), transparent 30%),
    linear-gradient(180deg, #f7fcfb 0%, #eef8f5 100%);
}

.avyro-reviews-section .container {
  width: min(1200px, calc(100% - 64px));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.avyro-reviews-head {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
  box-sizing: border-box;
}

.avyro-reviews-head .eyebrow {
  display: inline-block;
  margin: 0 0 12px;
}

.avyro-reviews-head h2 {
  margin: 0 0 16px;
  padding: 0;
  color: #102f46;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
}

.avyro-reviews-head h2 span {
  color: #00a982;
}

.avyro-reviews-head p {
  margin: 0;
  padding: 0;
  color: #587180;
  font-size: 16px;
  line-height: 1.7;
}

.avyro-reviews-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  box-sizing: border-box;
}

.avyro-review-card {
  width: 100%;
  min-width: 0;
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: linear-gradient(145deg, #ffffff 0%, #f8fcfb 100%);
  border: 1px solid #d5e8e3;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(16, 47, 70, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.avyro-review-card:hover {
  transform: translateY(-7px);
  border-color: #9dd9ca;
  box-shadow: 0 20px 45px rgba(0, 169, 130, 0.12);
}

.avyro-review-top {
  width: 100%;
  min-height: 38px;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
}

.avyro-review-stars {
  display: block;
  margin: 0;
  padding: 0;
  color: #fbbc04;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
  flex: 0 1 auto;
}

.avyro-review-card .avyro-google-mark {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  flex: 0 0 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid #e2e7ea !important;
  border-radius: 50% !important;
  line-height: 0 !important;
  isolation: isolate;
}

.avyro-review-card .avyro-google-mark-svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  flex: none !important;
  transform: translate(-50%, -50%) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.avyro-review-card .avyro-google-mark-svg path {
  vector-effect: none !important;
}

.avyro-review-text {
  flex: 1;
  min-width: 0;
  margin: 0 0 25px;
  padding: 0;
  color: #425b68;
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: normal;
  box-sizing: border-box;
}

.avyro-review-author {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid #e1ece9;
  box-sizing: border-box;
}

.avyro-review-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  max-width: 44px;
  min-height: 44px;
  max-height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #102f46, #00a982);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(0, 169, 130, 0.18);
  box-sizing: border-box;
}

.avyro-review-author-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.avyro-review-author-info strong {
  margin: 0 0 2px;
  padding: 0;
  color: #102f46;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.avyro-review-author-info span {
  margin: 0;
  padding: 0;
  color: #526b78;
  font-size: 12px;
  line-height: 1.4;
}

.avyro-google-trust {
  width: 100%;
  margin: 38px 0 0;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #d5e8e3;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(16, 47, 70, 0.06);
}

.avyro-google-trust-icon {
  position: relative !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  flex: 0 0 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px !important;
  line-height: 0 !important;
  isolation: isolate;
}

.avyro-google-trust-icon .avyro-google-trust-svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  flex: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translate(-50%, -50%) !important;
  box-sizing: border-box !important;
  pointer-events: none !important;
}

.avyro-google-trust-content {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}

.avyro-google-trust-content strong {
  display: block;
  margin: 0 0 3px;
  padding: 0;
  color: #102f46;
  font-size: 16px;
  line-height: 1.4;
}

.avyro-google-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 2px;
  padding: 0;
}

.avyro-google-rating span:first-child {
  color: #102f46;
  font-size: 15px;
  font-weight: 700;
}

.trust-stars {
  color: #fbbc04;
  font-size: 15px;
  letter-spacing: 1px;
}

.avyro-google-trust-content p {
  margin: 0;
  padding: 0;
  color: #526b78;
  font-size: 12px;
  line-height: 1.5;
}

.avyro-google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 100px;
  background: #102f46;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.avyro-google-btn:hover {
  background: #00a982;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 169, 130, 0.22);
}

@media (max-width: 1200px) {
  .avyro-reviews-section .container {
    width: calc(100% - 48px);
  }

  .avyro-reviews-grid {
    gap: 20px;
  }

  .avyro-review-card {
    padding: 24px;
  }
}

@media (max-width: 1024px) {
  .avyro-reviews-section {
    padding: 80px 0;
  }

  .avyro-reviews-section .container {
    width: calc(100% - 40px);
  }

  .avyro-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .avyro-review-card {
    min-height: 280px;
    padding: 23px;
  }

  .avyro-reviews-head h2 {
    font-size: 36px;
  }

  .avyro-google-trust {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .avyro-reviews-section {
    width: 100%;
    padding: 58px 0;
  }

  .avyro-reviews-section .container {
    width: calc(100% - 28px);
    max-width: none;
  }

  .avyro-reviews-head {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .avyro-reviews-head h2 {
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: -0.4px;
  }

  .avyro-reviews-head p {
    font-size: 14px;
    line-height: 1.65;
  }

  .avyro-reviews-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .avyro-review-card {
    width: 100%;
    min-height: 0;
    padding: 20px;
    border-radius: 16px;
  }

  .avyro-review-top {
    min-height: 28px;
    margin-bottom: 15px;
    gap: 8px;
  }

  .avyro-review-stars {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .avyro-review-card .avyro-google-mark {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    max-width: 27px !important;
    min-height: 27px !important;
    max-height: 27px !important;
    flex: 0 0 27px !important;
  }

  .avyro-review-card .avyro-google-mark-svg {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    max-width: 13px !important;
    min-height: 13px !important;
    max-height: 13px !important;
  }

  .avyro-review-text {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .avyro-review-author {
    gap: 10px;
    padding-top: 13px;
  }

  .avyro-review-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    max-width: 38px;
    min-height: 38px;
    max-height: 38px;
    flex: 0 0 38px;
    font-size: 14px;
  }

  .avyro-review-author-info strong {
    font-size: 14px;
  }

  .avyro-review-author-info span {
    font-size: 11px;
  }

  .avyro-google-trust {
    margin-top: 24px;
    padding: 20px 16px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    border-radius: 16px;
  }

  .avyro-google-trust-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    flex: 0 0 40px !important;
  }

  .avyro-google-trust-icon .avyro-google-trust-svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
  }

  .avyro-google-trust-content {
    width: 100%;
  }

  .avyro-google-rating {
    justify-content: center;
  }

  .avyro-google-btn {
    width: 100%;
    max-width: 280px;
    padding: 11px 18px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .avyro-reviews-section {
    padding: 52px 0;
  }

  .avyro-reviews-section .container {
    width: calc(100% - 24px);
  }

  .avyro-reviews-head h2 {
    font-size: 27px;
  }

  .avyro-review-card {
    padding: 18px;
  }

  .avyro-review-text {
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .avyro-reviews-section {
    padding: 48px 0;
  }

  .avyro-reviews-section .container {
    width: calc(100% - 20px);
  }

  .avyro-reviews-head {
    margin-bottom: 28px;
  }

  .avyro-reviews-head h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .avyro-reviews-head p {
    font-size: 13px;
    line-height: 1.6;
  }

  .avyro-reviews-grid {
    gap: 14px;
  }

  .avyro-review-card {
    padding: 17px;
    border-radius: 15px;
  }

  .avyro-review-top {
    min-height: 25px;
    margin-bottom: 13px;
  }

  .avyro-review-stars {
    font-size: 15px;
    letter-spacing: 0.7px;
  }

  .avyro-review-card .avyro-google-mark {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    flex: 0 0 24px !important;
  }

  .avyro-review-card .avyro-google-mark-svg {
    width: 11px !important;
    height: 11px !important;
    min-width: 11px !important;
    max-width: 11px !important;
    min-height: 11px !important;
    max-height: 11px !important;
  }

  .avyro-review-text {
    margin-bottom: 17px;
    font-size: 13px;
    line-height: 1.7;
  }

  .avyro-review-author {
    gap: 9px;
    padding-top: 12px;
  }

  .avyro-review-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    max-width: 36px;
    min-height: 36px;
    max-height: 36px;
    flex: 0 0 36px;
    font-size: 13px;
  }

  .avyro-review-author-info strong {
    font-size: 13px;
  }

  .avyro-review-author-info span {
    font-size: 10.5px;
  }

  .avyro-google-trust {
    margin-top: 22px;
    padding: 18px 13px;
    gap: 9px;
    border-radius: 15px;
  }

  .avyro-google-trust-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    flex: 0 0 36px !important;
  }

  .avyro-google-trust-icon .avyro-google-trust-svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
  }

  .avyro-google-trust-content strong {
    font-size: 15px;
  }

  .avyro-google-rating {
    gap: 7px;
  }

  .avyro-google-rating span:first-child {
    font-size: 14px;
  }

  .trust-stars {
    font-size: 14px;
  }

  .avyro-google-trust-content p {
    font-size: 11px;
    line-height: 1.5;
  }

  .avyro-google-btn {
    width: 100%;
    max-width: none;
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .avyro-reviews-section {
    padding: 42px 0;
  }

  .avyro-reviews-section .container {
    width: calc(100% - 16px);
  }

  .avyro-reviews-head h2 {
    font-size: 22px;
  }

  .avyro-reviews-head p {
    font-size: 12.5px;
  }

  .avyro-review-card {
    padding: 15px;
  }

  .avyro-review-stars {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .avyro-review-card .avyro-google-mark {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    flex: 0 0 22px !important;
  }

  .avyro-review-card .avyro-google-mark-svg {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    max-width: 10px !important;
    min-height: 10px !important;
    max-height: 10px !important;
  }

  .avyro-review-text {
    font-size: 12.5px;
  }

  .avyro-review-avatar {
    width: 34px;
    height: 34px;
    min-width: 34px;
    max-width: 34px;
    min-height: 34px;
    max-height: 34px;
    flex: 0 0 34px;
  }

  .avyro-review-author-info strong {
    font-size: 12.5px;
  }

  .avyro-review-author-info span {
    font-size: 10px;
  }

  .avyro-google-trust {
    padding: 17px 11px;
  }

  .avyro-google-trust-icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    flex: 0 0 34px !important;
  }

  .avyro-google-trust-icon .avyro-google-trust-svg {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    max-width: 17px !important;
    min-height: 17px !important;
    max-height: 17px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .avyro-review-card,
  .avyro-google-mark,
  .avyro-google-btn {
    transition: none !important;
  }

  .avyro-review-card:hover {
    transform: none !important;
  }
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.avyro-services-v2{
    position:relative;
    overflow:hidden;
    padding:65px 0 70px;
    background:
        radial-gradient(circle at 10% 10%,rgba(20,126,232,.14),transparent 30%),
        radial-gradient(circle at 90% 80%,rgba(139,215,42,.10),transparent 30%),
        #071a33 !important;
    color:#fff;
}

.avyro-services-v2::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-220px;
    right:-160px;
    border-radius:50%;
    background:rgba(20,126,232,.12);
    filter:blur(80px);
    pointer-events:none;
}

.avyro-services-v2::after{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    bottom:-200px;
    left:-150px;
    border-radius:50%;
    background:rgba(139,215,42,.08);
    filter:blur(80px);
    pointer-events:none;
}

.avyro-services-v2,
.avyro-services-v2 *{
    font-family:"Poppins",sans-serif;
}

.avyro-services-container{
    position:relative;
    z-index:2;
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
}

.avyro-services-intro{
    display:block;
    margin-bottom:40px;
    text-align:center;
}

.avyro-services-badge{
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:8px 16px;
    margin-bottom:14px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;
    background:rgba(255,255,255,.07);
    color:#dce7f5;
    font-size:12px;
    font-weight:600;
    letter-spacing:.6px;
}

.avyro-services-badge i{
    width:8px;
    height:8px;
    display:block;
    border-radius:50%;
    background:#8bd72a;
    box-shadow:0 0 12px rgba(139,215,42,.7);
}

.avyro-services-intro h2{
    max-width:850px;
    margin:0 auto;
    font-size:clamp(38px,4.5vw,60px);
    line-height:1.12;
    letter-spacing:-1.8px;
    font-weight:700;
}

.avyro-services-intro h2 span{
    display:block;
    background:linear-gradient(90deg,#147ee8,#39a8d8,#8bd72a);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.avyro-services-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.avyro-service-item{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
    min-height:260px;
    padding:25px;
    overflow:hidden;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.09);
    border-radius:22px;
    transition:transform .35s ease,border-color .35s ease,background .35s ease,box-shadow .35s ease;
}

.avyro-service-item::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:0;
    background:linear-gradient(180deg,#147ee8,#8bd72a);
    border-radius:0 0 10px 0;
    transition:height .35s ease;
}

.avyro-service-item:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.075);
    border-color:rgba(73,156,238,.35);
    box-shadow:0 18px 45px rgba(0,0,0,.24);
}

.avyro-service-item:hover::before{
    height:100%;
}

.avyro-service-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border-radius:16px;
    background:linear-gradient(145deg,rgba(20,126,232,.18),rgba(139,215,42,.08));
    border:1px solid rgba(79,158,235,.22);
    transition:transform .35s ease,background .35s ease;
}

.avyro-service-icon svg{
    width:29px;
    height:29px;
    fill:none;
    stroke:#4ca7ff;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.avyro-service-item:hover .avyro-service-icon{
    transform:rotate(-5deg) scale(1.07);
    background:linear-gradient(145deg,rgba(20,126,232,.28),rgba(139,215,42,.15));
}

.avyro-service-content{
    min-width:0;
}

.avyro-service-content h3{
    margin:0 0 7px;
    color:#fff;
    font-size:21px;
    line-height:1.3;
    font-weight:600;
}

.avyro-service-content p{
    max-width:390px;
    margin:0;
    color:#9aa7b8;
    font-size:14px;
    line-height:1.65;
    font-weight:400;
}

.avyro-service-action{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-top:auto;
    color:#b0bac7;
    font-size:13px;
    font-weight:500;
}

.avyro-service-action strong{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border:1px solid rgba(255,255,255,.13);
    border-radius:50%;
    color:#fff;
    font-size:17px;
    transition:background .3s ease,border-color .3s ease,transform .3s ease;
}

.avyro-service-item:hover .avyro-service-action strong{
    background:linear-gradient(135deg,#147ee8,#8bd72a);
    border-color:transparent;
    transform:rotate(45deg);
}

@media(max-width:1000px){
    .avyro-services-v2{
        padding:60px 0;
    }

    .avyro-services-list{
        grid-template-columns:repeat(2,1fr);
    }

    .avyro-service-item{
        min-height:260px;
    }
}

@media(max-width:600px){
    .avyro-services-v2{
        padding:55px 0 60px;
    }

    .avyro-services-container{
        width:min(calc(100% - 28px),1180px);
    }

    .avyro-services-intro{
        margin-bottom:30px;
        text-align:center;
    }

    .avyro-services-badge{
        padding:7px 14px;
        margin-bottom:12px;
        font-size:11px;
    }

    .avyro-services-intro h2{
        max-width:100%;
        font-size:36px;
        line-height:1.12;
        letter-spacing:-1px;
    }

    .avyro-services-list{
        grid-template-columns:1fr;
        gap:13px;
    }

    .avyro-service-item{
        min-height:250px;
        padding:23px;
        border-radius:19px;
    }

    .avyro-service-icon{
        width:54px;
        height:54px;
        border-radius:15px;
    }

    .avyro-service-icon svg{
        width:26px;
        height:26px;
    }

    .avyro-service-content h3{
        font-size:19px;
    }

    .avyro-service-content p{
        font-size:13.5px;
        line-height:1.65;
    }

    .avyro-service-action{
        font-size:12px;
    }

    .avyro-service-action strong{
        width:36px;
        height:36px;
        font-size:16px;
    }
}

@media(max-width:400px){
    .avyro-services-v2{
        padding:48px 0 55px;
    }

    .avyro-services-intro h2{
        font-size:33px;
    }

    .avyro-service-item{
        min-height:245px;
        padding:21px;
    }

    .avyro-service-content h3{
        font-size:18px;
    }

    .avyro-service-content p{
        font-size:13px;
    }
}

.avyro-services-intro{
    opacity:0;
    transform:translateY(35px);
    animation:avyroFadeUp .8s ease forwards;
}

.avyro-service-item{
    opacity:0;
    transform:translateY(40px);
    animation:avyroCardUp .7s ease forwards;
}

.avyro-service-item:nth-child(1){animation-delay:.15s}
.avyro-service-item:nth-child(2){animation-delay:.25s}
.avyro-service-item:nth-child(3){animation-delay:.35s}
.avyro-service-item:nth-child(4){animation-delay:.45s}
.avyro-service-item:nth-child(5){animation-delay:.55s}
.avyro-service-item:nth-child(6){animation-delay:.65s}

.avyro-service-icon{
    transition:transform .4s ease,background .4s ease,box-shadow .4s ease;
}

.avyro-service-item:hover .avyro-service-icon{
    transform:translateY(-4px) rotate(-5deg) scale(1.08);
    box-shadow:0 10px 25px rgba(20,126,232,.18);
}

.avyro-service-content h3{
    transition:color .3s ease,transform .3s ease;
}

.avyro-service-item:hover .avyro-service-content h3{
    color:#4ca7ff;
    transform:translateX(3px);
}

.avyro-service-content p{
    transition:color .3s ease;
}

.avyro-service-item:hover .avyro-service-content p{
    color:#b5c1cf;
}

@keyframes avyroFadeUp{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes avyroCardUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(prefers-reduced-motion:reduce){
    .avyro-services-intro,
    .avyro-service-item{
        opacity:1;
        transform:none;
        animation:none;
    }
}
.about-v2 .about-visual{
    opacity:0;
    transform:translateX(-60px);
    animation:aboutImageIn .9s cubic-bezier(.22,.61,.36,1) .2s forwards;
}

.about-v2 .split-grid > div:last-child{
    opacity:0;
    transform:translateX(60px);
    animation:aboutContentIn .9s cubic-bezier(.22,.61,.36,1) .35s forwards;
}

@keyframes aboutImageIn{
    0%{
        opacity:0;
        transform:translateX(-60px);
    }
    100%{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes aboutContentIn{
    0%{
        opacity:0;
        transform:translateX(60px);
    }
    100%{
        opacity:1;
        transform:translateX(0);
    }
}

@media(max-width:700px){

    .about-v2 .about-visual{
        transform:translateX(-30px);
        animation:aboutImageMobile .7s ease .15s forwards;
    }

    .about-v2 .split-grid > div:last-child{
        transform:translateX(30px);
        animation:aboutContentMobile .7s ease .25s forwards;
    }

    @keyframes aboutImageMobile{
        from{
            opacity:0;
            transform:translateX(-30px);
        }
        to{
            opacity:1;
            transform:translateX(0);
        }
    }

    @keyframes aboutContentMobile{
        from{
            opacity:0;
            transform:translateX(30px);
        }
        to{
            opacity:1;
            transform:translateX(0);
        }
    }
}

@media(prefers-reduced-motion:reduce){

    .about-v2 .about-visual,
    .about-v2 .split-grid > div:last-child{
        opacity:1;
        transform:none;
        animation:none;
    }
}
.avyro-about-section{
    position:relative;
    overflow:hidden;
    padding:80px 0;
    background:#fff;
    font-family:"Poppins",sans-serif;
}

.avyro-about-container{
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.avyro-about-image{
    position:relative;
    width:100%;
    height:540px;
    overflow:hidden;
    border-radius:26px;
}

.avyro-about-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .7s ease;
}

.avyro-about-image:hover img{
    transform:scale(1.04);
}

.avyro-about-content{
    max-width:560px;
}

.avyro-about-eyebrow{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:15px;
    color:#147ee8;
    font-size:14px;
    font-weight:600;
    letter-spacing:.4px;
}

.avyro-about-eyebrow::before{
    content:"";
    width:28px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(90deg,#147ee8,#8bd72a);
}

.avyro-about-content h2{
    margin:0 0 22px;
    color:#11141a;
    font-size:clamp(38px,4vw,55px);
    line-height:1.12;
    letter-spacing:-1.7px;
    font-weight:700;
}

.avyro-about-content h2 span{
    display:block;
    background:linear-gradient(
        90deg,
        #147ee8,
        #39a8d8,
        #72c943
    );
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.avyro-about-content p{
    margin:0 0 16px;
    color:#697180;
    font-size:14px;
    line-height:1.8;
    font-weight:400;
}

.avyro-about-content .avyro-about-intro{
    color:#3f4652;
    font-size:15px;
    line-height:1.8;
}

.avyro-about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 25px;
    margin:25px 0 28px;
}

.avyro-about-point{
    display:flex;
    align-items:center;
    gap:11px;
}

.avyro-about-point span{
    width:38px;
    height:38px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:linear-gradient(
        135deg,
        rgba(20,126,232,.12),
        rgba(139,215,42,.10)
    );
    border:1px solid rgba(20,126,232,.15);
    color:#147ee8;
    font-size:15px;
    transition:
        transform .3s ease,
        color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.avyro-about-point:hover span{
    color:#fff;
    background:linear-gradient(
        135deg,
        #147ee8,
        #8bd72a
    );
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(20,126,232,.18);
}

.avyro-about-point p{
    margin:0;
    color:#252a33;
    font-size:13px;
    line-height:1.5;
    font-weight:500;
}

.avyro-about-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 23px;
    border-radius:50px;
    background:linear-gradient(
        90deg,
        #147ee8,
        #268fdf
    );
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(20,126,232,.18);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.avyro-about-btn span{
    font-size:19px;
    line-height:1;
    transition:transform .3s ease;
}

.avyro-about-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(20,126,232,.25);
}

.avyro-about-btn:hover span{
    transform:translateX(4px);
}

@media(max-width:1000px){

    .avyro-about-container{
        gap:45px;
    }

    .avyro-about-image{
        height:490px;
    }

    .avyro-about-content h2{
        font-size:42px;
    }

    .avyro-about-points{
        grid-template-columns:1fr;
        gap:11px;
    }
}

@media(max-width:700px){

    .avyro-about-section{
        padding:60px 0;
    }

    .avyro-about-container{
        width:min(calc(100% - 28px),1180px);
        grid-template-columns:1fr;
        gap:35px;
    }

    .avyro-about-image{
        height:400px;
        border-radius:22px;
    }

    .avyro-about-content{
        max-width:100%;
    }

    .avyro-about-content h2{
        font-size:36px;
        line-height:1.15;
        letter-spacing:-1px;
        margin-bottom:18px;
    }

    .avyro-about-content p,
    .avyro-about-content .avyro-about-intro{
        font-size:14px;
        line-height:1.75;
    }

    .avyro-about-points{
        grid-template-columns:1fr;
        gap:12px;
        margin:22px 0 26px;
    }

    .avyro-about-btn{
        width:100%;
        justify-content:center;
    }
}

@media(max-width:400px){

    .avyro-about-section{
        padding:50px 0;
    }

    .avyro-about-image{
        height:350px;
    }

    .avyro-about-content h2{
        font-size:32px;
    }

    .avyro-about-point p{
        font-size:13px;
    }
}

.avyro-why-section{
    position:relative;
    padding:60px 0 65px;
    background:linear-gradient(
        135deg,
        #071a2d 0%,
        #0b3152 48%,
        #123d35 78%,
        #07c23f 100%
    );
    overflow:hidden;
    font-family:"Poppins",sans-serif;
}

.avyro-why-container{
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
}

.avyro-why-head{
    margin-bottom:32px;
}

.avyro-why-eyebrow{
    display:inline-block;
    margin-bottom:9px;
    color:#1687ee;
    font-size:14px;
    font-weight:600;
    letter-spacing:.3px;
}

.avyro-why-head h2{
    margin:0;
    color:#ffff;
    font-size:clamp(40px,4.5vw,58px);
    line-height:1.1;
    letter-spacing:-1.8px;
    font-weight:700;
}

.avyro-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.avyro-why-card{
    position:relative;
    min-height:235px;
    padding:26px 24px;
    background:#fff;
    border:1px solid rgba(20,126,232,.08);
    border-radius:22px;
    box-shadow:0 8px 25px rgba(24,35,60,.035);
    overflow:hidden;
    opacity:0;
    transform:translateY(35px);
    animation:avyroWhyCard .7s ease forwards;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.avyro-why-card:nth-child(1){
    animation-delay:.1s;
}

.avyro-why-card:nth-child(2){
    animation-delay:.2s;
}

.avyro-why-card:nth-child(3){
    animation-delay:.3s;
}

.avyro-why-card:nth-child(4){
    animation-delay:.4s;
}

.avyro-why-card::after{
    content:"";
    position:absolute;
    right:-50px;
    bottom:-50px;
    width:130px;
    height:130px;
    border-radius:50%;
    background:rgba(20,126,232,.035);
    transition:transform .45s ease;
}

.avyro-why-card:hover{
    transform:translateY(-6px);
    border-color:rgba(20,126,232,.18);
    box-shadow:0 18px 40px rgba(20,126,232,.09);
}

.avyro-why-card:hover::after{
    transform:scale(1.45);
}

.avyro-why-icon{
    position:relative;
    z-index:1;
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:19px;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        #e8f5ff,
        #eff9e9
    );
    border:1px solid #c9e3f3;
    color:#1687ee;
    font-size:21px;
    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        box-shadow .35s ease;
}

.avyro-why-card:hover .avyro-why-icon{
    transform:translateY(-4px) rotate(-4deg);
    background:linear-gradient(
        135deg,
        #dff1ff,
        #e7f7df
    );
    color:#147ee8;
    box-shadow:0 8px 20px rgba(20,126,232,.12);
}

.avyro-why-card h3{
    position:relative;
    z-index:1;
    margin:0 0 9px;
    color:#171920;
    font-size:19px;
    line-height:1.35;
    font-weight:600;
    transition:color .3s ease;
}

.avyro-why-card:hover h3{
    color:#1687ee;
}

.avyro-why-card p{
    position:relative;
    z-index:1;
    max-width:100%;
    margin:0;
    color:#8b929e;
    font-size:13.5px;
    line-height:1.7;
    font-weight:400;
    transition:color .3s ease;
}

.avyro-why-card:hover p{
    color:#697482;
}

@keyframes avyroWhyCard{
    0%{
        opacity:0;
        transform:translateY(35px);
    }
    100%{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:1000px){
    .avyro-why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .avyro-why-section{
        padding:50px 0;
    }

    .avyro-why-container{
        width:min(calc(100% - 28px),1180px);
    }

    .avyro-why-head{
        margin-bottom:27px;
    }

    .avyro-why-eyebrow{
        font-size:13px;
    }

    .avyro-why-head h2{
        font-size:38px;
        letter-spacing:-1px;
    }

    .avyro-why-grid{
        grid-template-columns:1fr;
        gap:13px;
    }

    .avyro-why-card{
        min-height:205px;
        padding:24px;
        border-radius:20px;
    }

    .avyro-why-icon{
        width:48px;
        height:48px;
        margin-bottom:16px;
        border-radius:14px;
        font-size:20px;
    }

    .avyro-why-card h3{
        font-size:19px;
    }

    .avyro-why-card p{
        font-size:13.5px;
        line-height:1.65;
    }
}

@media(max-width:400px){
    .avyro-why-head h2{
        font-size:34px;
    }

    .avyro-why-card{
        padding:22px;
    }
}

@media(prefers-reduced-motion:reduce){
    .avyro-why-card{
        opacity:1;
        transform:none;
        animation:none;
    }
}
.avyro-industries{
    position:relative;
    padding:70px 0;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #f4f9ff 0%,
        #ffffff 48%,
        #f2faed 100%
    );
    font-family:"Poppins",sans-serif;
}

.avyro-industries::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    top:-180px;
    right:-120px;
    border-radius:50%;
    background:rgba(20,126,232,.07);
    filter:blur(70px);
    pointer-events:none;
}

.avyro-industries::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    bottom:-180px;
    left:-130px;
    border-radius:50%;
    background:rgba(139,215,42,.07);
    filter:blur(70px);
    pointer-events:none;
}

.avyro-industries-container{
    position:relative;
    z-index:2;
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
}

.avyro-industries-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:60px;
    margin-bottom:40px;
}

.avyro-industries-title{
    max-width:720px;
}

.avyro-industries-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    color:#147ee8;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
}

.avyro-industries-eyebrow::before{
    content:"";
    width:26px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(90deg,#147ee8,#8bd72a);
}

.avyro-industries-title h2{
    margin:0;
    color:#111827;
    font-size:clamp(38px,4.5vw,58px);
    line-height:1.08;
    letter-spacing:-1.8px;
    font-weight:700;
}

.avyro-industries-title h2 span{
    display:block;
    background:linear-gradient(
        90deg,
        #147ee8,
        #2da6c8,
        #72bf39
    );
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

.avyro-industries-head>p{
    max-width:420px;
    margin:0 0 5px;
    color:#737d8c;
    font-size:14px;
    line-height:1.8;
}

.avyro-industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.avyro-industry-card{
    position:relative;
    min-height:115px;
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:16px;
    padding:22px 24px;
    overflow:hidden;
    background:#fff;
    border:1px solid #e5edf4;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(35,74,105,.045);
    opacity:0;
    transform:translateX(-60px);
    animation:avyroIndustrySlide .7s cubic-bezier(.22,.61,.36,1) forwards;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.avyro-industry-card::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#147ee8,#8bd72a);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .4s ease;
}

.avyro-industry-card:hover{
    transform:translateY(-6px);
    background:#fff;
    border-color:#cfe4f3;
    box-shadow:0 16px 35px rgba(35,74,105,.10);
}

.avyro-industry-card:hover::before{
    transform:scaleX(1);
}

.avyro-industry-icon{
    position:relative;
    z-index:2;
    width:52px;
    height:52px;
    flex:0 0 52px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        #e8f5ff,
        #eef9e8
    );
    border:1px solid #cfe5f3;
    color:#1687ee;
    font-size:19px;
    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        box-shadow .35s ease;
}

.avyro-industry-card:hover .avyro-industry-icon{
    transform:translateY(-3px) rotate(-4deg);
    background:linear-gradient(
        135deg,
        #147ee8,
        #8bd72a
    );
    color:#fff;
    box-shadow:0 8px 20px rgba(20,126,232,.15);
}

.avyro-industry-card h3{
    position:relative;
    z-index:2;
    margin:0;
    padding:0;
    color:#17202b;
    font-size:17px;
    line-height:1.4;
    font-weight:600;
}

.avyro-industry-card:nth-child(1){
    animation-delay:.05s;
}

.avyro-industry-card:nth-child(2){
    animation-delay:.15s;
}

.avyro-industry-card:nth-child(3){
    animation-delay:.25s;
}

.avyro-industry-card:nth-child(4){
    animation-delay:.35s;
}

.avyro-industry-card:nth-child(5){
    animation-delay:.45s;
}

.avyro-industry-card:nth-child(6){
    animation-delay:.55s;
}

.avyro-industry-card:nth-child(7){
    animation-delay:.65s;
}

.avyro-industry-card:nth-child(8){
    animation-delay:.75s;
}

@keyframes avyroIndustrySlide{
    0%{
        opacity:0;
        transform:translateX(-60px);
    }

    70%{
        opacity:1;
        transform:translateX(7px);
    }

    100%{
        opacity:1;
        transform:translateX(0);
    }
}

@media(max-width:1000px){

    .avyro-industries{
        padding:65px 0;
    }

    .avyro-industries-head{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .avyro-industries-head>p{
        max-width:700px;
        margin:0;
    }

    .avyro-industries-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    .avyro-industries{
        padding:55px 0 60px;
    }

    .avyro-industries-container{
        width:calc(100% - 28px);
    }

    .avyro-industries-head{
        margin-bottom:30px;
    }

    .avyro-industries-eyebrow{
        font-size:11px;
        letter-spacing:1.3px;
    }

    .avyro-industries-title h2{
        font-size:36px;
        line-height:1.12;
        letter-spacing:-1px;
    }

    .avyro-industries-head>p{
        font-size:13.5px;
        line-height:1.7;
    }

    .avyro-industries-grid{
        grid-template-columns:1fr;
        gap:13px;
    }

    .avyro-industry-card{
        min-height:90px;
        padding:18px 20px;
        gap:14px;
        border-radius:17px;
    }

    .avyro-industry-icon{
        width:46px;
        height:46px;
        flex:0 0 46px;
        border-radius:12px;
        font-size:17px;
    }

    .avyro-industry-card h3{
        font-size:15px;
    }
}

@media(max-width:400px){

    .avyro-industries-title h2{
        font-size:32px;
    }

    .avyro-industry-card{
        min-height:88px;
        padding:17px 18px;
    }

    .avyro-industry-icon{
        width:44px;
        height:44px;
        flex-basis:44px;
    }
}

@media(prefers-reduced-motion:reduce){

    .avyro-industry-card{
        opacity:1;
        transform:none;
        animation:none;
    }
}

.site-footer {
    position: relative;
    padding: 50px 0 0;
    color: #dce8f7;
    background: #061a35;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    top: -80px;
    height: 230px;
    background:
        radial-gradient(
            circle at 15% 40%,
            rgba(139, 215, 42, .12),
            transparent 25%
        ),
        radial-gradient(
            circle at 50% 20%,
            rgba(70, 110, 210, .16),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 40%,
            rgba(20, 120, 232, .14),
            transparent 25%
        );
    filter: blur(25px);
    pointer-events: none;
}
.site-footer::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -100px;
    height: 190px;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(139, 215, 42, .08),
            transparent 25%
        ),
        radial-gradient(
            circle at 55% 50%,
            rgba(20, 120, 232, .10),
            transparent 30%
        );
    filter: blur(30px);
    pointer-events: none;
}
.footer-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.footer-blur-1 {
    width: 180px;
    height: 180px;
    top: 25px;
    left: 8%;
    background: rgba(139, 215, 42, .07);
}
.footer-blur-2 {
    width: 240px;
    height: 160px;
    top: 15px;
    left: 45%;
    background: rgba(20, 120, 232, .10);
}
.footer-blur-3 {
    width: 220px;
    height: 170px;
    bottom: -50px;
    right: 10%;
    background: rgba(20, 120, 232, .10);
}
.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        1.45fr
        1fr
        1.15fr
        1.2fr;
    gap: 55px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 72px;
    margin-bottom: 14px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .96);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.footer-logo img {
    display: block;
    width: 175px;
    height: auto;
    max-width: 100%;
    margin: 0;
}

.footer-brand > p {
    max-width: 330px;
    margin: 0;
    color: #c3d0df;
    font-size: 14px;
    line-height: 1.65;
}
.social-title {
    margin: 30px 0 13px;
    background: linear-gradient(
        90deg,
        #147ee8,
        #8bd72a
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 16px;
    font-weight: 700;
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-socials a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;

    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .16);

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.footer-socials a i {
    font-size: 19px;
}
.footer-socials a:nth-child(1) {
    color: #1877F2;
}
.footer-socials a:nth-child(2) {
    color: #0A66C2;
}
.footer-socials a:nth-child(3) {
    color: #25D366;
}
.footer-socials a:nth-child(4) {
    color: #1478E8;
}
.footer-socials a:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .25);
}
.footer-column h3,
.footer-contact h3 {
    position: relative;
    display: inline-block;
    margin: 4px 0 27px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}


.footer-column h3::after,
.footer-contact h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #147ee8,
        #8bd72a
    );
}
.footer-column a {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    color: #bdcad9;
    font-size: 14px;
    text-decoration: none;
    transition:
        color .25s ease,
        transform .25s ease;
}


.footer-column a span {
    margin-right: 12px;
    color: #8da4be;
    font-size: 20px;
    line-height: 1;
    transition: color .25s ease;
}


.footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}


.footer-column a:hover span {
    color: #8bd72a;
}

.footer-contact-intro {
    margin: -5px 0 20px;
    color: #bdcad9;
    font-size: 14px;
    line-height: 1.7;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 15px;
    color: #c2cfde;
    font-size: 14px;
    line-height: 1.65;
    text-decoration: none;
    transition: color .25s ease;
}
.contact-item:hover {
    color: #ffffff;
}
.contact-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .18);

    color: #dce8f7;

    font-size: 15px;
}


.address-item {
    margin-bottom: 20px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 4px;

    padding: 13px 22px;

    border-radius: 8px;

    background: linear-gradient(
        90deg,
        #147ee8,
        #8bd72a
    );

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(20, 126, 232, .18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.footer-btn span {
    font-size: 18px;
    line-height: 1;
}


.footer-btn:hover {
    color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(20, 126, 232, .28);
}


.footer-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 55px;
    padding: 25px 0;

    border-top: 1px solid rgba(255, 255, 255, .10);

    color: #879bb3;

    font-size: 12px;
}


.footer-bottom strong {
    color: #147ee8;
    font-weight: 600;
}


.footer-bottom-services {
    text-align: right;
}


.footer-bottom-services b {
    margin: 0 7px;
    color: #8bd72a;
}

@media (max-width: 992px) {

    .site-footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 3;
        max-width: 500px;
    }

    .footer-brand > p {
        max-width: 480px;
    }

    .footer-logo img {
        width: 200px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-services {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding-top: 55px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }
    .footer-logo img {
        width: 185px;
    }
    .footer-brand > p {
        max-width: 100%;
        font-size: 14px;
    }
    .social-title {
        margin-top: 22px;
    }
    .footer-socials {
        gap: 10px;
    }
    .footer-socials a {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
   .footer-socials a i {
        font-size: 17px;
    }
    .footer-column h3,
    .footer-contact h3 {
        font-size: 17px;
    }
    .footer-column a {
        margin-bottom: 13px;
        font-size: 14px;
    }
    .contact-item {
        font-size: 13px;
    }
    .footer-btn {
        padding: 12px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 40px;
        padding: 20px 0;
        font-size: 11px;
    }
    .footer-bottom-services {
        text-align: left;
        line-height: 1.8;
    }
}
@media (max-width: 380px) {
    .footer-logo img {
        width: 165px;
    }
    .footer-socials {
        gap: 8px;
    }
    .footer-socials a {
        width: 41px;
        height: 41px;
    }
}


.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    height: 78px;
    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(109, 111, 113, 0.2),
            transparent 18%
        ),
        linear-gradient(
            90deg,
            #ffff 0%,
            #071a33 55%,
            #0a1e3b 100%
        );
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 5px 25px rgba(0, 0, 0, .18);
}

.nav-container {
    width: 100%;
    max-width: none;
    height: 78px;
    margin: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    width: 250px;
    height: 78px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.logo img {
    position: absolute;
    left: 0;
    top: 50%;
    width: 210px;
    height: 70px;
    max-width: none;
    max-height: none;
    object-fit: contain;
    display: block;
    padding: 0;
    margin: 0;
    transform: translateY(-40%) scale(2.3);
    transform-origin: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-left: auto;
}

.dropdown-btn,
.main-nav > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 42px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color .25s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.dropdown-btn:hover {
    color: #8bd72a;
}

.main-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, #147ee8, #8bd72a);
    transition: width .25s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a.active:not(.nav-cta)::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown .dropdown-btn {
    gap: 8px;
    outline: none;
}

.dropdown-icon {
    width: 8px !important;
    height: 8px !important;
    margin-left: 2px;
    margin-top: -4px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) !important;
    transition: transform .25s ease;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(225deg) !important;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 235px;
    padding: 10px;
    background: rgba(4, 19, 40, .98);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2000;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    padding: 10px 13px;
    border-radius: 9px;
    color: #dce8f7;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, padding-left .2s ease;
}

.dropdown-menu a:hover {
    color: #8bd72a;
    background: rgba(20, 120, 232, .13);
    padding-left: 17px;
}

.main-nav a.nav-cta,
.main-nav > a.nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 145px !important;
    min-height: 46px !important;
    padding: 0 22px !important;
    margin: 0;
    border: 0 !important;
    border-radius: 50px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #147ee8 0%, #6d58f5 100%) !important;
    box-shadow: 0 10px 25px rgba(20, 120, 232, .25) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.main-nav a.nav-cta::after,
.main-nav > a.nav-cta::after {
    display: none !important;
}

.main-nav a.nav-cta:hover,
.main-nav > a.nav-cta:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(20, 120, 232, .35) !important;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 26, 51, .12);
    border-radius: 10px;
    background: rgba(255, 255, 255, .95);
    cursor: pointer;
    z-index: 10001;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    border-radius: 3px;
    background: #071a33;
    transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1100px) {
    .nav-container {
        padding: 0 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .dropdown-btn,
    .main-nav > a {
        font-size: 14px;
    }

    .main-nav a.nav-cta,
    .main-nav > a.nav-cta {
        min-width: 130px !important;
        padding: 0 17px !important;
    }
}
@media (max-width: 900px) {
    .site-header {
        height: 72px !important;
        background: rgba(255, 255, 255, .97) !important;
        border-bottom: 1px solid rgba(7, 26, 51, .1);
        box-shadow: 0 5px 20px rgba(7, 26, 51, .1);
    }

    .nav-container {
        width: 100%;
        max-width: none;
        height: 72px;
        margin: 0;
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .logo {
        width: 210px;
        height: 72px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        overflow: visible;
        margin: 0;
        padding: 0;
    }

    .logo img {
        position: absolute !important;
        left: -45px !important;
        top: 50% !important;
        width: 170px !important;
        height: 64px !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain;
        display: block;
        margin: 0 !important;
        padding: 0 !important;
        transform: translateY(-50%) scale(1.8) !important;
        transform-origin: left center !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        margin-left: auto;
        padding: 0;
        border: 1px solid rgba(7, 26, 51, .12);
        border-radius: 10px;
        background: #fff;
        cursor: pointer;
        z-index: 10001;
    }

    .menu-toggle span {
        display: block;
        width: 21px;
        height: 2px;
        margin: 4px auto;
        border-radius: 3px;
        background: #071a33;
        transition: transform .3s ease, opacity .3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 14px 18px 18px;
        margin: 0;
        background: rgba(255, 255, 255, .99);
        border-bottom: 1px solid #dce8f5;
        box-shadow: 0 18px 35px rgba(7, 26, 51, .15);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    }

    .main-nav.open,
    .main-nav.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0);
    }

    .main-nav > a,
    .dropdown-btn {
        width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        justify-content: flex-start;
        color: #071a33 !important;
        text-align: left;
    }

    .main-nav > a:hover,
    .dropdown-btn:hover {
        color: #1478e8 !important;
    }

    .main-nav > a::after {
        display: none !important;
    }

    .main-nav a.nav-cta,
    .main-nav > a.nav-cta {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 46px !important;
        margin-top: 7px !important;
        justify-content: center !important;
        color: #fff !important;
    }

    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown .dropdown-btn {
        justify-content: flex-start;
    }

    .dropdown-icon {
        border-color: #1478e8;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
        background: #f4f9ff;
        border: 0;
        border-radius: 10px;
        box-shadow: none;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height .3s ease, opacity .2s ease, padding .3s ease;
    }

    .nav-dropdown.active .dropdown-menu,
    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 5px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dropdown-menu a {
        color: #17243a;
    }

    .dropdown-menu a:hover {
        color: #1478e8;
        background: #eaf4ff;
    }
}

@media (max-width: 600px) {
    .avyro-hero {
        min-height: auto !important;
        height: auto !important;
        padding: 105px 0 32px !important;
        background-position: center center;
        box-sizing: border-box;
    }

    .hero-container {
        width: 100%;
        padding: 0 18px;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        transform: none !important;
        box-sizing: border-box;
    }
    .hero-content h1 {
        width: 100%;
        max-width: 390px;
        margin: 0 auto 20px;
        padding: 0;
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.06;
        letter-spacing: -1.2px;
        box-sizing: border-box;
    }

    .hero-description {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        padding: 0;
        font-size: 13.5px;
        line-height: 1.65;
        box-sizing: border-box;
    }

    .hero-buttons {
        width: 100%;
        margin-top: 22px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 9px;
        box-sizing: border-box;
    }

    .hero-btn {
        width: 100%;
        max-width: 270px;
        min-height: 48px;
        box-sizing: border-box;
    }

    .hero-services {
        width: 100%;
        max-width: 350px;
        margin: 22px auto 0;
        padding: 0;
        font-size: 10.5px;
        line-height: 1.8;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .avyro-hero {
        padding-top: 100px !important;
        padding-bottom: 28px !important;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: clamp(32px, 9.5vw, 42px);
        line-height: 1.08;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.65;
    }
}

@media (max-width: 380px) {
    .avyro-hero {
        padding-top: 96px !important;
    }

    .hero-container {
        padding: 0 14px;
    }

    .hero-content h1 {
        font-size: 31px;
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    .hero-description {
        font-size: 12.5px;
    }
}
@media (max-width: 380px) {
    .nav-container {
        padding: 0 8px;
    }

    .logo {
        width: 185px;
    }

    .logo img {
        left: -38px !important;
        width: 155px !important;
        height: 60px !important;
        transform: translateY(-50%) scale(1.7) !important;
    }
}

@media (max-width: 600px) {
    .avyro-hero .hero-badge {
        position: relative !important;
        top: 25px !important;
        margin-bottom: 45px !important;
        z-index: 5 !important;
    }
}

@media (max-width: 480px) {
    .avyro-hero .hero-badge {
        top: 30px !important;
        margin-bottom: 50px !important;
    }
}

@media (max-width: 380px) {
    .avyro-hero .hero-badge {
        top: 32px !important;
        margin-bottom: 52px !important;
    }
}

.avyro-floating-contact {
  position: fixed;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  z-index: 99999;
  width: auto;
  height: auto;
  pointer-events: none;
}

.avyro-float-btn {
  position: relative;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  max-width: 58px;
  max-height: 58px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  color: #fff;
  text-decoration: none;
  overflow: visible;
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  animation: avyroFloat 3s ease-in-out infinite;
}

.avyro-float-btn svg {
  display: block;
  width: 27px !important;
  height: 27px !important;
  min-width: 27px !important;
  min-height: 27px !important;
  max-width: 27px !important;
  max-height: 27px !important;
  flex: 0 0 27px;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  overflow: visible;
}

.avyro-whatsapp {
  background: linear-gradient(135deg, #00b85a, #25d366);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.3);
  animation: avyroFloat 3s ease-in-out infinite, avyroWhatsappPulse 2.5s infinite;
}

.avyro-whatsapp svg {
  width: 27px !important;
  height: 27px !important;
  fill: currentColor;
  stroke: none;
}

.avyro-call {
  background: linear-gradient(135deg, #0066ff, #0088ff);
  box-shadow: 0 10px 28px rgba(0, 102, 255, 0.35), 0 0 0 0 rgba(0, 136, 255, 0.3);
  animation: avyroFloat 3s ease-in-out infinite, avyroCallPulse 2.8s infinite;
}

.avyro-call svg {
  width: 27px !important;
  height: 27px !important;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.avyro-float-btn:hover {
  transform: translateY(-5px) scale(1.08);
  color: #fff;
}

.avyro-whatsapp:hover {
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45), 0 0 0 8px rgba(37, 211, 102, 0.08);
}

.avyro-call:hover {
  background: linear-gradient(135deg, #0052cc, #0077ee);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.45), 0 0 0 8px rgba(0, 102, 255, 0.08);
}

.avyro-tooltip {
  position: absolute;
  left: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: #071f31;
  color: #fff;
  padding: 8px 13px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 22px rgba(7, 31, 49, 0.2);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.avyro-tooltip::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #071f31;
  transform: translateY(-50%) rotate(45deg);
}

.avyro-float-btn:hover .avyro-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@keyframes avyroFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes avyroWhatsappPulse {
  0% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.35);
  }

  70% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35), 0 0 0 13px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes avyroCallPulse {
  0% {
    box-shadow: 0 10px 28px rgba(0, 102, 255, 0.35), 0 0 0 0 rgba(0, 136, 255, 0.35);
  }

  70% {
    box-shadow: 0 10px 28px rgba(0, 102, 255, 0.35), 0 0 0 13px rgba(0, 136, 255, 0);
  }

  100% {
    box-shadow: 0 10px 28px rgba(0, 102, 255, 0.35), 0 0 0 0 rgba(0, 136, 255, 0);
  }
}

@media (min-width: 1440px) {
  .avyro-floating-contact {
    left: 30px;
    bottom: 30px;
    gap: 15px;
  }

  .avyro-float-btn {
    width: 62px;
    height: 62px;
    min-width: 62px;
    min-height: 62px;
    max-width: 62px;
    max-height: 62px;
    flex-basis: 62px;
  }

  .avyro-float-btn svg {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
    max-width: 29px !important;
    max-height: 29px !important;
    flex-basis: 29px;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .avyro-floating-contact {
    left: 24px;
    bottom: 24px;
    gap: 13px;
  }

  .avyro-float-btn {
    width: 58px;
    height: 58px;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .avyro-floating-contact {
    left: 22px;
    bottom: 22px;
    gap: 12px;
  }

  .avyro-float-btn {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    flex-basis: 56px;
  }

  .avyro-float-btn svg {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
    flex-basis: 26px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .avyro-floating-contact {
    left: 18px;
    bottom: 20px;
    gap: 12px;
  }

  .avyro-float-btn {
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    max-width: 55px;
    max-height: 55px;
    flex-basis: 55px;
  }

  .avyro-float-btn svg {
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    min-height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    flex-basis: 25px;
  }

  .avyro-tooltip {
    left: 68px;
    font-size: 11px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .avyro-floating-contact {
    left: 16px;
    bottom: 18px;
    gap: 10px;
  }

  .avyro-float-btn {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    max-width: 52px;
    max-height: 52px;
    flex-basis: 52px;
  }

  .avyro-float-btn svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    flex-basis: 24px;
  }

  .avyro-tooltip {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 640px) {
  .avyro-floating-contact {
    left: 15px;
    bottom: 16px;
    gap: 10px;
  }

  .avyro-float-btn {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    max-width: 52px;
    max-height: 52px;
    flex-basis: 52px;
    box-shadow: 0 8px 22px rgba(16, 47, 70, 0.22);
  }

  .avyro-float-btn svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    flex-basis: 24px;
  }

  .avyro-tooltip {
    display: none;
  }
}

@media (min-width: 381px) and (max-width: 480px) {
  .avyro-floating-contact {
    left: 13px;
    bottom: 15px;
    gap: 9px;
  }

  .avyro-float-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    flex-basis: 50px;
  }

  .avyro-float-btn svg {
    width: 23px !important;
    height: 23px !important;
    min-width: 23px !important;
    min-height: 23px !important;
    max-width: 23px !important;
    max-height: 23px !important;
    flex-basis: 23px;
  }

  .avyro-tooltip {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 380px) {
  .avyro-floating-contact {
    left: 10px;
    bottom: 12px;
    gap: 8px;
  }

  .avyro-float-btn {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    max-width: 46px;
    max-height: 46px;
    flex-basis: 46px;
  }

  .avyro-float-btn svg {
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
    min-height: 21px !important;
    max-width: 21px !important;
    max-height: 21px !important;
    flex-basis: 21px;
  }

  .avyro-tooltip {
    display: none;
  }
}

@media (max-width: 319px) {
  .avyro-floating-contact {
    left: 8px;
    bottom: 10px;
    gap: 7px;
  }

  .avyro-float-btn {
    width: 43px;
    height: 43px;
    min-width: 43px;
    min-height: 43px;
    max-width: 43px;
    max-height: 43px;
    flex-basis: 43px;
  }

  .avyro-float-btn svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    flex-basis: 20px;
  }

  .avyro-tooltip {
    display: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .avyro-tooltip {
    display: none !important;
  }

  .avyro-float-btn:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .avyro-float-btn {
    animation: none !important;
    transition: none !important;
  }
}