* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --primary-color: #145D9D;
    --secondary-color: #49cde5;
    --white: #fff;
    --black: #000;
    --black2: #1a1a1a;
    --border-color-1: #dee2e6;
    --yellow: #FFD130;
    --grey: #363636;

    --primary-light: #e8f4fd;
    --primary-mid: #1a6fba;
    --save-bg: #fff3cc;
    --save-text: #7a5900;
    --delivery-bg: #e6f7ef;
    --delivery-text: #0a6640;
    --check-bg: #d0ebff;
    --featured-star-bg: #145D9D;

    scroll-behavior: smooth;
    border-radius: 1.5rem;
    transition: cursor 0.1s;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--black2);
    
    font-family: "Poppins", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
}

a,
button,
input[type="submit"] {
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

ul,
li {
    list-style: none;
}

.container {
    padding: 0px 300px;
    margin-right: auto;
    margin-left: auto;
}

/* Header */

header {
    padding: 20px 0px;
}

header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.fixed-header {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: auto;
    z-index: 1001;
    border-top-width: 0;
    background: var(--white);
}

header .cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

header .cta a {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--black);
}

header .cta a img {
    height: 18px;
    width: 18px;
    margin-right: 5px;
}

header .cta span {
    color: var(--black);
}

header .cta button,
.middle-bar button, 
.middle-bar a {
    font-size: 16px;
    font-weight: 600;
    background-color: var(--black);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
    animation: subtlePulse 2s infinite;
}

.logo img {
    width: 200px;
    object-fit: contain;
}

/* Hero Section */

.hero-section {
    padding: 160px 0px 80px 0px;
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-section .hero-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 58.33333333%;
    gap: 20px;
}

.hero-content h1 {
    line-height: 1.1;
    font-weight: 700;
    font-size: 34px;
    letter-spacing: -0.5px;
    /*text-transform: uppercase;*/
    color: #0F335E;
}

.hero-content h1 span {
    color: #4792E3;
}

.hero-content span img {
    height: 20px;
}

.hero-content h3 {
    line-height: 1.2em;
    font-weight: 500;
    font-size: 22px;
}

.hero-content > h3:first-of-type {
    text-transform: capitalize;
    color: var(--black);
}

.hero-content:last-child {
    text-transform: uppercase;
}

.hero-content .button-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-content .button-group button,
.hero-content .button-group a {
    padding: 16px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease-in-out;
    animation: subtlePulse 2s infinite;
    line-height: 0px;
    font-family: inherit;
}

@keyframes subtlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.hero-content .button-group button:hover,
.hero-content .button-group a:hover {
    background-color: var(--black2);
}

.hero-content .button-group button img,
.hero-content .button-group a img {
    height: 18px;
    width: 18px;
    margin-left: 12px;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-content .hero-trust-badges img {
    width: 120px;
    border: 1px solid var(--grey);
    border-radius: 10px;
}


.hero-section .hero-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.33333333%;
}

.hero-section .hero-form form {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: 5px;
    color: var(--black);
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 0 40px 2px color-mix(in srgb, var(--primary-color) 40%, transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.hero-form form h3 {
    font-size: 28px;
    text-align: center;
    line-height: 1.2em;
    animation: blink 1s cubic-bezier(.4, 0, 1, 1) infinite;

}

@keyframes blink {
    0%, 100% {
    color: #4792E3;
    }
    
    50% {
    color: red;
    }
}

.hero-form form p {
    font-size: 16px;
    font-weight: 700;
}

.hero-form form .row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.hero-form .form-group textarea {
    height: 100px;
}

.hero-form form .form-group {
    width: 100%;
}

.hero-form form .form-group input,
.hero-form form .form-group textarea {
    width: 100%;
    background-color: rgb(244, 247, 252);
    font-size: 14px;
    color: var(--black);
    padding: 10px 15px;
    border-radius: 3px;
    border: 1px solid var(--border-color-1);
    width: 100%;
    font-family: inherit;
}

.hero-form form input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 15px;
    transition: all 0.5s ease;
    font-size: 16px;
}

.hero-form form input[type="submit"]:hover {
    background-color: var(--secondary-color);
    color: var(--black);
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--secondary-color) 40%, transparent);
}

/* Service Section */

.service-section {
    padding: 70px 0px;
    background-color: color-mix(in srgb, var(--secondary-color) 20%, transparent);
}

.service-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.service-section h2,
.before-after-section h2,
.portfolio-section h2,
.process-section h2,
.reviews-section h2,
.industry-section h2,
.pricing-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-section h2 {
    background: var(--black2);
    color: #fff;
    padding: 5px 10px;
}

.reviews-section p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.hero-content > p:first-of-type {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.service-section p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.service-section .service-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 25px;
    margin-top: 50px;
}

.service-section .service-box {
    width: 32%;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-box:hover {
    background-color: var(--primary-color);
}

.service-box:hover h3,
.service-box:hover p {
    color: var(--white);
}

.service-box .service-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 4px solid var(--white);
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.service-box h3 {
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
}

.service-box p {
    font-size: 15px;
    line-height: 1.3em;
    text-align: start;
    font-weight: 400;
}

.service-section .button-group {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.service-section .button-group button,
.service-section .button-group a,
.industry-content .button-group button,
.industry-content .button-group a,
.pricing-section .button-group button,
.pricing-section .button-group a {
    padding: 16px 35px;
    font-weight: 600;
    border-radius: 10px;
    font-size: 16px;
    transition: transform 0.2s ease-in-out;
    animation: subtlePulse 2s infinite;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-section .button-group button,
.industry-content .button-group button,
.pricing-section .button-group button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.service-section .button-group button:hover,
.industry-content .button-group button:hover,
.pricing-section .button-group button:hover {
    background-color: var(--black2);
}

.service-section .button-group a,
.industry-content .button-group a,
.pricing-section .button-group a {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    line-height: 1em;
}

.service-section .button-group a:hover,
.industry-content .button-group a:hover,
.pricing-section .button-group a:hover {
    background-color: var(--secondary-color);
}

/* Before & After Section */

.before-after-section {
    padding: 70px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/*.before-after-section .container {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*}*/

.before-after-section h2 {
    text-align: center;
    width: 100%;
    line-height: 1.2em;
}

.before-after-section h2 span {
    background: var(--black2);
    color: #fff;
    padding: 0px 10px;
}

.before-after-section p {
    font-size: 18px;
    font-weight: 500;
    /*text-transform: capitalize;*/
    text-align: center;
}

h3.before {
    background: #d94a48;
}

h3.after {
    background: #6cad71;
}

h3.before img, h3.after img {
    height: 25px;
    width: 25px;
    margin-right: 10px;
    padding: 5px;
    border-radius: 999px;
}

h3.before img {
    background: #ff7977;
}

h3.after img {
    background: #8bc690;
}

.comparison-section {
    width: 100%;
    margin-top: 50px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.image-box {
    /*background: #f7f7f7;*/
    /*border: 5px solid var(--black2);*/
    border-radius: 6px;
    /*box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);*/
    overflow: hidden;
}

.image-box h3 {
    margin: 0;
    padding: 14px 20px;
    /*background: var(--black2);*/
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-scroll {
    contain: layout paint;
    /*height: 620px;*/
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    border-radius: 1.5rem;
    cursor: grab;
    transition: cursor 0.1s;
    scrollbar-width: thin;
    scrollbar-color: #49cde5 #1d4568;
    margin-top: 30px;
}

.comparison-titles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 20px;
    color: #111;
}

.comparison-titles span {
    display: block;
    text-align: center;
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 700;
    font-style: italic;
    line-height: 1;
}

.gallery-wrap {
    position: relative;
    padding: 0 72px;
}

.slide-image {
    display: block;
    width: 100%;
    /*height: auto;*/
    height: 400px;
    max-width: none;
    object-fit: contain;
    object-position: center;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 72px;
    border: 0;
    background: transparent;
    color: var(--secondary-color);
    font-size: 70px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-prev {
    left: 0;
}

.nav-next {
    right: 0;
}

.navigations {
    
}

.counter {
    margin-top: 18px;
    text-align: center;
    color: #667085;
    font-size: 14px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 70px 0;
    overflow: hidden;
    text-align: center;
    background-color: var(--primary-color, #1a1a1a);
}

.portfolio-section h2 {
    color: #fff;
    margin-bottom: 50px;
    line-height: 1.2em;
}

.portfolio-section h2 span {
    font-size: 30px;
    color: #a1f0ff;
    font-weight: 500;
}

.slider {
    overflow: hidden;
    width: 100%;
    margin-bottom: 35px;
}

.track {
    display: flex;
    width: max-content;
    gap: 30px;
}

.slide {
    flex: 0 0 auto;
}

.slide img {
    width: 360px;
    height: 550px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.05);
}

/* First slider: left to right */
.left-to-right {
    animation: moveRight 50s linear infinite;
}

/* Second slider: right to left */
.right-to-left {
    animation: moveLeft 50s linear infinite;
}

@keyframes moveLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes moveRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Popup/Lightbox */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup.active {
    display: flex;
}

.popup img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    z-index: 10000;
}

.popup-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 45px;
    padding: 15px 22px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10000;
}

.popup-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.prev {
    left: 35px;
}

.next {
    right: 35px;
}

/* Pricing Section */

.pricing-section {
    padding: 70px 0px 20px 0px;
}

.pricing-section p {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.pricing-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pricing-section button {
    /* width: 100%; */
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: 1px;
    color: var(--grey);
    background: var(--yellow);
    padding: 15px;
    border: none;
}

.pricing-section .button-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    gap: 10px;
}

.packages-grid {
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0px 30px 0px;
}

.package-card {
    background: var(--white);
    border: 1px solid var(--border-color-1);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
    width: 32.26%;
}

.package-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    background: var(--white);
}

.package-card.featured:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-card.featured .package-icon {
    background: var(--primary-color);
}

.package-icon svg {
    width: 22px;
    height: 22px;
}

.package-type {
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.package-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--black2);
    margin-bottom: 6px;
    line-height: 1.5em;
}

.package-card.featured .package-name {
    color: var(--primary-color);
}

.package-tagline {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 1.3rem;
    color: var(--black2);
}

.price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.price-current {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.price-original {
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
}

.price-save {
    font-size: 16px;
    background: var(--save-bg);
    color: var(--save-text);
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.delivery-badge {
    display: inline-block;
    font-size: 11px;
    color: var(--delivery-text);
    background: var(--delivery-bg);
    padding: 3px 9px;
    border-radius: 6px;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.divider {
    height: 1px;
    background: var(--border-color-1);
    margin-bottom: 1.2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--black2);
}

.features-list li {
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.45;
    color: var(--black2);
}

.check-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.package-card.featured .check-icon {
    background: var(--check-bg);
}

.check-icon img {
    width: 12px;
    height: 12px;
}

/* Process Section */

.process-section {
    padding: 70px 0px;
}

.process-section p {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.process-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.process-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.process-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    margin-top: 30px;
    background-color: var(--white);
    border-radius: .5rem;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
    transition-property: all;
    width: 33.33%;
}

.process-box:hover {
    background-color: var(--primary-color);
}

.process-box:hover h3,
.process-box:hover p {
    color: var(--white);
}

.process-box:hover button {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-10px);
}

.process-box h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2em;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--secondary-color);
}

.process-box p {
    font-size: 15px;
    text-align: center;
}

.process-box button {
    padding: 15px 20px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-top: 20px;
    color: var(--white);
    border: none;
    font-size: 15px;
    font-family: inherit;
    font-weight: 500;
    transition: transform 0.5s ease-in;
}

/* Exclusive Section */

.exclusive-section {
    padding: 50px 0px 50px 0px;
    background-color: var(--black2);
    margin-top: 120px;
}

.exclusive-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.exclusive-image {
    width: 35%;
}

.exclusive-image img {
    width: 400px;
    height: 550px;
    object-fit: cover;
    object-position: top;
    margin-top: -160px;
    transform: rotate(10deg);
}

.exclusive-content {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exclusive-content h2 {
    font-size: 65px;
    line-height: 1em;
    border: 3px solid var(--white);
    width: fit-content;
    padding: 10px;
    color: var(--yellow);
    text-transform: uppercase;
}

.exclusive-content h2 span {
    font-size: 50px;
    color: var(--white);
    text-transform: none;
}

.exclusive-content p {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--white);
}

.exclusive-content button {
    width: fit-content;
    font-size: 20px;
    background: var(--yellow);
    font-weight: 700;
    border: none;
    color: var(--black);
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 10px var(--primary-color);
    text-shadow: none;
    letter-spacing: 1px;
    font-family: inherit;
    transition: all 0.5s ease-in;
    line-height: 1.3;
    text-align: center;
}

.exclusive-content button:hover {
    transform: translateY(10px);
    box-shadow: none;
}

.exclusive-content button span {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

/* Industry Section */

.industry-section {
    padding: 70px 0px;
}

.industry-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-content,
.industry-image {
    width: 50%;
    padding: 0px 10px;
}

.industry-image img {
    border-radius: 10px;
    width: 100%;
}

.industry-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.industry-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.industry-content li {
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    color: var(--black);
}

.industry-content li h3::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--secondary-color);
    position: relative;
    display: inline-block;
    margin-right: 8px;
    transform: rotate(45deg);
}

.industry-content li p {
    font-size: 16px;
    font-weight: 400;
    padding-left: 15px;
}

.industry-content .button-group {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Reviews Section */

.reviews-section {
    padding: 70px 0px;
}

.reviews-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.reviews-section h2 {
    margin-top: -20px;
}

.reviews-section span {
    font-size: 30px;
    color: var(--primary-color);
    line-height: 1.25;
    font-weight: 500;
}

/* ----- SINGLE SLIDER (LEFT TO RIGHT) ----- */
    .slider-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 28px;
      background: #f9fafb;
      padding: 12px 0 20px 0;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(0, 0, 0, 0.02);
    }

    /* horizontal track: flex row, smooth left-to-right movement */
    .slider-track {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 24px;
      will-change: transform;
      animation: slideLeftRight 50s linear infinite;
      width: max-content;
      padding: 16px 12px;
    }

    /* pause on hover */
    .slider-container:hover .slider-track {
      animation-play-state: paused;
    }

    /* individual card style (consistent with original aesthetic) */
    .slider-card {
      flex: 0 0 auto;
      width: 340px;
      background: #ffffff;
      border-radius: 24px;
      padding: 22px 20px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
      border: 1px solid #edeff2;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      backdrop-filter: blur(0px);
    }

    .slider-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    }

    .review-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
      gap: 12px;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      color: white;
      flex-shrink: 0;
      background: #9ca3af; /* fallback */
    }

    /* platform-specific avatar colors */
    .avatar-trustpilot {
      background: #00b67a;
    }

    .avatar-google {
      background: #4285f4;
    }

    .reviewer h4 {
      font-size: 1rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 4px;
    }

    .reviewer span {
      font-size: 0.75rem;
      color: #6c757d;
    }

    .stars {
      color: #fbbf24;
      font-size: 0.9rem;
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .slider-card p {
      font-size: 0.9rem;
      line-height: 1.55;
      color: #2c3e4f;
      display: -webkit-box;
      -webkit-line-clamp: 6;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* optional small platform badge */
    .platform-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 40px;
      margin-bottom: 10px;
      background: #f0f2f5;
      color: #1e293b;
      width: fit-content;
    }

    /* LEFT TO RIGHT infinite keyframes */
    @keyframes slideLeftRight {
      0% {
        transform: translateX(0);
      }
      100% {
        /* moves track to left by half of the total duplicated content width;
           we duplicate cards to make seamless loop, so moving by -50% relative to track width */
        transform: translateX(-50%);
      }
    }

/*.reviews-wrapper {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 24px;*/
/*    height: 620px;*/
/*    margin-top: 50px;*/
/*}*/

/*.review-column {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    border-radius: 20px;*/
/*    background: #f9fafb;*/
/*    padding: 20px;*/
/*}*/

/*.review-column::before,*/
/*.review-column::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 90px;*/
/*    z-index: 2;*/
/*    pointer-events: none;*/
/*}*/

/*.review-column::before {*/
/*    top: 0;*/
/*    background: linear-gradient(to bottom, #f9fafb, transparent);*/
/*}*/

/*.review-column::after {*/
/*    bottom: 0;*/
/*    background: linear-gradient(to top, #f9fafb, transparent);*/
/*}*/

/*.column-title {*/
/*    position: relative;*/
/*    z-index: 3;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 10px;*/
/*    padding: 14px;*/
/*    margin-bottom: 16px;*/
/*    border-radius: 14px;*/
/*    color: #ffffff;*/
/*    font-size: 18px;*/
/*    font-weight: 700;*/
/*}*/

/*.trustpilot-title {*/
/*    background: #00b67a;*/
/*}*/

/*.google-title {*/
/*    background: #4285f4;*/
/*}*/

/*.marquee {*/
/*    height: calc(100% - 70px);*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*}*/

/*.review-track {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 16px;*/
/*}*/

/*.move-up {*/
/*    animation: scrollUp 50s linear infinite;*/
/*}*/

/*.move-down {*/
/*    animation: scrollDown 50s linear infinite;*/
/*}*/

/*.review-column:hover .review-track {*/
/*    animation-play-state: paused;*/
/*}*/

/*.review-card {*/
/*    background: #ffffff;*/
/*    border-radius: 18px;*/
/*    padding: 20px;*/
/*    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);*/
/*    border: 1px solid #eef0f4;*/
/*}*/

/*.review-top {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    margin-bottom: 12px;*/
/*    gap: 12px;*/
/*}*/

/*.reviewer {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*}*/

/*.avatar {*/
/*    width: 44px;*/
/*    height: 44px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: #ffffff;*/
/*    font-weight: 700;*/
/*    flex-shrink: 0;*/
/*}*/

/*.trustpilot-avatar {*/
/*    background: #00b67a;*/
/*}*/

/*.google-avatar {*/
/*    background: #4285f4;*/
/*}*/

/*.reviewer h4 {*/
/*    color: #111827;*/
/*    font-size: 15px;*/
/*    margin-bottom: 3px;*/
/*}*/

/*.reviewer span {*/
/*    color: #9ca3af;*/
/*    font-size: 13px;*/
/*}*/

/*.stars {*/
/*    color: #f59e0b;*/
/*    font-size: 15px;*/
/*    white-space: nowrap;*/
/*}*/

/*.review-card p {*/
/*    color: #4b5563;*/
/*    font-size: 15px;*/
/*    line-height: 1.6;*/
/*}*/

/*@keyframes scrollUp {*/
/*    from {*/
/*        transform: translateY(0);*/
/*    }*/

/*    to {*/
/*        transform: translateY(-50%);*/
/*    }*/
/*}*/

/*@keyframes scrollDown {*/
/*    from {*/
/*        transform: translateY(-50%);*/
/*    }*/

/*    to {*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/* Faq Section */

.faq-section {
    max-width: 920px;
    margin: auto;
    position: relative;
}

.faq-box {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 0 40px 2px color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.faq-header {
    text-align: center;
    margin-bottom: 38px;
}

.faq-header h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 14px;
    font-weight: 700;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px color-mix(in srgb, var(--primary-color) 16%, transparent);

}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
}

.faq-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 14px;
    background: #f1f5f9;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    contain: layout paint;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 15px 15px;
    color: #64748b;
    font-size: 15.5px;
    line-height: 1.8;
}

/* Footer */

footer {
    margin-top: 50px;
    padding: 70px 0px;
    background-color: var(--black2);
}

footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .info-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--white);
}

footer .info-container .info-box {
    width: 33.33%;
    padding: 0px 10px;
}

footer h4 {
    font-size: 16px;
}

footer h4,
footer p,
footer a {
    color: var(--white);
}

footer p {
    margin-top: 20px;
}

footer p a {
    text-decoration: underline;
}

footer a:hover {
    color: var(--secondary-color);
}

.get-in-touch-section {
    padding: 70px 0px;
}

.get-in-touch-section .container {
    display: flex;
    justify-content: center;
}

.git-content,
.git-form {
    width: 50%;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.git-content h2,
.git-form h2 {
    font-size: 30px;
    font-weight: 500;
}

.git-trust-badges {
    margin: 30px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.git-trust-badges img {
    width: 198px;
    border: 2px solid var(--grey);
    border-radius: 5px;
}

.git-content button {
    width: 100%;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: 1px;
    color: var(--grey);
    background: var(--yellow);
    padding: 15px;
    border: none;
    transition: all 0.5s ease-in;
}

.git-content button:hover {
    transform: scale(0.95);
}

.git-content p,
.git-form p {
    margin-top: 16px;
    text-align: center;
}

.git-form p a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.git-form form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}

.git-form form .row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

.git-form .form-group {
    width: 100%;
}

.git-form .form-group input,
.git-form .form-group textarea {
    width: 100%;
    background-color: rgb(244, 247, 252);
    font-size: 15px;
    color: var(--black);
    padding: 12px 15px;
    border-radius: 3px;
    border: 1px solid var(--border-color-1);
    font-size: 16px;
    font-family: inherit;
}

.git-form .form-group textarea {
    height: 120px;
}

.git-form .half-width {
    width: 48.8%;
}

.git-form form input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
    padding: 12px 15px;
    transition: all 0.5s ease;
}

.git-form form input[type="submit"]:hover {
    background-color: var(--grey);
}

@media (max-width: 1536px) {
    .container {
        padding: 0px 100px;
    }
}

@media (max-width: 1440px) {
    .container {
        padding: 0px 50px;
    }

    .slide img {
        width: 300px;
        height: 400px;
    }

    .git-trust-badges img {
        width: 150px;
    }
}

@media (max-width: 1440px) {
    .git-form .half-width {
        width: 48.75%;
    }
}

@media (max-width: 1350px) {

    .hero-form form h3 {
        font-size: 25px;
    }

    .service-section h2,
    .before-after-section h2,
    .portfolio-section h2,
    .process-section h2,
    .reviews-section h2,
    .industry-section h2,
    .pricing-section h2 {
        font-size: 35px;
    }

    .portfolio-section h2 span, .reviews-section span {
        font-size: 25px;
    }

    .exclusive-content h2 {
        font-size: 50px;
    }

    .exclusive-content h2 span {
        font-size: 85px;
    }

    .exclusive-content button {
        font-size: 20px;
    }

    .service-box h3,
    .process-box h3 {
        font-size: 20px;
    }

    .git-content p {
        font-size: 20px;
    }

    .git-form .half-width {
        width: 48.7%;
    }
}

@media (max-width: 1300px) {

    .service-section .service-container {
        gap: 50px 20px;
    }

    .package-card,
    .service-section .service-box {
        width: 32%;
    }

    .git-content h2,
    .git-form h2 {
        font-size: 25px;
        text-align: center;
    }

    .git-content button {
        font-size: 20px;
    }

    .exclusive-content h2 {
        font-size: 40px;
    }

    .exclusive-content h2 span {
        font-size: 75px;
    }

    .exclusive-section .container {
        gap: 20px;
    }

    .git-form .half-width {
        width: 48.5%;
    }
}

@media (max-width: 1200px) {
    .exclusive-image img {
        width: 350px;
        height: 550px;
    }

    .git-form .form-group input,
    .git-form .form-group textarea,
    .hero-form form .form-group input,
    .hero-form form .form-group textarea {
        font-size: 15px;
    }

    .git-form .half-width {
        width: 48.4%;
    }
}

@media (max-width: 1100px) {
    .exclusive-image img {
        width: 350px;
        height: 550px;
    }

    .exclusive-content h2 span {
        font-size: 70px;
    }

    .git-form .half-width {
        width: 48.3%;
    }
}

@media (max-width: 1024px) {

    .package-card,
    .service-section .service-box {
        width: 31%;
    }

    .exclusive-content h2 {
        font-size: 30px;
    }

    .exclusive-content h2 span {
        font-size: 65px;
    }

    .exclusive-image img {
        width: 320px;
        height: 520px;
    }

    .hero-form form h3 {
        font-size: 20px;
    }

    .git-trust-badges img {
        width: 130px;
    }

    .git-content button {
        font-size: 18px;
    }
}

@media (max-width: 770px) {

    /* Before & After Section */

    .gallery-wrap {
        padding: 0 38px;
    }

    .slider-card {
        height: 480px;
        border-width: 5px;
    }

    .before-layer .slide-image {
        width: calc(100vw - 76px);
    }

    .nav-btn {
        width: 34px;
        font-size: 48px;
    }

    .handle {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    /* Portfolio Section */

    .portfolio-section h2 {
        font-size: 28px;
    }

    .slide img {
        width: 180px;
        height: 280px;
    }

    .popup-btn {
        font-size: 30px;
        padding: 10px 16px;
    }

    /* Reviews Section */

    /*.reviews-wrapper {*/
    /*    grid-template-columns: 1fr;*/
    /*    height: auto;*/
    /*}*/

    /*.review-column {*/
    /*    height: 520px;*/
    /*}*/

    header .container {
        display: flex;
        flex-direction: row;
        justify-content: unset;
        align-items: unset;
        gap: 20px;
    }

    .main-container {
        display: none !important;
    }

    .mobile-container {
        display: flex !important;
        flex-direction: column !important;
    }

    .mobile-container .top-bar {
        display: flex;
        justify-content: space-around !important;
    }

    .middle-bar {
        display: flex !important;
        justify-content: center !important;
        align-items: center;
        gap: 16px;
    }

    .middle-bar button {
        font-size: 15px;
        padding: 0px 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 45px;
    }

    .hero-section {
        padding: 200px 0px 70px 0px;
    }

    .hero-section .container,
    .process-container,
    .exclusive-section .container,
    .industry-section .container,
    .get-in-touch-section .container,
    footer .info-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-section .hero-content,
    .hero-section .hero-form {
        width: 100%;
    }

    .hero-content h1 {
        text-align: center;
    }

    .hero-content:first-child h3,
    .process-box h3 {
        text-align: center;
    }

    .hero-content:first-child p,
    .before-after-section p,
    .pricing-section p,
    .process-section p,
    .exclusive-content p {
        text-align: center;
    }

    .hero-content .button-group {
        justify-content: center;
        gap: 10px;
        flex-direction: column;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .package-card,
    .service-section .service-box {
        width: 48%;
    }

    .process-box {
        width: 47%;
    }

    .exclusive-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .exclusive-content {
        justify-content: center;
        align-items: center;
    }

    .exclusive-content h2 {
        line-height: 1.2;
        text-align: center;
    }

    .exclusive-image,
    .exclusive-content,
    .industry-content,
    .industry-image,
    .git-content,
    .git-form,
    footer .info-container .info-box {
        width: 100%;
    }

    .industry-image {
        order: -1;
        ;
    }

    .faq-section {
        padding: 0px 50px;
    }

    .get-in-touch-section {
        padding: 70px 0px 30px 0px;
    }

    .git-trust-badges img {
        width: 170px;
    }
    
    header .middle-bar a, header .middle-bar button {
        font-size: 14px;
        padding: 10px 12px;
        border-radius: 2px;
        height: auto;
        line-height: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    header .middle-bar a img, header .middle-bar button img {
        height: 18px;
        width: 18px;
        margin-right: 5px;
        
    }
    
    .hero-section .hero-form form {
        width: 100%;
    }
    
    .exclusive-image img {
        width: 320px;
        height: 450px;
    }
    
    .slider-card {
        width: 290px;
        padding: 18px 16px;
      }
      .slider-track {
        gap: 20px;
        animation-duration: 35s;
      }
      .reviewer h4 {
        font-size: 0.9rem;
      }
      .stars {
        font-size: 0.8rem;
      }
      
      .reviews-section .slider-card {
        height: unset !important;
    }

}

@media (max-width: 500px) {

    header .cta a {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 15px;
    }

    .container {
        padding: 0px 20px;
    }

    .hero-content h1 {
        font-size: 21px;
        line-height: 1.2;
    }

    .hero-content h3 {
        line-height: 1.2em;
        font-weight: 500;
        font-size: 20px;
    }

    .service-section h2,
    .before-after-section h2,
    .portfolio-section h2,
    .process-section h2,
    .reviews-section h2,
    .industry-section h2,
    .pricing-section h2 {
        font-size: 20px;
        text-align: center;
    }

    .portfolio-section h2 span, .reviews-section span {
        font-size: 18px;
    }

    .package-card,
    .service-section .service-box,
    .process-box {
        width: 100%;
    }

    .before-after-section p {
        font-size: 16px;
    }

    .gallery-wrap {
        padding: 0px;
    }

    .image-scroll {
        /*height: 350px;*/
        margin-top: 20px;
    }

    .portfolio-section h2 {
        padding: 0px 20px;
    }

    .package-type {
        font-size: 18px;
    }

    .package-name {
        font-size: 20px;
        line-height: 1.2;
    }

    .process-box {
        margin-top: 0px;
    }

    .exclusive-content h2 {
        font-size: 27px;
    }

    .exclusive-content h2 span {
        font-size: 22px;
    }

    .industry-section {
        padding: 70px 0px 30px 0px;
    }

    .faq-section {
        padding: 0px 20px;
    }

    .faq-box {
        padding: 20px;
    }

    .git-trust-badges img {
        width: 110px;
    }

    .git-form .half-width {
        width: 100%;
    }

    .git-content button {
        font-size: 16px;
    }
    
    .hero-content .button-group button, .hero-content .button-group a {
        padding: 0px 15px;
        font-size: 15px;
        height: 45px;
        width: 100%;
        border-radius: 5px;
    }
    
    .hero-content .button-group button img, .hero-content .button-group a img {
        height: 15px;
        width: 15px;
        margin-left: 7px;
    }
    
    .service-section .button-group button, .service-section .button-group a, .industry-content .button-group button, .industry-content .button-group a, .pricing-section .button-group button, .pricing-section .button-group a {
        padding: 0px 15px;
        font-size: 15px;
        height: 45px;
    }
    
    /*.service-section .button-group, .comparison-section, .packages-grid, .process-container, .reviews-wrapper {*/
    /*    margin-top: 30px;*/
    /*}*/
    
    .service-section .button-group, .comparison-section, .packages-grid, .process-container {
        margin-top: 30px;
    }
    
    .pricing-section .container, .process-section .container {
        gap: 20px;
    }
    
    .reviewer span {
        font-size: 12px !important;
    }
    
    .service-section .service-container {
        gap: 40px 20px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /*.nav-btn {*/
    /*    bottom: 0%;*/
    /*    transform: translateY(360%);*/
    /*}*/
    
    /*.nav-prev {*/
    /*    left: 100px;*/
    /*}*/

    /*.nav-next {*/
    /*    right: 100px;*/
    /*}*/
    
    .exclusive-content button {
        font-size: 16px;
        padding: 10px 25px;
    }
    
    .faq-header h2 {
        font-size: 25px;
    }
    
    .faq-question {
        font-weight: 500;
    }
    
    .faq-icon {
        width: 25px;
        height: 25px;
        min-width: 25px;
    }
    
    .hero-form form h3 {
        font-size: 24px;
    }
    
    .exclusive-section .container {
        gap: 40px;
    }
    
    .image-box h3 {
        font-size: 20px;
    }
    
    .before-after-section {
        padding: 70px 20px;
    }
    
    .hero-content > p:first-of-type {
        font-size: 16px;
        font-weight: 400;
    }
    
    .service-section p {
        font-size: 16px;
    }
    
    .exclusive-content p {
        font-size: 20px;
    }
    
    .process-section {
        padding: 50px 0px 70px 0px;
    }
    
    .pricing-section button {
        font-size: 16px;
    }
    
    .git-content p {
        font-size: 16px;
    }
    
    .nav-btn {
        position: relative;
        top: unset;
        transform: unset;
    }
    
    .navigations {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    
    .counter {
        margin-top: 0px;
    }
    
    .slide-image {
        height: 200px;
    }
    
    .slider-card {
        width: 270px;
      }
      .slider-track {
        gap: 18px;
        padding: 12px 8px;
      }
      
     .review-top {
        flex-direction: column;
        justify-content: center;
    }
    
    .slider-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 770px) {
    .mobile-container {
        display: none !important;
    }
}