
:root {
    --brand-main: #ffc045;
    --brand-main-dark: #c98208;
    --brand-accent: #0a92ac;
    --accent-dark: #074f5d;
    --text-main: #1f2a30;
    --text-soft: #4d5c66;
    --bg-soft: #f5f7f9;
}




html {
    font-size: 18.2px; 
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
     width: 100%;
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    font-size: 18px;              
    color: var(--text-main);
    line-height: 1.7;

    background-image:
        linear-gradient(120deg, rgba(7, 79, 93, 0.82), rgba(10, 146, 172, 0.65)),
        url("images/hero.jpg");
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body > * {
    position: relative;
    z-index: 1;
}

body {
    padding-top: 110px; 
}




body a {
    color: var(--brand-accent);
}
body a:hover {
    color: var(--brand-main-dark);
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;       
    top: 0;
    left: 0;
    width: 100%;

    padding: 14px 40px;
    background: linear-gradient(90deg, #FFC045, #FFC045);
    backdrop-filter: blur(14px);

    z-index: 2000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);

    transition: transform .35s ease, opacity .35s ease;
}


.navbar.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.show {
    transform: translateY(0);
    opacity: 1;
}



.hero-logo-line {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-logo-line img {
    width: 90px;
    height: 70px;
    object-fit: contain;
}

.hero-logo-line span {
    color: var(--brand-accent);
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--accent-dark);
    font-size: 19px;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
    transition: 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d7263d;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--brand-main-dark);
    transition: 0.25s;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}



.hero {
    position: relative;
    min-height: 90vh;
    padding: 50px 30px 80px;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    color: #fff;
}



.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffefc5;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-content h1 .highlight {
    color: var(--brand-main);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #f2fbff;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 0.98rem;
    color: #e4f5fa;
    margin-bottom: 28px;
}



.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.btn-primary,
.btn-ghost {
    padding: 13px 30px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: var(--brand-main);
    color: #2a2000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}
.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.25);
}


.hero-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #ffecc0;
    margin-top: 4px;
    opacity: 0.9;
}

.hero-hint-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ffecc0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}


.hero-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.glass-card {
    background: rgba(3, 20, 26, 0.9);
    padding: 18px 18px 20px;
    border-radius: 18px;
    color: #f7fafc;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    animation: floatCard 6s infinite ease-in-out;
}

.glass-card:nth-child(2) { animation-delay: 0.6s; }
.glass-card:nth-child(3) { animation-delay: 1.2s; }
.glass-card:nth-child(4) { animation-delay: 1.8s; }

.glass-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.glass-value {
    font-size: 1.6rem;
    font-weight: 700;
}

.glass-sub {
    font-size: 0.8rem;
    opacity: 0.85;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}


.section {
    padding: 80px 30px;
}

.section-inner {
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-kicker {
    color: var(--brand-main);
    font-size: 2.1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-title {
    font-size: 1.50rem;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.section-subtitle {
    color: #e7f4ff;
    max-width: 780px;
    margin: auto;
    font-size: 0.98rem;
}

.section-light,
.section-dark {
    background: transparent;
}


.section-inner.full-width {
    max-width: 100%;
    padding: 0 15px;
}



.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}


.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}




.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.flip-card {
    perspective: 1000px;
    position: relative;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 320px;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(.2,.85,.25,1.2);
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    backface-visibility: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
    padding: 22px 24px 20px;
}

.flip-front {
    background: #ffffffee;
    border: 2px solid var(--brand-main);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flip-front h3 {
    font-size: 1.05rem;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.flip-front p {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.flip-hint-badge {
    align-self: flex-end;
    font-size: 0.75rem;
    color: #c25b00;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.flip-hint-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff7b00;
    box-shadow: 0 0 6px rgba(255,123,0,0.9);
}

.flip-back {
    background: #031821;
    color: #ecf7ff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flip-back h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.flip-back p {
    font-size: 0.9rem;
    opacity: 0.96;
}



.about-text-block {
    background: #ffffffee;
    border-radius: 20px;
    padding: 30px 26px 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
    border-left: 5px solid var(--brand-main);
    font-size: 0.95rem;
    color: var(--text-soft);
}

.about-text-block p + p {
    margin-top: 10px;
}



.ceo-section {
    padding-top: 50px;
}

.ceo-wrapper {
    max-width: 940px;
    margin: 0 auto;
    background: #ffffffee;
    border-radius: 24px;
    padding: 28px 28px 24px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
    display: grid;
    grid-template-columns: minmax(260px, 260px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.ceo-photo {
    width: 260px;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(0,0,0,0.3);
    border: 3px solid rgba(0, 0, 0, 0.35);
    background: #ffffff20;
    backdrop-filter: blur(4px);
}

.ceo-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ceo-message-text {
    font-size: 0.95rem;
    color: var(--text-soft);
}

.ceo-message-text p + p {
    margin-top: 10px;
}

.ceo-signature {
    margin-top: 16px;
    border-top: 1px solid #dde5ee;
    padding-top: 10px;
    text-align: right;
    font-size: 0.85rem;
}

.ceo-name {
    display: block;
    font-weight: 700;
    color: var(--accent-dark);
}
.ceo-title {
    display: block;
    color: var(--text-soft);
}



.team-section {
    margin-top: 20px;
}

.team-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.team-main {
    display: flex;
    justify-content: center;
}

.team-card {
    background: #ffc045;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    width: 270px;
    height: 310px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
    transition: 0.35s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.team-photo {
    width: 140px;
    height: 170px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    margin: 0 auto 12px;
}


.team-avatar.fallback {
    width: 130px;
    height: 130px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffc045, #c98208);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}

.team-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a92ac;
    margin-bottom: 4px;
}
.team-role {
    font-size: 0.9rem;
    color: #8e0505;
    margin-bottom: 6px;
}
.team-email-placeholder {
    font-size: 0.85rem;
    opacity: 0.8;
}



.stats-section {
    padding-top: 40px;
}

.stats-grid {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(3, 20, 26, 0.9);
    border-radius: 20px;
    padding: 20px 18px 18px;
    color: #f7fbff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--brand-main);
}
.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.9;
}


.cta-box {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 34px 30px 32px;
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        rgba(0, 90, 102, 0.92),
        rgba(0, 138, 150, 0.98)
    );
    color: #ffffff;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.35);
}


.testimonials-section {
    padding-top: 70px;
}

.testimonial-wrapper {
    position: relative;
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 18px;
}

.testimonial-track {
    flex: 1;
    position: relative;
    min-height: 240px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: #ffffffee;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 16px 44px rgba(0,0,0,0.18);
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
}
.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.tst-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.tst-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-main), var(--brand-main-dark));
    opacity: 0.9;
}

.tst-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-main-dark);
}
.tst-role {
    font-size: 0.85rem;
    color: var(--text-soft);
}
.tst-text {
    margin-top: 8px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
}


.tst-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s ease, transform .2s ease;
}
.tst-arrow:hover {
    background: rgba(0,0,0,0.55);
    transform: translateY(-1px);
}
.tst-prev { align-self: center; }
.tst-next { align-self: center; }


.tst-dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 9px;
}
.tst-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.tst-dot.active {
    background: var(--brand-main);
    transform: scale(1.2);
}


.testimonials-section .section-header::after {
    content: "Use arrows or dots to browse the feedback";
    display: block;
    margin-top: 6px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.85);
}



.clients-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.clients-carousel {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}

.clients-window {
    overflow: hidden;
    flex: 1;
}

.clients-track {
    display: flex;
    gap: 30px;
    padding: 12px 4px;
    align-items: center;
    will-change: transform;
}

.client-logo {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    border-radius: 16px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 90%;
    max-height: 70%;
    object-fit: contain;
}

.clients-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s ease, transform .2s ease;
}
.clients-arrow:hover {
    background: rgba(0,0,0,0.55);
    transform: translateY(-1px);
}

.clients-section .section-header::after {
    content: "Use arrows to scroll through our clients";
    display: block;
    margin-top: 6px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.85);
}


.prefooter {
    background: rgba(3, 22, 27, 0.96);
    color: #e3f1f6;
    padding: 34px 30px 30px;
}

.prefooter-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.prefooter-logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.prefooter-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--brand-main);
}

.prefooter-text {
    font-size: 0.95rem;
    opacity: 0.9;
}



footer {
    background: #020c11;
    color: #cfdce1;
    padding: 18px 24px;
    margin-top: 0;         
}

.footer-inner {
    max-width: 1320px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
}

.footer-left {
    opacity: 0.9;
}

.footer-right {
    font-size: 0.8rem;
    opacity: 0.85;
}

.footer-right span {
    font-weight: 600;
}



@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .hero-panel {
        order: -1;
    }
}

@media (max-width: 820px) {
    .navbar {
        padding: 12px 18px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .section {
        padding: 60px 18px;
    }

    .ceo-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ceo-message-text {
        text-align: left;
    }

    .prefooter-inner {
        grid-template-columns: 1fr;
    }

    .clients-carousel {
        gap: 10px;
    }

    .testimonial-wrapper {
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .team-card {
        width: 210px;
        height: auto;
    }

    .hero-inner {
        gap: 30px;
    }
}





.about-hero-section {
    padding-top: 70px;
    padding-bottom: 40px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.about-hero-title {
    font-size: 36px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    margin-bottom: 12px;
}

.about-hero-subtitle {
    font-size: 16px;
    color: #e5f4ff;
    max-width: 620px;
}


.about-hero-badges {
    display: grid;
    gap: 14px;
}

.about-badge {
    background: #ffffffee;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    border-left: 4px solid var(--brand-main);
}

.badge-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-soft);
}

.badge-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-dark);
}

.badge-sub {
    font-size: 13px;
    color: var(--text-soft);
}


.about-section-title {
    text-shadow: none;
    color: #ffffff;
}


.about-main-card {
    background: #ffffffee;
    border-radius: 20px;
    padding: 26px 24px 22px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.28);
    border-left: 5px solid var(--brand-main);
    font-size: 15px;
    color: var(--text-soft);
}

.about-main-card p + p {
    margin-top: 10px;
}


.about-policy-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr) minmax(0, 1.2fr);
    gap: 22px;
}

.policy-card {
    background: #ffffffee;
    border-radius: 18px;
    padding: 20px 20px 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
    font-size: 14px;
    color: var(--text-soft);
    border-top: 4px solid var(--brand-main);
}

.policy-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,192,69,0.15);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.policy-card p + p {
    margin-top: 8px;
}

.policy-list {
    margin-top: 10px;
    padding-left: 18px;
}

.policy-list li {
    margin-bottom: 6px;
}


.quality-card {
    background: #ffffffee;
    border-radius: 20px;
    padding: 24px 22px 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    border-left: 5px solid var(--brand-main);
    font-size: 14px;
    color: var(--text-soft);
}

.quality-card p + p {
    margin-top: 10px;
}


@media (max-width: 960px) {
    .about-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-hero-badges {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .about-policy-grid {
        grid-template-columns: minmax(0,1fr);
    }
}

@media (max-width: 700px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-main-card,
    .policy-card,
    .quality-card {
        padding: 20px 18px 18px;
    }
}


.section.section-light .expertise-grid .flip-card {
    min-height: 320px;
    height: auto;
}

.section.section-light .flip-front,
.section.section-light .flip-back {
    overflow: hidden;
}

.section.section-light .flip-front p,
.section.section-light .flip-back p {
    max-height: 180px;
    overflow-y: auto;
    padding-right: 8px;
    margin-right: -8px;
}


.section.section-light .flip-front p::-webkit-scrollbar,
.section.section-light .flip-back p::-webkit-scrollbar {
    width: 4px;
}

.section.section-light .flip-front p::-webkit-scrollbar-thumb,
.section.section-light .flip-back p::-webkit-scrollbar-thumb {
    background: var(--brand-main);
    border-radius: 2px;
}


.capabilities-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.capabilities-header .section-kicker {
    letter-spacing: 3px;
    text-transform: uppercase;
}

.capabilities-wrapper {
    margin-top: 24px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    background: #ffffffee;
    border-radius: 22px;
    padding: 28px 26px 26px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.28);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.cap-group {
    border-left: 3px solid var(--brand-main);
    padding-left: 14px;
}

.cap-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cap-list {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    color: var(--text-soft);
}

.cap-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
}

.cap-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-main-dark);
    font-size: 14px;
}


.hseq-section {
    padding-top: 50px;
    padding-bottom: 70px;
}

.hseq-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    background: #ffffffee;
    border-radius: 22px;
    padding: 28px 26px 26px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.25);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.hseq-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.hseq-col p {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.hseq-list {
    list-style: none;
    padding-left: 0;
    font-size: 13px;
    color: var(--text-soft);
}

.hseq-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 4px;
}

.hseq-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-main-dark);
    font-size: 12px;
}


@media (max-width: 820px) {
    .capabilities-wrapper,
    .hseq-wrapper {
        padding: 22px 18px 20px;
    }

    .hseq-wrapper {
        grid-template-columns: 1fr;
    }
}



.workflow-step {
    font-size: 38px;
    font-weight: 800;
    color: var(--brand-main);
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}





.projects-hero {
    text-align: center;
    padding: 90px 25px 50px;
    background: transparent;
}

.projects-hero .section-kicker {
    color: var(--brand-main);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.projects-hero .section-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.projects-hero .section-subtitle {
    max-width: 720px;
    margin: 0 auto;
}



.projects-filter {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.project-filter-btn {
    border-radius: 999px;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(0, 0, 0, 0.22);
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s ease;
    text-transform: none;
}

.project-filter-btn:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.3);
}

.project-filter-btn.active {
    background: var(--brand-main);
    border-color: var(--brand-main);
    color: #1f2a30;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}



.projects-panel {
    display: none;
}

.projects-panel.active {
    display: block;
}

.projects-section .inner-header {
    margin-bottom: 26px;
}



.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}



.project-card {
    background: #ffffffee;
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.20);
    border-top: 4px solid var(--brand-main);
    font-size: 13px;
    color: var(--text-soft);
}

.project-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--brand-main-dark);
    margin-bottom: 4px;
}

.project-client {
    font-size: 17px;
    font-weight: 700;
    color: var(--accent-dark);
}

.project-location {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.project-list {
    list-style: none;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-soft);
}

.project-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 3px;
}

.project-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
}


.project-card-wide {
    grid-column: 1 / -1; 
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
    gap: 18px;
}

.project-card-wide-header {
    border-right: 1px solid #e1e9f0;
    padding-right: 16px;
    margin-right: 4px;
}

.project-card-wide-header .project-client {
    font-size: 18px;
}

.project-card-wide-projects {
    display: grid;
    gap: 6px;
    font-size: 13px;
}

.project-card-wide-projects .proj-item-title {
    font-weight: 600;
    color: var(--text-main);
}

.project-card-wide-projects .proj-item-meta {
    font-size: 12px;
    color: var(--text-soft);
}



@media (max-width: 820px) {
    .projects-hero {
        padding: 70px 18px 40px;
    }

    .projects-hero .section-title {
        font-size: 26px;
    }

    .project-card-wide {
        grid-template-columns: 1fr;
    }

    .project-card-wide-header {
        border-right: none;
        border-bottom: 1px solid #e1e9f0;
        padding-right: 0;
        padding-bottom: 10px;
        margin-bottom: 8px;
    }
}

.project-card {
    perspective: 1000px;
}

.project-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.project-card:hover .project-card-inner {
    transform: rotateY(180deg);
}

.project-card-front,
.project-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 18px;
    padding: 22px;
}

.project-card-front {
    background: #ffffffee;
    transform: rotateY(0deg);
}

.project-card-back {
    background: #031821;
    color: #ecf7ff;
    transform: rotateY(180deg);
}


.project-card {
    max-height: 320px;
    overflow: hidden;
    position: relative;
}

.project-list {
    max-height: 150px;
    overflow-y: auto;
    padding-right: 10px;
}





.gallery-hero {
    text-align: center;
    padding-top: 110px; 
}

.gallery-filter {
    margin-top: 24px;
}


.gallery-filter .project-filter-btn {
    border-radius: 999px;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(0, 0, 0, 0.22);
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s ease;
}

.gallery-filter .project-filter-btn:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.35);
}

.gallery-filter .project-filter-btn.active {
    background: var(--brand-main);
    border-color: var(--brand-main);
    color: #1f2a30;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.gallery-item {
    cursor: pointer;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffffee;
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.gallery-thumb img {
    width: 100%;
    height: 220px;     
    object-fit: cover;
    display: block;
}


.gallery-thumb:hover img {
    transform: scale(1.05);
}



.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 9999;
}

.lightbox-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-inner {
    position: relative;
    max-width: 1100px;   
    max-height: 80vh;   
    width: auto;
    height: auto;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;  
    display: block;
    margin: auto;
}



.lightbox-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffffdd;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}


.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
}

.lightbox-nav:hover {
    background: rgba(0,0,0,0.85);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: -48px;
}

.lightbox-next {
    right: -48px;
}


.lightbox-counter {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
}


@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .gallery-thumb img {
        height: 150px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: -40px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}








.contact-hero {
    padding-top: 110px; 
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: flex-start;
}

.contact-hero-title {
    max-width: 620px;
}


.contact-pill-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.contact-pill {
    background: #ffffffee;
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid #dde5ee;
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
    border-top: 4px solid var(--brand-main);
}

.pill-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--brand-main);
}

.pill-body {
    font-size: 12px;
    color: var(--text-soft);
}


.contact-hero-aside {
    background: #ffffffee;
    border-radius: 20px;
    padding: 20px 20px 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
    border-top: 4px solid var(--brand-main);
    color: var(--text-main);
}

.contact-hero-aside h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-dark);
}

.contact-hero-aside p {
    font-size: 13px;
    margin-bottom: 6px;
}

.aside-note {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-soft);
}



.contact-steps {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.step-card {
    background: #ffffffee;
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
    border-top: 4px solid var(--brand-main);
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-main);
    line-height: 1;
}

.step-title {
    margin-top: 6px;
    font-size: 17px;
    color: var(--accent-dark);
}

.step-body {
    margin-top: 6px;
    font-size: 14px;
    color: var(--text-soft);
}



.reach-section {
     padding: 80px 0;
    
}

.reach-title {
    font-size: 32px;
}

.reach-subtitle {
    color: var(--text-soft);
    max-width: 720px;
}

.reach-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 22px;
}

.reach-box {
    background: #ffffffee;
    border-radius: 20px;
    padding: 18px 18px 16px;
    border-top: 4px solid var(--brand-main);
    box-shadow: 0 16px 38px rgba(0,0,0,0.24);
}

.reach-head {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--accent-dark);
}

.channel-body {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 8px;
}

.reach-list {
    list-style: none;
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 8px;
}

.reach-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 4px;
}

.reach-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
}

.reach-note {
    margin-top: 6px;
    font-size: 12px;
    color: var(--brand-main-dark);
}



#form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.formspree-page {
    display: none !important;
}






.gm-direct {
  
    color: #010101;
    padding: 60px 0;
}


.gm-direct-box {
    background: radial-gradient(circle at top left, #ffd86b 0, #FFC045 35%, #0A92AC 50%);
    border-radius: 100px;
    padding: 70px 50px;
    margin: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);


    max-width: 1000px;
    width: 100%;
    height: 500px;
}


.gm-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
}


.gm-text .section-kicker {
    font-size: 35px;
    color: #000;
}

.gm-text h2 {
    font-size: 28px;
    margin-top: 6px;
    color: #000;
}

.gm-text p {
    margin-top: 8px;
    font-size: 20px;
    color: #000;
    max-width: 420px;
}


.gm-qr {
    text-align: center;
}

.gm-qr img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    border-radius: 16px;
    background: #0A92AC;
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    padding: 0px;
}

.gm-qr-label {
    margin-top: 8px;
    font-size: 20px;
    color: #000;
}







.contact-form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.contact-form-card {
    position: relative;
    max-width: 640px;
    width: 100%;
    background: radial-gradient(circle at top left, #ffd86b 0, #FFC045 30%, #0A92AC 50%);
    border-radius: 26px;
    padding: 22px 22px 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}


.contact-form-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.18) 0, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(0,0,0,0.38) 0, transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.contact-form-header,
.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form-header h2 {
    font-size: 20px;
    color: #111923;
    margin-bottom: 4px;
}

.contact-form-header p {
    font-size: 12px;
    color: #24313d;
}

.required-star {
    color: #cc1020;
}



.contact-form {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-field {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field.full-width {
    flex-basis: 100%;
}

.form-field label {
    font-size: 12px;
    color: #111923;
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    border-radius: 10px;
    border: none;
    padding: 9px 10px;
    font-size: 13px;
    outline: none;
    background: rgba(255,255,255,0.9);
    color: #111923;
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
}

.form-field input:focus,
.form-field textarea:focus {
    box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
}


.contact-form-footer {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.send-btn {
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--brand-main);
    color: #1b262c;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: 0.25s ease;
}

.send-btn:hover {
    transform: translateY(-2px);
}

.form-note {
    font-size: 12px;
    color: #111923;
}



@media (max-width: 900px) {
    .contact-hero-inner {
        grid-template-columns: 1fr;
    }

    .contact-hero-aside {
        max-width: 420px;
    }

    .gm-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-pill-grid {
        grid-template-columns: 1fr;
    }

    .gm-qr img {
        width: 140px;
        height: 140px;
    }
}



.designer-link {
    color: var(--brand-main);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.designer-link:hover {
    color: #ffffff;
    border-bottom-color: var(--brand-main);
    transform: translateY(-2px);
}



@media (max-width: 768px) {


  html {
    font-size: 16px;
  }

  body {
    padding-top: 80px;
    background-attachment: scroll;
  }

  * {
    max-width: 100%;
  }

  img {
    height: auto;
  }

  body, html {
    overflow-x: hidden;
  }


  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 14px;
  }

  .hero-logo-line {
    width: 100%;
    justify-content: space-between;
  }

  .hero-logo-line img {
    width: 70px;
    height: auto;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-links a {
    font-size: 16px;
    padding: 6px 0;
  }


  .hero {
    padding: 30px 16px 40px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }


  .section {
    padding: 50px 16px;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }


  .expertise-grid,
  .stats-grid,
  .project-grid,
  .gallery-grid,
  .reach-grid,
  .contact-pill-grid,
  .contact-steps {
    grid-template-columns: 1fr;
  }


  .flip-inner,
  .project-card {
    height: auto;
    max-height: none;
  }

  .flip-front,
  .flip-back,
  .project-card-front,
  .project-card-back {
    position: relative;
    transform: none !important;
  }

  .flip-card:hover .flip-inner,
  .project-card:hover .project-card-inner {
    transform: none;
  }


  .ceo-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ceo-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }


  .team-main,
  .team-row {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 100%;
    max-width: 260px;
  }


  .testimonial-wrapper {
    flex-direction: column;
  }

  .tst-arrow {
    display: none;
  }


  .clients-carousel {
    flex-direction: column;
  }


  .about-hero-grid,
  .about-policy-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-title {
    font-size: 24px;
  }


  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-hero-aside {
    margin-top: 20px;
  }

  .form-row {
    flex-direction: column;
  }


  .gm-direct-box {
    height: auto;
    padding: 40px 20px;
    border-radius: 30px;
  }

  .gm-inner {
    gap: 20px;
    text-align: center;
  }

  .gm-text p {
    font-size: 16px;
  }

  .gm-qr img {
    width: 160px;
    height: 160px;
  }


  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

}



@media (max-width: 768px) {

  .navbar {
    position: relative;
  }

  .mobile-menu-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #074f5d;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffc045;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: 999;
  }

  .nav-links.mobile-open {
    max-height: 500px;
  }
}


@media (max-width: 768px) {


  body {
    overflow-x: hidden;
  }


  .projects-hero {
    padding: 80px 16px 40px;
  }

  .projects-hero .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .projects-hero .section-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }


  .projects-filter {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .project-filter-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px;
  }


  .projects-panel {
    display: none;
  }

  .projects-panel.active {
    display: block;
  }


  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }


  .project-card {
    padding: 18px;
  }

  .project-tag {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .project-client {
    font-size: 16px;
  }

  .project-location {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .project-list li {
    font-size: 14px;
    line-height: 1.5;
  }

  
  .inner-header {
    margin-bottom: 25px;
  }

  .inner-header .section-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .inner-header .section-subtitle {
    font-size: 14px;
  }


  .clients-section {
    display: none;
  }


  .cta-box {
    padding: 25px 18px;
    text-align: center;
  }

  .cta-box h2 {
    font-size: 22px;
  }

  .cta-box p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }


  .prefooter-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .prefooter-col {
    text-align: center;
  }


  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


@media (max-width: 768px) {

 


  .projects-panel[data-division="steel"].fade-in {
    transform: none !important;
  }


  .projects-panel[data-division="steel"] .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }


  .projects-panel[data-division="steel"] .project-card {
    display: block !important;
    opacity: 1 !important;
  }
}


@media (max-width: 768px) {


  .projects-panel {
    display: none;
  }


  .projects-panel.active {
    display: block;
    height: auto;
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }

 
  .projects-panel.fade-in {
    transform: none;
  }


  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-card {
    opacity: 1;
  }
}


@media (max-width: 768px) {


  .download-card .dropdown-content {
    display: block !important;
    margin-top: 20px;
  }


  .download-btn {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    text-align: center;
    position: relative;
    z-index: 5;
  }


  .download-card {
    cursor: default;
  }


  .dropdown-instruction {
    display: none;
  }
}
