/* hero-section */

.hero-section {
    position: relative;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 12% 20%, rgba(44, 98, 213, 0.24), transparent 30%), radial-gradient(circle at 88% 30%, rgba(169, 76, 242, 0.19), transparent 28%), radial-gradient(circle at 70% 90%, rgba(36, 215, 234, 0.12), transparent 25%), linear-gradient(135deg, var(--navy) 0%, #0e1726 55%, #080d15 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 80px;
    left: -130px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(450px, 0.9fr);
    align-items: center;
    gap: 70px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 700px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 9px 16px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(36, 215, 234, 0.08);
    border: 1px solid rgba(36, 215, 234, 0.2);
    border-radius: 999px;
}

.hero-label i {
    font-size: 13px;
}

.hero-content h1 {
    max-width: 750px;
    margin: 0 0 25px;
    color: var(--text);
    font-size: 55px;
    font-weight: 700;
    line-height: 1.09;
    letter-spacing: 1px;
}

.hero-content h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, var(--cyan) 0%, var(--green) 45%, var(--purple) 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-content p {
    max-width: 650px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 450;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-actions .btn {
    min-width: 190px;
}

.hero-actions .btn i {
    transition: transform 0.25s ease;
}

.hero-actions .btn:hover i {
    transform: translateX(5px);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    padding: 28px;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(36, 215, 234, 0.25), transparent 35%), radial-gradient(circle at 85% 80%, rgba(169, 76, 242, 0.27), transparent 37%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 38px;
    transform: rotate(3deg);
}

.hero-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    /* aspect-ratio: 1 / 1; */
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
        gap: 45px;
        padding-right: 25px;
        padding-left: 25px;
    }

    .hero-content h1 {
        font-size: clamp(40px, 5vw, 62px);
    }
}

@media (max-width: 950px) {
    .hero-section {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-top: 70px;
        padding-bottom: 80px;
        text-align: center;
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .hero-content h1,
    .hero-content p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .hero-container {
        gap: 45px;
        padding: 55px 20px 65px;
    }

    .hero-label {
        margin-bottom: 19px;
        padding: 8px 13px;
        font-size: 11px;
    }

    .hero-content h1 {
        margin-bottom: 20px;
        font-size: 40px;
        line-height: 1.12;
        letter-spacing: -1.8px;
    }

    .hero-content p {
        margin-bottom: 28px;
        font-size: 14px;
        line-height: 1.75;
    }

    .hero-image-wrapper {
        padding: 16px;
    }

    .hero-image-bg {
        border-radius: 16px;
    }

    .hero-image {
        padding: 10px;
        border-radius: 23px;
    }

    .floating-icon {
        flex-basis: 35px;
        width: 35px;
        height: 35px;
        font-size: 14px;
        border-radius: 10px;
    }

    .hero-floating-card strong {
        font-size: 11px;
    }

    .hero-floating-card span {
        font-size: 9px;
    }
}

@media (max-width: 430px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

.service-highlights {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: #ffffff;
}

.service-highlights .container {
    padding-right: 20px;
    padding-left: 20px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.highlight-card {
    position: relative;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 25px 20px;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(11, 16, 26, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(36, 215, 234, 0.5);
    box-shadow: 0 20px 45px rgba(11, 16, 26, 0.13);
}

.highlight-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 20px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(44, 98, 213, 0.2);
}

.highlight-content h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight-content p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .service-highlights {
        padding: 30px 0;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .highlight-card {
        min-height: 135px;
        border-radius: 20px;
    }

    .highlight-content h3 {
        font-size: 24px;
    }
}


/* About section */

.about-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: radial-gradient(circle at 5% 15%, rgba(44, 98, 213, 0.08), transparent 25%), radial-gradient(circle at 95% 85%, rgba(169, 76, 242, 0.07), transparent 25%), #ffffff;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -130px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(44, 98, 213, 0.08);
    border-radius: 50%;
}

.about-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr);
    align-items: center;
    gap: 85px;
    padding-right: 20px;
    padding-left: 20px;
}

.about-content {
    max-width: 670px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    margin-right: 10px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    border-radius: 20px;
}

.about-content h2 {
    margin: 0 0 24px;
    color: var(--navy);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -1.8px;
}

.about-content h2 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
}

.about-description {
    max-width: 650px;
    margin: 0 0 16px;
    color: #667085;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.85;
}

.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 750;
    transition: color 0.25s ease, gap 0.25s ease;
}

.about-text-link:hover {
    gap: 12px;
    color: var(--blue);
}

.about-content a {
    margin-top: 20px;
}

.about-cards {
    position: relative;
    padding: 22px;
    background: linear-gradient(145deg, rgba(44, 98, 213, 0.06), rgba(169, 76, 242, 0.035));
    border: 1px solid #e7eaf0;
    border-radius: 32px;
}

.about-card {
    position: relative;
    padding: 27px;
    background: #ffffff;
    border: 1px solid #e7eaf0;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(11, 16, 26, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(44, 98, 213, 0.28);
    box-shadow: 0 24px 55px rgba(11, 16, 26, 0.11);
}

.about-card-large {
    display: grid;
    grid-template-columns: 68px 1fr;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 18px;
}

.about-card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 21px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 17px;
    box-shadow: 0 12px 26px rgba(44, 98, 213, 0.22);
}

.about-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 19px;
    font-weight: 750;
    line-height: 1.3;
}

.about-card p {
    margin: 0;
    color: #738092;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
}

.about-small-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-small-grid .about-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    font-size: 18px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    color: #07131c;
}

.about-small-grid .about-card:nth-child(2) .about-card-icon {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    overflow: hidden;
    background: var(--navy);
    border-radius: 20px;
}

.about-stat {
    position: relative;
    padding: 22px 14px;
    text-align: center;
}

.about-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.about-stat strong {
    display: block;
    margin-bottom: 6px;
    color: transparent;
    font-size: 25px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    background-clip: text;
    -webkit-background-clip: text;
}

.about-stat span {
    display: block;
    color: #aab6c5;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 1050px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        max-width: 760px;
    }

    .about-cards {
        max-width: 700px;
    }
}

@media (max-width: 650px) {
    .about-section {
        padding: 70px 0;
    }

    .about-container {
        gap: 45px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .about-content h2 {
        font-size: 37px;
        letter-spacing: -1.3px;
    }

    .about-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-cards {
        padding: 14px;
        border-radius: 24px;
    }

    .about-card-large {
        grid-template-columns: 1fr;
    }

    .about-small-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 23px;
        border-radius: 18px;
    }
}

@media (max-width: 430px) {
    .about-content h2 {
        font-size: 28px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stat:not(:last-child)::after {
        top: auto;
        right: 15%;
        bottom: 0;
        left: 15%;
        width: 70%;
        height: 1px;
    }
}


/*  PRICING*/

.plans-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: radial-gradient(circle at 10% 15%, rgba(36, 215, 234, 0.12), transparent 27%), radial-gradient(circle at 90% 85%, rgba(169, 76, 242, 0.13), transparent 28%), linear-gradient(135deg, #0b101a 0%, #101827 50%, #121126 100%);
}

.plans-section::before {
    content: "";
    position: absolute;
    top: 100px;
    left: -160px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.plans-section::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -180px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.plans-section .container {
    position: relative;
    z-index: 2;
    padding-right: 20px;
    padding-left: 20px;
}

.plans-heading {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

.plans-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    padding: 9px 16px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(36, 215, 234, 0.08);
    border: 1px solid rgba(36, 215, 234, 0.2);
    border-radius: 999px;
}

.plans-heading h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -1.7px;
}

.plans-heading h2 span {
    color: transparent;
    background: linear-gradient(90deg, var(--cyan), var(--green), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
}

.plans-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 32px 28px 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-9px);
    border-color: rgba(36, 215, 234, 0.3);
    box-shadow: 0 32px 75px rgba(0, 0, 0, 0.3);
}

.plan-accent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
}

.plan-starter .plan-accent {
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.plan-featured .plan-accent {
    background: linear-gradient(90deg, var(--cyan), var(--green));
}

.plan-premium .plan-accent {
    background: linear-gradient(90deg, var(--blue), var(--purple));
}

.plan-featured {
    transform: translateY(-16px);
    border-color: rgba(158, 243, 149, 0.3);
    background: radial-gradient(circle at 90% 10%, rgba(158, 243, 149, 0.09), transparent 30%), linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.plan-featured:hover {
    transform: translateY(-25px);
    border-color: rgba(158, 243, 149, 0.5);
}

.popular-label {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    color: #07131c;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    border-radius: 999px;
}

.plan-header {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.plan-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #06111a;
    font-size: 20px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    border-radius: 17px;
    box-shadow: 0 12px 25px rgba(36, 215, 234, 0.16);
}

.plan-premium .plan-icon {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.plan-type {
    display: block;
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.plan-header h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    margin-bottom: 17px;
}

.plan-price .currency {
    margin-top: 6px;
    color: var(--green);
    font-size: 20px;
    font-weight: 700;
}

.plan-price strong {
    color: #ffffff;
    font-size: 44px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: -1.5px;
}

.plan-header p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.plan-features {
    flex-grow: 1;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.plan-features li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 27px;
    color: #d5dee6;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
}

.plan-features li::before {
    content: "\f00c";
    position: absolute;
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: #07131c;
    font-family: "Font Awesome 6 Free";
    font-size: 8px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    border-radius: 50%;
}

.plan-bottom {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.plan-delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
}

.plan-delivery i {
    color: var(--cyan);
}

.plan-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.plan-button:hover {
    color: #06111a;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    transform: translateY(-2px);
}

.plan-button i {
    transition: transform 0.25s ease;
}

.plan-button:hover i {
    transform: translateX(4px);
}

.plan-featured .plan-button {
    color: #06111a;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    border-color: transparent;
}

.plans-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    max-width: 820px;
    margin: 48px auto 0;
    padding: 18px 24px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
}

.plans-note>i {
    color: var(--cyan);
    font-size: 17px;
}

.plans-note p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
}

.plans-note a {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    font-size: 11px;
    font-weight: 750;
}

.plans-note a i {
    margin-top: 3px;
}

@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-featured {
        transform: none;
    }

    .plan-featured:hover {
        transform: translateY(-9px);
    }

    .plan-premium {
        grid-column: 1 / -1;
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 720px) {
    .plans-section {
        padding: 75px 0;
    }

    .plans-heading {
        margin-bottom: 42px;
    }

    .plans-heading h2 {
        font-size: 37px;
        letter-spacing: -1.2px;
    }

    .plans-heading p {
        font-size: 14px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-premium {
        grid-column: auto;
        max-width: none;
    }

    .plan-card {
        padding: 28px 22px 24px;
        border-radius: 22px;
    }

    .plans-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 430px) {
    .plans-heading h2 {
        font-size: 28px;
    }

    .plan-header h3 {
        font-size: 23px;
    }

    .plan-price strong {
        font-size: 39px;
    }
}


/* PORTFOLIO SLIDER SECTION */

.portfolio-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: radial-gradient(circle at 5% 20%, rgba(44, 98, 213, 0.08), transparent 27%), radial-gradient(circle at 95% 80%, rgba(169, 76, 242, 0.07), transparent 28%), #ffffff;
}

.portfolio-section .container {
    position: relative;
    z-index: 2;
    padding-right: 20px;
    padding-left: 20px;
}

.portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.portfolio-heading {
    max-width: 750px;
}

.portfolio-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 9px 15px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    background: rgba(44, 98, 213, 0.07);
    border: 1px solid rgba(44, 98, 213, 0.14);
    border-radius: 999px;
}

.portfolio-heading h2 {
    margin: 0 0 17px;
    color: var(--navy);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.8px;
}

.portfolio-heading h2 span {
    color: transparent;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
}

.portfolio-heading p {
    max-width: 680px;
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}

.portfolio-controls {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.portfolio-arrow {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 15px;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #dfe5ec;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(11, 16, 26, 0.08);
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.portfolio-arrow:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-color: transparent;
    transform: translateY(-3px);
}

.portfolio-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.4;
    transform: none;
}

.portfolio-slider {
    width: 100%;
    overflow: hidden;
}

.portfolio-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.portfolio-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.portfolio-card {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(11, 16, 26, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(44, 98, 213, 0.25);
    box-shadow: 0 26px 60px rgba(11, 16, 26, 0.14);
}

.portfolio-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1.48 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
    background: #f3f5f8;
}

.portfolio-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 17px;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-media img {
    transform: scale(1.025);
}

.portfolio-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 22px 23px;
}

.portfolio-card-content span {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.portfolio-card-content h3 {
    margin: 0;
    color: var(--navy);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.portfolio-card-content>a {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 14px;
    background: #f1f4f8;
    border-radius: 13px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.portfolio-card-content>a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    transform: rotate(5deg);
}

.portfolio-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 40px;
}

.portfolio-dots {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    background: #cdd4df;
    border: 0;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
}

.portfolio-dot.active {
    width: 27px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
}

@media (max-width: 1050px) {
    .portfolio-slide {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 700px) {
    .portfolio-section {
        padding: 75px 0;
    }

    .portfolio-header {
        align-items: flex-start;
        margin-bottom: 35px;
    }

    .portfolio-heading h2 {
        font-size: 37px;
        letter-spacing: -1.2px;
    }

    .portfolio-heading p {
        font-size: 14px;
    }

    .portfolio-controls {
        display: none;
    }

    .portfolio-slide {
        flex-basis: 100%;
    }

    .portfolio-card {
        border-radius: 20px;
    }

    .portfolio-card-media {
        padding: 7px;
    }

    .portfolio-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 430px) {
    .portfolio-heading h2 {
        font-size: 28px;
    }

    .portfolio-card-content {
        padding: 18px;
    }

    .portfolio-card-content h3 {
        font-size: 18px;
    }

    .portfolio-bottom .btn {
        width: 100%;
    }
}


/* =========================================
   CREATIVE BENTO SERVICES SECTION
========================================= */

.services-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: radial-gradient(circle at 7% 15%, rgba(44, 98, 213, 0.09), transparent 27%), radial-gradient(circle at 94% 85%, rgba(169, 76, 242, 0.09), transparent 29%), #f7f9fd;
}

.services-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -170px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(44, 98, 213, 0.08);
    border-radius: 50%;
}

.services-section::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -200px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(169, 76, 242, 0.07);
    border-radius: 50%;
}

.services-section .container {
    position: relative;
    z-index: 2;
    padding-right: 20px;
    padding-left: 20px;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.services-heading {
    max-width: 790px;
}

.services-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    padding: 9px 15px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    background: rgba(44, 98, 213, 0.07);
    border: 1px solid rgba(44, 98, 213, 0.14);
    border-radius: 999px;
}

.services-heading h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 40px;
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -2px;
}

.services-heading h2 span {
    color: transparent;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
}

.services-heading p {
    max-width: 700px;
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}

.services-view-btn {
    flex-shrink: 0;
}


/* =========================================
   BENTO GRID
========================================= */

.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 245px;
    gap: 18px;
}


/* =========================================
   COMMON CARD
========================================= */

.service-bento-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 23px;
    color: var(--navy);
    background: linear-gradient(145deg, #ffffff, #f4f7fb);
    border: 1px solid #e1e7ef;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(11, 16, 26, 0.075);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(44, 98, 213, 0.28);
    box-shadow: 0 28px 65px rgba(11, 16, 26, 0.15);
}

.service-bento-card:hover .service-card-arrow {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-color: transparent;
    transform: rotate(6deg);
}

.service-icon {
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 19px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(44, 98, 213, 0.2);
}

.service-category {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.service-card-content {
    position: relative;
    z-index: 3;
}

.service-card-content h3 {
    margin: 0 0 11px;
    color: inherit;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.3;
}

.service-card-content h3 strong {
    display: block;
    color: inherit;
    font-weight: 750;
}

.service-card-content p {
    margin: 0;
    color: #6d7989;
    font-size: 12px;
    line-height: 1.7;
}

.service-bento-main {
    grid-column: span 2;
    grid-row: span 2;
    padding: 30px;
    color: #ffffff;
    background: radial-gradient(circle at 15% 10%, rgba(36, 215, 234, 0.18), transparent 30%), radial-gradient(circle at 90% 90%, rgba(169, 76, 242, 0.25), transparent 34%), linear-gradient(145deg, #101a2a, #0b101a);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card-glow {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(36, 215, 234, 0.1);
    border-radius: 50%;
    filter: blur(5px);
}

.service-bento-main .service-number,
.service-social .service-number {
    color: rgba(255, 255, 255, 0.35);
}

.service-bento-main .service-card-arrow,
.service-social .service-card-arrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-main-visual {
    position: relative;
    width: 180px;
    height: 180px;
    display: grid;
    place-items: center;
    margin: 32px auto 26px;
}

.service-main-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.025), inset 0 0 0 38px rgba(36, 215, 234, 0.035);
    animation: serviceRingRotate 12s linear infinite;
}

.service-main-ring::before,
.service-main-ring::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(36, 215, 234, 0.75);
}

.service-main-ring::before {
    top: 17px;
    left: 25px;
}

.service-main-ring::after {
    right: 20px;
    bottom: 28px;
    background: var(--green);
}

@keyframes serviceRingRotate {
    to {
        transform: rotate(360deg);
    }
}

.service-main-icon {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    color: #07131c;
    font-size: 34px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    border-radius: 29px;
    box-shadow: 0 20px 45px rgba(36, 215, 234, 0.25);
    transform: rotate(-5deg);
}

.service-bento-main .service-category,
.service-social .service-category {
    color: var(--cyan);
}

.service-bento-main .service-card-content h3 {
    font-size: 30px;
}

.service-bento-main .service-card-content h3 strong {
    color: transparent;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    background-clip: text;
    -webkit-background-clip: text;
}

.service-bento-main .service-card-content p {
    max-width: 580px;
    color: var(--muted);
    font-size: 13px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 19px;
}

.service-tags span {
    padding: 7px 10px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(36, 215, 234, 0.08);
    border: 1px solid rgba(36, 215, 234, 0.15);
    border-radius: 999px;
}


/* =========================================
   INDIVIDUAL CARD POSITIONS
========================================= */

.service-packaging,
.service-banner {
    grid-column: span 1;
}

.service-brochure {
    grid-column: span 2;
}

.service-menu,
.service-flyer {
    grid-column: span 1;
}

.service-brand-kit {
    grid-column: span 2;
}

.service-social {
    grid-column: span 2;
    color: #ffffff;
    background: radial-gradient(circle at 90% 10%, rgba(169, 76, 242, 0.22), transparent 34%), linear-gradient(145deg, #17112b, #0b101a);
    border-color: rgba(255, 255, 255, 0.1);
}


/* Brochure */

.service-wide-content {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 23px;
    margin-top: 23px;
}

.service-wide-content .service-icon {
    margin: 0;
}

.service-card-decoration {
    position: absolute;
    right: 20px;
    bottom: 18px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    opacity: 0.18;
}

.service-card-decoration span {
    width: 7px;
    background: var(--blue);
    border-radius: 10px;
}

.service-card-decoration span:nth-child(1) {
    height: 25px;
}

.service-card-decoration span:nth-child(2) {
    height: 42px;
}

.service-card-decoration span:nth-child(3) {
    height: 60px;
}


/* Brand Kit */

.service-brand-layout {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.service-brand-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 26px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 22px;
}

.service-color-palette {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-color-palette span {
    width: 27px;
    height: 27px;
    border-radius: 8px;
}

.service-color-palette span:nth-child(1) {
    background: var(--blue);
}

.service-color-palette span:nth-child(2) {
    background: var(--purple);
}

.service-color-palette span:nth-child(3) {
    background: var(--cyan);
}

.service-color-palette span:nth-child(4) {
    background: var(--green);
}


/* Social media */

.service-social-content {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;
    margin-top: 25px;
}

.service-social-content .service-icon {
    margin: 0;
    color: #07131c;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.service-social .service-card-content h3 strong {
    color: var(--green);
}

.service-social .service-card-content p {
    color: var(--muted);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .services-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
    }

    .service-bento-card {
        min-height: 260px;
    }

    .service-bento-main {
        grid-column: span 2;
        grid-row: auto;
        min-height: 580px;
    }

    .service-brochure,
    .service-brand-kit,
    .service-social {
        grid-column: span 2;
    }
}

@media (max-width: 850px) {
    .services-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .services-section {
        padding: 75px 0;
    }

    .services-section .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .services-header {
        gap: 22px;
        margin-bottom: 36px;
    }

    .services-heading h2 {
        font-size: 28px;
        letter-spacing: -1.2px;
    }

    .services-heading p {
        font-size: 13px;
        line-height: 1.75;
    }

    .services-view-btn {
        width: 100%;
    }

    .services-bento-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-bento-card,
    .service-bento-main,
    .service-brochure,
    .service-brand-kit,
    .service-social {
        grid-column: auto;
        min-height: auto;
    }

    .service-bento-card {
        padding: 22px 20px;
        border-radius: 20px;
    }

    .service-bento-main {
        min-height: 520px;
        padding: 25px 21px;
    }

    .service-main-visual {
        width: 150px;
        height: 150px;
    }

    .service-main-icon {
        width: 82px;
        height: 82px;
        font-size: 29px;
    }

    .service-bento-main .service-card-content h3 {
        font-size: 26px;
    }

    .service-wide-content,
    .service-social-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-brand-layout {
        grid-template-columns: auto 1fr;
    }

    .service-color-palette {
        grid-column: 1 / -1;
        flex-direction: row;
    }
}


/* TESTIMONIALS SECTION*/

.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: radial-gradient(circle at 8% 15%, rgba(36, 215, 234, 0.11), transparent 26%), radial-gradient(circle at 92% 85%, rgba(169, 76, 242, 0.12), transparent 27%), linear-gradient(135deg, #0b101a 0%, #101827 52%, #151229 100%);
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -150px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
}

.testimonials-section::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
    padding-right: 20px;
    padding-left: 20px;
}

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.testimonials-heading {
    max-width: 760px;
}

.testimonials-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    padding: 9px 15px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    background: rgba(36, 215, 234, 0.08);
    border: 1px solid rgba(36, 215, 234, 0.18);
    border-radius: 999px;
}

.testimonials-label i {
    color: var(--green);
}

.testimonials-heading h2 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.8px;
}

.testimonials-heading h2 span {
    color: transparent;
    background: linear-gradient(90deg, var(--cyan), var(--green), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
}

.testimonials-heading p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.testimonials-rating {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 21px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    backdrop-filter: blur(14px);
}

.rating-score {
    color: #ffffff;
    font-size: 37px;
    font-weight: 750;
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
    color: #ffc94a;
    font-size: 12px;
}

.testimonials-rating span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    padding: 10px 0;
    gap: 22px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: 0;
}

.testimonial-card {
    height: 100%;
    min-height: 345px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: radial-gradient(circle at 90% 5%, rgba(36, 215, 234, 0.08), transparent 28%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(36, 215, 234, 0.3);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 27px;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    color: #ffc94a;
    font-size: 13px;
}

.testimonial-quote {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--cyan);
    font-size: 17px;
    background: rgba(36, 215, 234, 0.08);
    border: 1px solid rgba(36, 215, 234, 0.14);
    border-radius: 14px;
}

.testimonial-review {
    flex-grow: 1;
    margin: 0 0 30px;
    color: #d8e0e9;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.9;
}

.testimonial-client {
    display: grid;
    grid-template-columns: 50px 1fr 35px;
    align-items: center;
    gap: 13px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.client-avatar {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #07131c;
    font-size: 13px;
    font-weight: 850;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    border-radius: 15px;
}

.client-details h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.client-details span {
    display: block;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
}

.google-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.testimonials-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 38px;
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-arrow {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.testimonial-arrow:hover {
    color: #06111a;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    transform: translateY(-3px);
}

.testimonial-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.35;
    transform: none;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.25);
    border: 0;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
}

.testimonial-dot.active {
    width: 27px;
    background: linear-gradient(90deg, var(--cyan), var(--green));
}

.testimonials-review-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-size: 12px;
    font-weight: 750;
    transition: color 0.25s ease, gap 0.25s ease;
}

.testimonials-review-link:hover {
    gap: 13px;
    color: var(--cyan);
}

@media (max-width: 1050px) {
    .testimonial-slide {
        flex-basis: calc((100% - 22px) / 2);
    }
}

@media (max-width: 750px) {
    .testimonials-section {
        padding: 75px 0;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 36px;
    }

    .testimonials-heading h2 {
        font-size: 37px;
        letter-spacing: -1.2px;
    }

    .testimonials-heading p {
        font-size: 14px;
    }

    .testimonial-slide {
        flex-basis: 100%;
    }

    .testimonials-bottom {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 430px) {
    .testimonials-heading h2 {
        font-size: 28px;
    }

    .testimonials-rating {
        width: 100%;
    }

    .testimonial-card {
        min-height: 330px;
        padding: 23px 20px;
        border-radius: 20px;
    }

    .testimonial-review {
        font-size: 13px;
    }
}


/*   OUR CLIENTS SECTION*/

.clients-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: radial-gradient(circle at 5% 20%, rgba(44, 98, 213, 0.08), transparent 25%), radial-gradient(circle at 95% 80%, rgba(169, 76, 242, 0.07), transparent 27%), #ffffff;
}

.clients-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(44, 98, 213, 0.07);
    border-radius: 50%;
}

.clients-section .container {
    position: relative;
    z-index: 2;
    padding-right: 20px;
    padding-left: 20px;
}

.clients-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.clients-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 9px 15px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    background: rgba(44, 98, 213, 0.07);
    border: 1px solid rgba(44, 98, 213, 0.14);
    border-radius: 999px;
}

.clients-heading h2 {
    margin: 0 0 17px;
    color: var(--navy);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.8px;
}

.clients-heading h2 span {
    color: transparent;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
}

.clients-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}

.clients-showcase {
    position: relative;
    display: grid;
    gap: 20px;
}

.clients-showcase::before,
.clients-showcase::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 5;
    width: 110px;
    pointer-events: none;
}

.clients-showcase::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-showcase::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.clients-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.clients-group {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.clients-track-left {
    animation: clientsMoveLeft 30s linear infinite;
}

.clients-track-right {
    animation: clientsMoveRight 32s linear infinite;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

@keyframes clientsMoveLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes clientsMoveRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.client-logo {
    flex: 0 0 230px;
    width: 230px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 21px;
    box-shadow: 0 14px 34px rgba(11, 16, 26, 0.07);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-6px);
    border-color: rgba(44, 98, 213, 0.28);
    box-shadow: 0 22px 45px rgba(11, 16, 26, 0.13);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.05);
}

.clients-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 25px;
    margin-top: 48px;
    padding: 24px 27px;
    background: radial-gradient(circle at 10% 50%, rgba(36, 215, 234, 0.12), transparent 25%), linear-gradient(135deg, var(--navy), var(--navy-2));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(11, 16, 26, 0.14);
}

.clients-bottom-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.clients-bottom-item>i {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #06111a;
    font-size: 17px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    border-radius: 14px;
}

.clients-bottom-item strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.clients-bottom-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 950px) {
    .clients-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clients-bottom .btn {
        grid-column: 1 / -1;
        width: fit-content;
    }
}

@media (max-width: 700px) {
    .clients-section {
        padding: 75px 0;
    }

    .clients-heading {
        margin-bottom: 38px;
    }

    .clients-heading h2 {
        font-size: 37px;
        letter-spacing: -1.2px;
    }

    .clients-heading p {
        font-size: 14px;
    }

    .clients-showcase::before,
    .clients-showcase::after {
        width: 45px;
    }

    .client-logo {
        flex-basis: 170px;
        width: 170px;
        height: 150px;
        padding: 20px;
        border-radius: 18px;
    }

    .clients-bottom {
        grid-template-columns: 1fr;
        padding: 22px 20px;
    }

    .clients-bottom .btn {
        grid-column: auto;
        width: 100%;
    }
}

@media (max-width: 430px) {
    .clients-heading h2 {
        font-size: 28px;
    }

    .client-logo {
        flex-basis: 159px;
        width: 159px;
        height: 150px;
        padding: 17px;
    }

    .clients-group {
        gap: 14px;
        padding-right: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation-play-state: paused;
    }
}


/*  CONTACT SECTION*/

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: radial-gradient(circle at 7% 15%, rgba(36, 215, 234, 0.13), transparent 28%), radial-gradient(circle at 93% 85%, rgba(169, 76, 242, 0.14), transparent 30%), linear-gradient(135deg, #0b101a 0%, #101827 50%, #151229 100%);
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.contact-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -200px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1fr);
    align-items: center;
    gap: 80px;
    padding-right: 20px;
    padding-left: 20px;
}

.contact-information {
    max-width: 600px;
}

.contact-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 9px 15px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    background: rgba(36, 215, 234, 0.08);
    border: 1px solid rgba(36, 215, 234, 0.18);
    border-radius: 999px;
}

.contact-information h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.8px;
}

.contact-information h2 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, var(--cyan), var(--green), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
}

.contact-description {
    max-width: 570px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}

.contact-details {
    display: grid;
    gap: 14px;
}

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 19px;
    color: inherit;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 17px;
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

a.contact-detail-card:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(36, 215, 234, 0.25);
}

.contact-detail-icon {
    flex: 0 0 49px;
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    color: #06111a;
    font-size: 17px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    border-radius: 14px;
}

.contact-detail-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.contact-detail-card strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.contact-support {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-support-icon {
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 17px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 14px;
}

.contact-support strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.contact-support span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.contact-form-wrapper {
    padding: 36px;
    background: radial-gradient(circle at 95% 5%, rgba(36, 215, 234, 0.08), transparent 28%), linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.contact-form-heading {
    margin-bottom: 28px;
}

.contact-form-heading>span {
    display: block;
    margin-bottom: 7px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.contact-form-heading h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.contact-form-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 19px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    min-width: 0;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #dfe6ee;
    font-size: 11px;
    font-weight: 650;
}

.form-group label span {
    color: var(--cyan);
}

.input-wrapper {
    position: relative;
}

.input-wrapper>i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    color: #8390a0;
    font-size: 13px;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    outline: none;
    background: rgba(6, 12, 21, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.input-wrapper input,
.input-wrapper select {
    height: 51px;
    padding: 0 16px 0 44px;
}

.input-wrapper textarea {
    min-height: 135px;
    padding: 16px 16px 16px 44px;
    line-height: 1.65;
    resize: vertical;
}

.textarea-wrapper>i {
    top: 19px;
    transform: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #758191;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    background: rgba(6, 12, 21, 0.68);
    border-color: rgba(36, 215, 234, 0.48);
    box-shadow: 0 0 0 4px rgba(36, 215, 234, 0.07);
}

.input-wrapper:focus-within>i {
    color: var(--cyan);
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
}

.input-wrapper select option {
    color: #ffffff;
    background: #111a2a;
}

.select-wrapper::after {
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 16px;
    color: #8b97a6;
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-submit-button {
    width: 100%;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 3px;
    color: #06111a;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    border: 0;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(36, 215, 234, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(36, 215, 234, 0.27);
}

.contact-submit-button i {
    font-size: 17px;
}

.contact-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: -3px 0 0;
    color: #84909e;
    font-size: 12px;
    line-height: 1.5;
}

.contact-form-note i {
    color: var(--green);
}

@media (max-width: 1050px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-information {
        max-width: 750px;
    }

    .contact-form-wrapper {
        max-width: 760px;
        width: 100%;
    }
}

@media (max-width: 700px) {
    .contact-section {
        padding: 75px 0;
    }

    .contact-container {
        gap: 42px;
    }

    .contact-information h2 {
        font-size: 37px;
        letter-spacing: -1.2px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 27px 22px;
        border-radius: 23px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-heading h3 {
        font-size: 24px;
    }
}

@media (max-width: 430px) {
    .contact-information h2 {
        font-size: 28px;
    }

    .contact-detail-card {
        padding: 15px;
    }

    .contact-detail-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .contact-form-wrapper {
        padding: 23px 17px;
    }
}


/* SEO CONTENT SECTION*/

.home-seo-section {
    padding: 105px 0;
    color: #111827;
    background: radial-gradient(circle at 5% 15%, rgba(36, 215, 234, 0.08), transparent 24%), #ffffff;
}

.home-seo-section .container {
    padding-right: 25px;
    padding-left: 25px;
}

.home-seo-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 60px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e8edf3;
}

.home-seo-label {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-seo-heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--navy);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
}

.home-seo-heading h2 span {
    color: var(--blue);
}

.home-seo-summary p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.9;
}

.home-seo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    align-items: start;
    gap: 65px;
}

.home-seo-main h3 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 29px;
    line-height: 1.3;
}

.home-seo-main>.home-seo-content>p {
    margin: 0 0 18px;
    color: #5f6b7b;
    font-size: 15px;
    line-height: 1.9;
}

.home-seo-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 35px;
}

.home-seo-benefit {
    display: flex;
    gap: 16px;
    padding: 23px;
    background: #f8fafc;
    border: 1px solid #e6ebf1;
    border-radius: 20px;
    transition: 0.25s ease;
}

.home-seo-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 98, 213, 0.25);
    box-shadow: 0 15px 35px rgba(11, 16, 26, 0.08);
}

.home-seo-benefit>span {
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 12px;
}

.home-seo-benefit h4 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 15px;
}

.home-seo-benefit p {
    margin: 0;
    color: #697586;
    font-size: 12px;
    line-height: 1.65;
}

.extra-content {
    display: none;
    padding-top: 35px;
}

.extra-content.open {
    display: block;
    animation: seoContentOpen 0.4s ease;
}

@keyframes seoContentOpen {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-seo-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 12px 20px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid rgba(44, 98, 213, 0.24);
    border-radius: 999px;
    transition: 0.25s ease;
}

.home-seo-toggle:hover {
    color: #ffffff;
    background: var(--blue);
}

.home-seo-toggle i {
    transition: transform 0.3s ease;
}

.home-seo-toggle.open i {
    transform: rotate(180deg);
}

.home-seo-sidebar {
    display: grid;
    gap: 22px;
}

.home-seo-services-card {
    padding: 31px;
    background: var(--navy);
    border-radius: 26px;
    box-shadow: 0 24px 55px rgba(11, 16, 26, 0.18);
}

.home-seo-card-label {
    display: block;
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-seo-services-card h3 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 24px;
}

.home-seo-services-card ul {
    display: grid;
    gap: 4px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.home-seo-services-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.home-seo-services-card li i {
    color: var(--green);
    font-size: 11px;
}

.home-seo-services-card li a {
    color: #d8e0ea;
    font-size: 13px;
    transition: 0.2s ease;
}

.home-seo-services-card li a:hover {
    color: var(--cyan);
}

.home-seo-service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 750;
}

.home-seo-location-card {
    display: flex;
    gap: 17px;
    padding: 25px;
    background: #f7f9fc;
    border: 1px solid #e5eaf0;
    border-radius: 22px;
}

.home-seo-location-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 15px;
}

.home-seo-location-card span {
    color: #7a8493;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-seo-location-card h3 {
    margin: 4px 0 9px;
    color: var(--navy);
    font-size: 19px;
}

.home-seo-location-card p {
    margin: 0 0 12px;
    color: #687486;
    font-size: 11px;
    line-height: 1.65;
}

.home-seo-location-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 750;
}

@media (max-width: 1050px) {
    .project-cta-container {
        grid-template-columns: 1fr 380px;
        gap: 45px;
    }

    .home-seo-grid {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 40px;
    }
}

@media (max-width: 850px) {

    .project-cta-container,
    .home-seo-intro,
    .home-seo-grid {
        grid-template-columns: 1fr;
    }

    .project-help-card {
        max-width: 620px;
    }

    .home-seo-intro {
        align-items: start;
        gap: 25px;
    }

    .home-seo-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {

    .project-cta-section,
    .home-seo-section {
        padding: 75px 0;
    }

    .project-cta-container,
    .home-seo-section .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .project-cta-content h2 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .project-cta-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-help-card {
        padding: 27px 22px;
        border-radius: 23px;
    }

    .home-seo-heading h2 {
        font-size: 37px;
        letter-spacing: -1.4px;
    }

    .home-seo-benefits,
    .home-seo-sidebar {
        grid-template-columns: 1fr;
    }

    .home-seo-intro {
        margin-bottom: 42px;
        padding-bottom: 34px;
    }
}