:root,
.gagg-site {
    --main-h: 157;
    --main-s: 75%;
    --main-l: 43%;
    --gagg-navy: #10192a;
    --gagg-navy-2: #0b1220;
    --gagg-ink: #10192a;
    --gagg-green: #1bc183;
    --gagg-green-2: #2fd49a;
    --gagg-green-deep: #149a68;
    --gagg-green-ink: #0f7a54;
    --gagg-card: rgba(16, 25, 42, 0.78);
    --heading-font: "DM Sans", "Inter", sans-serif;
    --body-font: "DM Sans", "Inter", sans-serif;
}

.gagg-site {
    font-family: "DM Sans", "Inter", sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    max-width: 100%;
}

.gagg-site h1:not(.text),
.gagg-site h2:not(.text),
.gagg-site h3,
.gagg-site h4,
.gagg-site h5,
.gagg-site h6,
.gagg-site .title,
.gagg-site .mona-sans-main,
.gagg-site .counter-title,
.gagg-site .title-2 {
    font-family: "DM Sans", "Inter", sans-serif !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: -0.02em;
}

.gagg-site p,
.gagg-site li,
.gagg-site a,
.gagg-site span,
.gagg-site .dm-sans-main,
.gagg-site .nav-menu__link {
    font-family: "DM Sans", "Inter", sans-serif !important;
}

.gagg-site p,
.gagg-site .gagg-card p,
.gagg-site .gagg-copy p,
.gagg-site .gagg-faq .accordion-body p {
    font-weight: 500;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92) !important;
}

.gagg-site .service-section-new-1 .title,
.gagg-site .counter-section .title,
.gagg-site .working-process-section .title {
    font-weight: 700 !important;
}

.gagg-site .testimonial-section-new h2.text {
    font-family: "Anton", "Thunder", sans-serif !important;
    font-weight: 400 !important;
    color: #fff !important;
    letter-spacing: -0.03em !important;
    font-size: clamp(64px, 10vw, 140px) !important;
    line-height: 1 !important;
}

.gagg-site .testimonial-card-style p,
.gagg-site .testimonial-card-style h3,
.gagg-site .testimonial-card-style span {
    color: #10192a !important;
}

.gagg-site .testimonial-card-style p {
    font-weight: 600 !important;
}

.gagg-site .preloader svg {
    fill: var(--gagg-navy);
}

.gagg-site .preloader-heading {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.gagg-site .preloader .preloader-heading .load-text {
    letter-spacing: 0;
    font-size: inherit;
    text-transform: none;
}

.gagg-preloader {
    position: relative;
    width: 236px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gagg-preloader__orbit {
    position: absolute;
    inset: -12px;
    border-radius: 40px;
    border: 1px dashed rgba(47, 212, 154, 0.55);
    animation: gagg-orbit-glow 2.4s ease-in-out infinite;
    box-shadow:
        0 0 0 14px rgba(27, 193, 131, 0.08),
        0 0 48px rgba(27, 193, 131, 0.28);
}

.gagg-preloader__orbit::before,
.gagg-preloader__orbit::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gagg-green);
    box-shadow: 0 0 12px var(--gagg-green);
}

.gagg-preloader__orbit::before {
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.gagg-preloader__orbit::after {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
}

.gagg-preloader__card {
    position: relative;
    z-index: 1;
    width: 196px;
    height: 236px;
    border-radius: 32px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px 14px;
    animation: gagg-logo-pulse 2.2s ease-in-out infinite;
}

.gagg-preloader__card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gagg-preloader__copy {
    text-align: center;
    color: #fff;
}

.gagg-preloader__copy strong {
    display: block;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gagg-green-2);
    margin-bottom: 8px;
}

.gagg-preloader__copy span {
    display: block;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.72);
}

.gagg-preloader__bar {
    display: block;
    width: 140px;
    height: 3px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    font-style: normal;
}

.gagg-preloader__bar::after {
    content: "";
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gagg-green), var(--gagg-green-2));
    animation: gagg-bar 1.4s ease-in-out infinite;
}

@keyframes gagg-orbit-glow {
    0%,
    100% {
        opacity: 0.7;
        box-shadow:
            0 0 0 14px rgba(27, 193, 131, 0.08),
            0 0 36px rgba(27, 193, 131, 0.2);
    }
    50% {
        opacity: 1;
        box-shadow:
            0 0 0 22px rgba(27, 193, 131, 0.12),
            0 0 64px rgba(27, 193, 131, 0.38);
    }
}

@keyframes gagg-logo-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(27, 193, 131, 0.28);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 16px rgba(27, 193, 131, 0.08);
    }
}

@keyframes gagg-bar {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(280%);
    }
}

.gagg-site,
.gagg-site.new-bg-3 {
    background-color: var(--gagg-navy-2) !important;
    background-image:
        radial-gradient(900px 420px at 8% -8%, rgba(27, 193, 131, 0.16), transparent 52%),
        radial-gradient(800px 480px at 96% 0%, rgba(16, 25, 42, 0.35), transparent 48%);
}

.gagg-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.gagg-mark-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(16, 25, 42, 0.28);
}

.gagg-mark-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gagg-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.gagg-brand-text strong {
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.08em;
}

.gagg-brand-text small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.gagg-header-solid,
.header.sticky-header,
.header.fixed-header {
    background: rgba(16, 25, 42, 0.94);
    backdrop-filter: blur(16px);
}

.gagg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.25s ease;
    white-space: nowrap;
}

.gagg-btn-solid,
.gagg-site .theme-btn.bg-main-600 {
    background: var(--gagg-green) !important;
    color: var(--gagg-navy) !important;
}

.gagg-btn-solid:hover,
.gagg-site .theme-btn.bg-main-600:hover {
    background: var(--gagg-green-2) !important;
    color: var(--gagg-navy) !important;
    transform: translateY(-2px);
}

.gagg-site .theme-btn-arrow-left,
.gagg-site .theme-btn-arrow-right {
    background: var(--gagg-green) !important;
    color: var(--gagg-navy) !important;
}

.gagg-btn-ghost {
    border: 1px solid rgba(27, 193, 131, 0.38);
    color: #fff !important;
    background: rgba(16, 25, 42, 0.35);
}

.gagg-btn-ghost:hover {
    border-color: var(--gagg-green);
    color: var(--gagg-green-2) !important;
    background: rgba(27, 193, 131, 0.1);
}

.gagg-site .hero-new.gagg-hero,
.gagg-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px !important;
    overflow: hidden;
}

.gagg-hero .ripple-image img {
    object-fit: cover;
    filter: brightness(0.34) saturate(1.05) hue-rotate(-8deg);
}

.gagg-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 25, 42, 0.28) 0%, rgba(16, 25, 42, 0.72) 100%);
    pointer-events: none;
}

.gagg-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 36px 40px 36px 0;
}

.gagg-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(27, 193, 131, 0.35);
    border-radius: 999px;
    padding: 8px 16px;
    color: #fff;
    margin-bottom: 22px;
    background: rgba(16, 25, 42, 0.45);
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
}

.gagg-kicker i {
    color: var(--gagg-green);
}

.gagg-hero-copy h1 {
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.18;
    color: #fff;
    margin: 0 0 20px;
    max-width: none;
    letter-spacing: -0.025em;
    font-weight: 600;
}

.gagg-hero-copy h1 span {
    display: block;
    color: var(--gagg-green-2);
    margin-top: 6px;
}

.gagg-hero-copy .lead {
    font-size: 18px;
    line-height: 1.7;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.92) !important;
    margin: 0 0 28px;
    letter-spacing: 0;
    word-spacing: normal;
    font-weight: 500;
}

.gagg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gagg-why {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px 64px;
    align-items: center;
}

.gagg-about-intro,
.gagg-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px 64px;
    align-items: center;
}

.gagg-about-intro h2,
.gagg-page-intro h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.22;
    letter-spacing: -0.03em;
    margin: 16px 0 0;
    max-width: none;
}

.gagg-about-intro p,
.gagg-page-intro p {
    font-size: 18px;
    line-height: 1.75;
    margin: 0 0 18px;
}

.gagg-about-intro p:last-child,
.gagg-page-intro p:last-child {
    margin-bottom: 0;
}

.gagg-services-page {
    padding: 72px 0 88px;
}

.gagg-services-page > .container > article h2 {
    font-size: clamp(28px, 3.2vw, 40px) !important;
    line-height: 1.25 !important;
    max-width: none;
}

.gagg-why__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
}

.gagg-why__copy h2 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 16px 0 20px;
    color: #fff;
}

.gagg-why__copy p {
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0.01em;
    word-spacing: 0.06em;
    max-width: 38rem;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.82) !important;
}

.gagg-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gagg-mv__card {
    padding: 0;
    overflow: hidden;
}

.gagg-mv__card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
}

.gagg-mv__body {
    padding: 28px;
}

.gagg-mv__body h3 {
    margin-top: 16px;
}

.gagg-safety {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: stretch;
    background: linear-gradient(145deg, rgba(27, 193, 131, 0.12), rgba(16, 25, 42, 0.55));
    border: 1px solid rgba(27, 193, 131, 0.22);
    border-radius: 32px;
    padding: 20px;
    overflow: hidden;
}

.gagg-safety__media {
    position: relative;
    min-height: 100%;
}

.gagg-safety__media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
}

.gagg-safety__badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: 80%;
    background: rgba(16, 25, 42, 0.88);
    border: 1px solid rgba(27, 193, 131, 0.35);
    color: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.gagg-safety__copy {
    padding: 28px 28px 28px 12px;
}

.gagg-safety__copy h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin: 16px 0 18px;
    color: #fff;
}

.gagg-safety__copy > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8) !important;
}

.gagg-safety__points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gagg-safety__points > div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.gagg-safety__points strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.gagg-safety__points p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9) !important;
}

.gagg-card {
    background: var(--gagg-card);
    border: 1px solid rgba(27, 193, 131, 0.12);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.gagg-service-card {
    display: flex;
    flex-direction: column;
}

.gagg-service-card .gagg-media {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    margin-bottom: 24px;
}

.gagg-service-card h3 {
    min-height: 2.6em;
}

.gagg-service-card .gagg-btn {
    margin-top: auto;
    align-self: flex-start;
}

.gagg-service-hero {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.gagg-card h3 {
    color: #fff;
    margin: 16px 0 10px;
}

.gagg-card p,
.gagg-copy p,
.gagg-faq .accordion-body p {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 500;
}

.gagg-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(27, 193, 131, 0.16);
    color: var(--gagg-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.gagg-step {
    position: relative;
}

.gagg-step span {
    display: block;
    font-size: 64px;
    line-height: 1;
    color: rgba(27, 193, 131, 0.18);
    font-weight: 700;
}

.gagg-price-card {
    background: linear-gradient(160deg, rgba(27, 193, 131, 0.18), rgba(16, 25, 42, 0.82));
    border: 1px solid rgba(27, 193, 131, 0.32);
}

.gagg-price-card .amount {
    font-size: 42px;
    color: var(--gagg-green);
    font-weight: 700;
    line-height: 1;
}

.gagg-price-steps {
    padding-top: 72px;
}

.gagg-media {
    width: 100%;
    height: auto;
    object-fit: unset;
    border-radius: 20px;
    display: block;
    margin-bottom: 20px;
}

.gagg-footer-branding {
    margin-top: -36px;
}

.gagg-footer-brand {
    margin-bottom: 16px;
}

.gagg-footer .gagg-mark-wrap {
    width: 52px;
    height: 52px;
}

.gagg-footer .gagg-mark-wrap img {
    width: 34px !important;
    height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
    object-fit: contain !important;
}

.gagg-footer-line {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.gagg-footer-line i {
    color: var(--gagg-green-2);
    font-size: 18px;
}

.gagg-footer .social-icon a {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.gagg-footer .social-icon a i {
    font-size: 16px;
    color: var(--gagg-green-2);
}

.gagg-site .back-to-top-wrapper {
    z-index: 10000;
    inset-inline-end: 28px;
}

.gagg-site .back-to-top-wrapper.back-to-top-btn-show {
    inset-block-end: 148px;
}

.gagg-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gagg-float a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 18px;
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 12px 30px rgba(16, 25, 42, 0.32);
    font-weight: 600;
}

.gagg-float__call {
    background: var(--gagg-navy);
    border: 1px solid rgba(27, 193, 131, 0.28);
}

.gagg-float__wa {
    background: var(--gagg-green);
    color: var(--gagg-navy) !important;
}

.gagg-float i {
    font-size: 22px;
}

.gagg-breadcrumb {
    background-size: cover;
    background-position: center;
    padding-block: 160px 64px !important;
}

.gagg-breadcrumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 25, 42, 0.62), rgba(16, 25, 42, 0.82));
}

.gagg-breadcrumb .container {
    position: relative;
    z-index: 2;
}

.gagg-faq .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(27, 193, 131, 0.14);
}

.gagg-faq .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
}

.gagg-faq .accordion-button:not(.collapsed) {
    color: var(--gagg-green) !important;
}

.gagg-form input,
.gagg-form textarea,
.gagg-form select {
    background: rgba(255, 255, 255, 0.96);
    color: var(--gagg-navy);
}

.gagg-alert {
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.gagg-alert-ok {
    background: rgba(27, 193, 131, 0.16);
    color: #d8ffe9;
}

.gagg-alert-err {
    background: rgba(220, 53, 69, 0.16);
    color: #ffd5d8;
}

.gagg-site .header-eight .nav-submenu__item a:hover,
.gagg-site .hover-text-main-600:hover,
.gagg-site .text-main-600 {
    color: var(--gagg-green) !important;
}

.gagg-site .bg-main-600 {
    background-color: var(--gagg-green) !important;
}

.gagg-page-title {
    font-size: clamp(28px, 4vw, 48px) !important;
    line-height: 1.22 !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
    margin: 16px 0 0;
    max-width: 22ch;
}

.gagg-site .breadcrumb-title {
    font-size: clamp(28px, 6vw, 48px) !important;
    line-height: 1.15 !important;
    text-transform: none !important;
    letter-spacing: -0.03em !important;
}

.gagg-site .pricing-ip-price-title {
    color: var(--gagg-green) !important;
    font-size: clamp(42px, 5vw, 64px) !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
}

.gagg-site .pricing-ip-price-title span {
    font-size: 0.45em !important;
    margin-left: 4px;
    margin-bottom: 6px;
}

.gagg-site .mobile-menu,
.gagg-site .twoffcanvas {
    background: var(--gagg-navy) !important;
}

.gagg-footer {
    background-color: var(--gagg-navy);
    overflow: visible;
}

.gagg-footer.fix {
    overflow: visible;
}

.gagg-footer .marquee {
    overflow-x: hidden;
    overflow-y: visible;
    margin-top: 80px !important;
    padding-top: 28px !important;
    padding-bottom: 48px !important;
}

.gagg-footer .marquee .text {
    font-size: clamp(64px, 10vw, 140px) !important;
    line-height: 1.2 !important;
    padding-top: 0.12em;
}

@media (max-width: 1199.98px) {
    .gagg-why,
    .gagg-about-intro,
    .gagg-page-intro,
    .gagg-safety,
    .gagg-mv {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gagg-safety__media img {
        min-height: 280px;
        height: 280px;
    }

    .gagg-safety__copy {
        padding: 8px 4px 12px;
    }

    .gagg-site .counter-section .title,
    .gagg-site .service-section-new-1 .title,
    .gagg-site .working-process-section .title {
        font-size: clamp(26px, 5vw, 40px) !important;
        max-width: none !important;
        margin-left: 0 !important;
        line-height: 1.25 !important;
    }
}

@media (max-width: 991.98px) {
    .gagg-site #smooth-wrapper,
    .gagg-site #smooth-content {
        overflow-x: hidden !important;
        max-width: 100%;
    }

    .gagg-site .new-section-padding {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }

    .gagg-site .new-section-padding.pt-0 {
        padding-top: 0 !important;
    }

    .gagg-site .py-140 {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }

    .gagg-site .pb-140 {
        padding-bottom: 64px !important;
    }

    .gagg-site .pt-140 {
        padding-top: 64px !important;
    }

    .gagg-site .breadcrumb-area {
        padding-top: 120px !important;
        padding-bottom: 48px !important;
    }

    .gagg-footer-branding {
        margin-top: 0;
    }

    .gagg-site .testimonial-section-new h2.text {
        font-size: clamp(36px, 11vw, 72px) !important;
        line-height: 1.05 !important;
        white-space: normal !important;
        word-break: break-word;
    }

    .gagg-page-title {
        max-width: none;
    }

    .gagg-footer .marquee .text {
        font-size: clamp(40px, 12vw, 72px) !important;
    }
}

@media (max-width: 767.98px) {
    .gagg-preloader {
        width: 168px;
        height: 200px;
    }

    .gagg-preloader__card {
        width: 140px;
        height: 168px;
        border-radius: 22px;
        padding: 10px;
    }

    .gagg-preloader__copy strong {
        font-size: 14px;
        letter-spacing: 0.1em;
    }

    .gagg-site .hero-new.gagg-hero,
    .gagg-hero {
        padding: 110px 0 96px !important;
        min-height: auto;
        align-items: flex-end;
    }

    .gagg-hero-copy {
        padding: 16px 0 0;
        max-width: none;
    }

    .gagg-hero-copy h1 {
        font-size: clamp(26px, 8vw, 34px);
    }

    .gagg-hero-copy .lead {
        font-size: 16px;
    }

    .gagg-hero-actions,
    .gagg-hero-actions .gagg-btn,
    .gagg-safety__copy .gagg-hero-actions .gagg-btn {
        width: 100%;
    }

    .gagg-btn {
        white-space: normal;
        text-align: center;
        min-height: 46px;
        padding: 10px 16px;
    }

    .gagg-card {
        padding: 20px;
        border-radius: 18px;
    }

    .gagg-service-card h3 {
        min-height: 0;
    }

    .gagg-service-card .gagg-media {
        height: 180px;
    }

    .gagg-mv__card img {
        height: 180px;
    }

    .gagg-step span {
        font-size: 44px;
    }

    .gagg-about-intro h2,
    .gagg-page-intro h2,
    .gagg-why__copy h2,
    .gagg-safety__copy h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .gagg-services-page {
        padding: 48px 0 64px;
    }

    .gagg-kicker {
        font-size: 13px;
        padding: 7px 12px;
    }

    .gagg-form input,
    .gagg-form textarea,
    .gagg-form select {
        font-size: 16px;
    }

    .gagg-site .back-to-top-wrapper.back-to-top-btn-show {
        inset-block-end: 86px;
        inset-inline-end: 12px;
    }

    .gagg-footer .footer-bootom-text {
        padding-bottom: 100px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .gagg-footer .footer-new-widget-wrapper .single-widget-item .content h2 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    .gagg-float {
        left: 10px;
        right: 10px;
        bottom: 10px;
        flex-direction: row;
        z-index: 9999;
    }

    .gagg-float a {
        flex: 1;
        justify-content: center;
        padding: 10px 8px;
        font-size: 12px;
        min-height: 46px;
        gap: 6px;
    }

    .gagg-site .header .container,
    .gagg-site .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gagg-site .testimonial-card-style,
    .gagg-site .testimonial-card-style.style-1,
    .gagg-site .testimonial-card-style.style-2,
    .gagg-site .testimonial-card-style.style-3 {
        transform: none !important;
        margin: 0 0 16px !important;
    }

    .gagg-site .testimonial-section-new {
        margin: 0 8px;
        overflow: hidden;
    }

    .gagg-site .footer-section-new {
        margin: 0 8px;
    }

    .gagg-price-steps {
        padding-top: 24px;
    }
}

@media (max-width: 479.98px) {
    .gagg-float span {
        display: none;
    }

    .gagg-float a {
        min-width: 46px;
        padding: 12px;
    }
}
