/* 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;
    }

}

.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;
   
}

.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;
    }
    .about-section
    {
        padding: 50px 0;
    }
    .about-container
    {
        padding: 0 20px;
    }
}

@media (max-width: 650px) {
    .about-section {
        padding: 40px 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;
    }
}


/* 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);
    }
    .portfolio-section
    {
        padding: 50px 0;
    }
    .portfolio-section .container
    {
        padding: 0 20px;
    }
}

@media (max-width: 700px) {
    .portfolio-section {
        padding: 40px 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;
    }

   
}


/* =========================================
   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);
    }
    .testimonials-section
    {
        padding: 50px 0;
    }
    .testimonials-section .container
    {
        padding: 0 20px;
    }
}

@media (max-width: 750px) {
    .testimonials-section {
        padding: 40px 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: 90px 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 .container {
    position: relative;
    z-index: 2;
    padding-right: 20px;
    padding-left: 20px;
}

.clients-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    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;
    width: 100%;
    overflow: hidden;
}

.clients-showcase::before,
.clients-showcase::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 4;
    width: 80px;
    pointer-events: none;
}

.clients-showcase::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #ffffff,
        rgba(255, 255, 255, 0)
    );
}

.clients-showcase::after {
    right: 0;
    background: linear-gradient(
        270deg,
        #ffffff,
        rgba(255, 255, 255, 0)
    );
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    padding: 6px 0;
}

.clients-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.clients-track-left {
    animation: clientsMoveLeft 34s linear infinite;
}

.clients-group {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
}

@keyframes clientsMoveLeft {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}


/* LOGO CARD */

.client-logo {
    flex: 0 0 190px;
    width: 190px;
    height: 150px;

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

    padding: 12px;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(11, 16, 26, 0.06);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.client-logo:hover {
    transform: translateY(-4px);

    border-color: rgba(44, 98, 213, 0.28);

    box-shadow:
        0 16px 32px rgba(11, 16, 26, 0.1);
}

.client-logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    transition: transform 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.04);
}


/* BOTTOM SECTION */

.clients-bottom {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 25px;

    margin-top: 42px;

    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;
}


/* TABLET */

@media (max-width: 1050px) {

    .clients-bottom {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .clients-bottom .btn {
        grid-column: 1 / -1;
        width: fit-content;
    }
    .clients-section
    {
        padding: 50px 0;
    }
    .clients-section .container
    {
        padding: 0 20px;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .clients-section {
        padding: 40px 0;
    }

    .clients-heading {
        margin-bottom: 35px;
    }

    .clients-heading h2 {
        font-size: 35px;
        letter-spacing: -1.2px;
    }

    .clients-heading p {
        font-size: 14px;
    }

    .clients-showcase::before,
    .clients-showcase::after {
        width: 30px;
    }

    .client-logo {
        flex-basis: 145px;

        width: 145px;
        height: 120px;

        padding: 10px;

        border-radius: 15px;
    }

    .clients-group {
        gap: 12px;
        padding-right: 12px;
    }

    .clients-bottom {
        grid-template-columns: 1fr;

        padding: 20px 18px;
    }

    .clients-bottom .btn {
        grid-column: auto;

        width: 100%;
    }

}


/* SMALL MOBILE */

@media (max-width: 430px) {

    .clients-heading h2 {
        font-size: 28px;
    }

    .client-logo {
        flex-basis: 130px;

        width: 130px;
        height: 105px;
    }

}


/* ACCESSIBILITY */

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

    .clients-track {
        animation: none !important;
    }

}


/*  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%;
    }
    .contact-section
    {
        padding: 50px 0;
    }
    .contact-container
    {
        padding: 0 20px;
    }
}

@media (max-width: 700px) {
    .contact-section {
        padding: 40px 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;
    }
    .home-seo-section
    {
        padding: 50px 0;
    }
    .home-seo-section .container
    {
        padding: 0 20px;
    }
}

@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: 40px 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;
    }
}

/* ===== 2026 PERFORMANCE REDESIGN ===== */
.hero-section {
    min-height: min(760px, calc(100vh - 84px));
    background-image: linear-gradient(90deg, rgba(6, 12, 22, .96) 0%, rgba(6, 12, 22, .88) 43%, rgba(6, 12, 22, .60) 70%, rgba(6, 12, 22, .78) 100%), url('../images/portfolio-hero-showcase.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before,
.hero-section::after {
    display: none
}

.hero-image-wrapper {
    max-width: 520px;
    padding: 16px
}

.hero-image-bg {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: none
}

.hero-image {
    padding: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28)
}

.hero-image img {
    aspect-ratio: 1.22/1;
    object-fit: contain
}

.hero-actions {
    flex-wrap: wrap
}

.services-directory-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, .85fr);
    gap: 22px;
    margin-top: 34px
}

.service-directory-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    padding: 30px;
    border: 1px solid #dfe6f1;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(24, 39, 75, .09);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.service-directory-card:hover {
    transform: translateY(-4px);
    border-color: #c8d6f0;
    box-shadow: 0 28px 65px rgba(24, 39, 75, .14)
}

.service-directory-digital {
    background: linear-gradient(145deg, #f0fbff 0%, #f8f5ff 100%);
    border-color: #d8e9f4
}

.service-directory-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #e5faff, #eef2ff);
    border: 1px solid #bceaf2;
    font-size: 22px;
    color: #087d9b
}

.service-directory-card .service-category {
    color: #275dc7;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .8px
}

.service-directory-card h3 {
    margin: 8px 0 20px;
    font-size: 24px;
    line-height: 1.25;
    color: #111827
}

.service-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px
}

.digital-service-links {
    grid-template-columns: 1fr
}

.service-link-grid a {
    display: flex;
    align-items: center;
    min-height: 43px;
    padding: 9px 12px;
    border: 1px solid #e2e8f2;
    border-radius: 11px;
    background: #f8fafc;
    color: #42526a;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
    transition: .2s ease
}

.service-link-grid a:hover {
    color: #174eb8;
    background: #edf4ff;
    border-color: #bdd0f4;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(44, 98, 213, .09)
}

@media(max-width:1050px) {
    .services-directory-grid {
        grid-template-columns: 1fr
    }

    .digital-service-links {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media(max-width:760px) {
    .service-directory-card {
        grid-template-columns: 1fr;
        padding: 22px
    }

    .service-link-grid,
    .digital-service-links {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .service-directory-card h3 {
        font-size: 21px
    }

    .hero-section {
        background-position: 60% center
    }
}

@media(max-width:460px) {

    .service-link-grid,
    .digital-service-links {
        grid-template-columns: 1fr
    }

    .service-directory-card {
        padding: 18px
    }

    .hero-container {
        padding-top: 48px !important;
        padding-bottom: 56px !important
    }
}

@media(max-width:430px) {
    .hero-actions {
        flex-direction: column
    }

   
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .clients-track-left,
    .clients-track-right {
        animation: none !important
    }

    .portfolio-track,
    .testimonials-track {
        transition: none !important
    }
}

/* Browser skips off-screen rendering work until needed */
.about-section,
.portfolio-section,
.services-section,
.testimonials-section,
.clients-section,
.contact-section,
.home-seo-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px
}

/* ===== PREMIUM CREATIVE SERVICES REDESIGN ===== */
.services-section.services-directory {
    isolation: isolate;
    padding: 100px 0 96px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 12%, rgba(36, 215, 234, .16), transparent 28%),
        radial-gradient(circle at 92% 82%, rgba(169, 76, 242, .20), transparent 30%),
        linear-gradient(135deg, #07111f 0%, #0c1729 52%, #111229 100%);
}

.services-section.services-directory::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 85%);
}

.services-section.services-directory::after {
    display: none
}

.services-directory .services-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    pointer-events: none
}

.services-directory .services-orbit-one {
    top: -180px;
    right: -140px;
    width: 520px;
    height: 520px;
    box-shadow: inset 0 0 90px rgba(36, 215, 234, .035)
}

.services-directory .services-orbit-two {
    bottom: -260px;
    left: -200px;
    width: 600px;
    height: 600px;
    box-shadow: inset 0 0 110px rgba(169, 76, 242, .05)
}

.services-directory .services-header {
    align-items: flex-end;
    margin-bottom: 50px
}

.services-directory .services-heading {
    max-width: 850px
}

.services-directory .services-label {
    margin-bottom: 20px;
    color: #6ee7f2;
    background: rgba(36, 215, 234, .09);
    border-color: rgba(36, 215, 234, .25);
    box-shadow: inset 0 0 18px rgba(36, 215, 234, .04)
}

.services-directory .services-heading h2 {
    max-width: 820px;
    margin-bottom: 20px;
    color: #f8fbff;
    font-size: 40px;
    font-weight: 780;
    line-height: 1.02;
    letter-spacing: 0.6px
}

.services-directory .services-heading h2 span {
    background: linear-gradient(90deg, #42dce9 0%, #9ef395 42%, #b875ff 100%);
    background-clip: text;
    -webkit-background-clip: text
}

.services-directory .services-heading p {
    max-width: 760px;
    color: #aebbd0;
    font-size: 16px;
    line-height: 1.8
}

.services-header-action {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    padding-bottom: 4px
}

.services-header-action>span {
    color: #8493aa;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase
}

.services-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 20px;
    color: #07131c;
    font-size: 13px;
    font-weight: 850;
    background: linear-gradient(90deg, #51e3ed, #a5f39a);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(36, 215, 234, .18);
    transition: transform .25s ease, box-shadow .25s ease
}

.services-premium-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(36, 215, 234, .27)
}

.services-directory .services-directory-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, .85fr);
    gap: 22px;
    margin-top: 0
}

.services-directory .service-directory-card {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
    box-shadow: 0 28px 80px rgba(0, 0, 0, .23);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.services-directory .service-directory-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #24d7ea, #9ef395, #a94cf2)
}

.services-directory .service-directory-card:hover {
    transform: translateY(-5px);
    border-color: rgba(103, 222, 234, .24);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .32)
}

.services-directory .service-directory-digital {
    background: radial-gradient(circle at 85% 10%, rgba(169, 76, 242, .17), transparent 34%), linear-gradient(145deg, rgba(36, 215, 234, .085), rgba(255, 255, 255, .025))
}

.service-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px
}

.services-directory .service-directory-icon {
    width: 58px;
    height: 58px;
    color: #07131c;
    font-size: 21px;
    background: linear-gradient(145deg, #52e2ec, #a4f39a);
    border: 0;
    border-radius: 17px;
    box-shadow: 0 15px 32px rgba(36, 215, 234, .17)
}

.service-card-number {
    color: rgba(255, 255, 255, .12);
    font-size: 48px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -3px
}

.services-directory .service-directory-card .service-category {
    display: block;
    margin-bottom: 9px;
    color: #65e2ed;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.25px;
    text-transform: uppercase
}

.services-directory .service-directory-card h3 {
    max-width: 580px;
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(25px, 2.1vw, 34px);
    font-weight: 780;
    line-height: 1.15;
    letter-spacing: -1.25px
}

.services-directory .service-card-intro {
    max-width: 650px;
    margin: 0 0 27px;
    color: #9eacc0;
    font-size: 13px;
    line-height: 1.75
}

.services-directory .service-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px
}

.services-directory .digital-service-links {
    grid-template-columns: 1fr
}

.services-directory .service-link-grid a {
    position: relative;
    min-height: 47px;
    padding: 10px 13px 10px 31px;
    color: #d9e2ef;
    font-size: 12px;
    font-weight: 680;
    line-height: 1.3;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 12px
}

.services-directory .service-link-grid a::before {
    content: "";
    position: absolute;
    left: 13px;
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #24d7ea, #9ef395);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(36, 215, 234, .08)
}

.services-directory .service-link-grid a:hover {
    color: #fff;
    background: rgba(36, 215, 234, .10);
    border-color: rgba(36, 215, 234, .25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .14);
    transform: translateY(-2px)
}

.services-footer-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 22px;
    padding: 18px 22px;
    color: #aebbd0;
    font-size: 12px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 16px
}

.services-footer-note>div {
    display: flex;
    align-items: center;
    gap: 10px
}

.services-footer-note>div i {
    color: #9ef395
}

.services-footer-note strong {
    color: #fff
}

.services-footer-note>a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #6de3ed;
    font-weight: 800;
    white-space: nowrap
}

.services-footer-note>a:hover {
    color: #a5f39a
}

@media(max-width:1050px) {
    .services-directory .services-header {
        align-items: flex-start
    }

    .services-header-action {
        align-items: flex-start
    }

    .services-directory .services-directory-grid {
        grid-template-columns: 1fr
    }

    .services-directory .digital-service-links {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
    .services-section.services-directory
    {
        padding: 50px 0;
    }
}

@media(max-width:760px) {
    .services-section.services-directory {
        padding: 78px 0 68px
    }

    .services-directory .services-heading h2 {
        font-size: 35px;
        letter-spacing: -2.5px
    }

    .services-directory .service-directory-card {
        padding: 24px;
        border-radius: 22px
    }

    .services-directory .service-link-grid,
    .services-directory .digital-service-links {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

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

@media(max-width:470px) {
    .services-directory .services-heading h2 {
        font-size: 37px
    }

    .services-directory .service-link-grid,
    .services-directory .digital-service-links {
        grid-template-columns: 1fr
    }

    .services-directory .service-directory-card {
        padding: 20px
    }

    .service-card-number {
        font-size: 40px
    }
}

/* =========================================================
   2026 LIGHTWEIGHT CREATIVE POLISH
   GPU-friendly transforms only; no heavy animation library.
========================================================= */

.portfolio-card,
.service-directory-card,
.client-logo,
.about-card,
.testimonial-card {
    transition:
        transform .28s cubic-bezier(.2,.7,.2,1),
        box-shadow .28s ease,
        border-color .28s ease;
}

.portfolio-card:hover,
.service-directory-card:hover,
.about-card:hover,
.testimonial-card:hover {
    transform: translateY(-7px);
}

.portfolio-card-media {
    background:
        radial-gradient(circle at 15% 10%, rgba(39,214,232,.08), transparent 35%),
        #f4f6fa;
}

.portfolio-card-media img {
    transform: translateZ(0);
}

.portfolio-card:hover .portfolio-card-media img {
    transform: scale(1.025);
}

.client-logo {
    position: relative;
    overflow: hidden;
}

.client-logo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(39,214,232,.12), transparent 65%);
    transform: translateX(-100%);
    transition: opacity .25s ease, transform .55s ease;
}

.client-logo:hover::after {
    opacity: 1;
    transform: translateX(100%);
}

.site-reveal {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity .65s cubic-bezier(.2,.7,.2,1),
        transform .65s cubic-bezier(.2,.7,.2,1);
}

.site-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0,0,0);
}

.hero-visual,
.portfolio-card-media,
.about-card-icon {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .site-reveal,
    .site-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .portfolio-card,
    .service-directory-card,
    .client-logo,
    .about-card,
    .testimonial-card,
    .portfolio-card-media img {
        transition: none !important;
    }
}
