body {
    background: #FCFCFC;
    font-family: 'Montserrat', Arial, sans-serif;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    body {
        padding: 4px;
    }
}

/* HEADER */
.main-header {
    padding: 20px 8px;
    background: transparent;
}

.header-inner {
    background: #F5F5F5;
    border-radius: 100px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 44px;
}

.header-nav ul {
    display: flex;
    background: #dedede;
    border-radius: 36px;
    padding: 0;
    margin: 0;
    min-width: 455px;
    justify-content: center;
    align-items: center;
}

.header-nav ul li {
    list-style: none;
    font-size: 13px;
    line-height: 1.2;
    font-family: 'Montserrat', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.header-nav ul li.active a {
    background: #ff8900;
    color: #fff;
    border-radius: 26px;
    padding: 10px 28px;
    font-weight: 500;
}

.header-nav ul li:not(.active) a {
    background: transparent;
    color: #191919;
    padding: 10px 28px;
    border-radius: 26px;
    text-decoration: none;
}
.header-contact {
    display: block;
}

.header-nav .mobile-contact {
    display: none;
}

@media (max-width: 900px) {
    .header-contact {
        display: none;
    }

    .header-nav .mobile-contact {
        display: block;
    }
}
.header-contact a {
    padding: 12px 38px;
    border: 2px solid #191919;
    border-radius: 32px;
    background: transparent;
    color: #191919;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
}

/* HERO SECTION */
.hero-section {
    background: #fff;
    min-height: 68vh;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    padding: 40px;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

.hero-inner {
    display: flex;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 66vh;
    box-sizing: border-box;
    align-items: stretch;
}

.hero-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    padding: 16px;
}

.hero-left h1 {
    font-size: 60px;
    font-weight: 500;
    color: #191919;
    line-height: 1.2em;
    margin-bottom: 240px;
}

@media (max-width: 900px) {
    .hero-left h1 {
        font-size: 42px;
    }
}

.hero-rating-row {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-top: 10px;
}

.hero-rating-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.stars {
    color: #191919;
    font-size: 1.16rem;
    letter-spacing: 0.12em;
}

.score {
    font-family: inherit;
    font-weight: 600;
    color: #191919;
    font-size: 2.4rem;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.main-score {
    font-size: 2.4rem;
}

.divider,
.max-score {
    font-size: 1.08rem;
    color: #868686;
    font-weight: 400;
}

.hero-rating-divider {
    width: 1px;
    height: 64px;
    background: #ccc;
    margin: 0 36px;
    display: block;
}

.hero-rating-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.hero-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.hero-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.hero-avatars img:first-child {
    margin-left: 0;
}

.plus-avatar {
    width: 44px;
    height: 44px;
    background: #ff8900;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    font-size: 1.25em;
    font-weight: 700;
}

.hero-trust {
    font-size: 1.05rem;
    color: #686868;
    letter-spacing: 0.015em;
    margin-top: 2px;
}

.hero-right {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}

.hero-right-bottom {
    display: flex;
    flex-direction: row;
    gap: 32px;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 0;
}

.hero-cta {
    color: #191919;
    font-size: 1.1rem;
    font-family: inherit;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0 0 4px 0;
    border-bottom: 1.5px solid transparent;
    transition: border-bottom 0.19s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-cta:hover {
    border-bottom: 1.5px solid #191919;
}

.arrow {
    font-size: 1.25em;
    margin-left: 5px;
}

@media (max-width: 900px) {
    .hero-section {
        padding: 0px;
        min-height: 400px;
    }

    .hero-inner {
        flex-direction: column;
        max-width: 100%;
        min-height: unset;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        align-items: flex-start;
        justify-content: flex-start;
        position: static;
        margin-top: 30px;
    }

    .hero-right-bottom {
        position: static;
        margin-top: 18px;
        gap: 14px;
    }

    .hero-rating-row {
        flex-direction: column;
        gap: 18px;
        max-width: 100%;
    }

    .hero-rating-divider {
        width: 80%;
        height: 1px;
        margin: 20px 0;
    }

    .hero-rating-left,
    .hero-rating-right {
        min-width: 0;
        align-items: flex-start;
        gap: 8px;
    }
}

/* FOOTER */
.footer {
    background: #e5e5e5;
    
    padding-top: 40px;
    font-size: 1rem;
    color: #191919;
    border-top: 2px solid #ccc;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 25px 20px;
}

.footer-col {
    flex: 1 1 180px;
    margin: 20px 14px 0 0;
}

.footer-col.agency {
    max-width: 240px;
}

.footer-logo {
    height: 38px;
    margin-bottom: 18px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #191919;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #007bff;
}

.footer-bottom {
    border-top: 1px solid #ccc;
    margin-top: 24px;
    padding: 18px 20px 18px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    color: #555;
}

.footer-bottom span {
    margin: 4px 8px;
}

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-col {
        margin: 0 0 22px 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
.footer-cta-section {
    background: #dbdbdb;
    padding: 20px 0 16px 0;
    margin-bottom: 0;
}

.footer-cta-divider {
    width: 98%;
    height: 2px;
    margin: 0 auto;
    background: #191919;
    opacity: 0.23;
}

.footer-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1700px;
    margin: 0 auto;
    padding: 20px 40px;
}

.footer-cta-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 5vw;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #191919;
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 2.7rem;
    text-decoration: none;
    margin-left: 32px;
    position: relative;
}

.footer-cta-btn:after {
    content: "";
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    background: #d7d7d7;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: -1;
}

.arrow {
    font-size: 1.6em;
    margin-left: 0;
}

@media (max-width: 900px) {
    .footer-cta-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 10px;
        gap: 24px;
    }

    .footer-cta-text {
        font-size: 9vw;
    }

    .footer-cta-btn {
        width: 58px;
        height: 58px;
        font-size: 2em;
    }

    .footer-cta-btn:after {
        width: 39px;
        height: 39px;
        right: -12px;
    }
}
.projects-carousel-section {
    width: 100%;
    background: transparent;
    margin: 56px 0 20px 0;
    padding: 0;
}

.projects-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 12px 0;
}

.carousel-track {
    display: flex;
    width: fit-content;
    gap: 54px;
    animation: scroll-carousel 30s linear infinite;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-item {
    min-width: 370px;
    max-width: 370px;
    height: 360px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 3px 16px rgba(80, 80, 80, 0.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-bottom: 28px;
    text-decoration: none;
    color: inherit;
}

.carousel-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}
.carousel-item .project-title,
.carousel-item .project-category {
    text-decoration: none;
    /* just to be safe */
}
.project-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin:0px 22px 0 22px;
    color: #191919;
}

.project-category {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.12rem;
    margin: 0 22px;
    color: #585858;
    letter-spacing: 0.03em;
}

@media (max-width: 900px) {
    .carousel-item {
        min-width: 85vw;
        max-width: 85vw;
        height: 265px;
    }

    .carousel-track {
        gap: 20px;
    }

    .project-title {
        font-size: 1.3rem;
    }

    .project-category {
        font-size: 0.94rem;
    }
}
.about-section {
    margin: 48px auto 0 auto;
    max-width: 1700px;
    padding: 54px 0 20px 0;
    box-sizing: border-box;
    padding: 40px;
}

.about-header small {
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 0.12em;
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.about-header h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: #191919;
    margin-bottom: 38px;
    margin-top: 4px;
    line-height: 1.16;
}

.about-row {
    display: flex;
    gap: 48px;
    justify-content: space-between;
    align-items: flex-start;
}

.about-col-left,
.about-col-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.about-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 16/9;
    margin-bottom: 18px;
}

.about-main-text>p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    color: #484848;
    margin-bottom: 4px;
    line-height: 1.6;
}

.about-columns {
    display: flex;
    gap: 36px;
    margin-bottom: 16px;
}

.about-columns>div {
    flex: 1 1 0;
}

.about-columns p {
    font-size: 1rem;
    color: #4E4E4E;
    margin: 0 0 2px 0;
}

.about-actions {
    display: flex;
    gap: 18px;
    margin-top: 18px;
}

.about-btn {
    padding: 12px 30px;
    border: 2px solid #191919;
    border-radius: 40px;
    background: transparent;
    color: #191919;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.03rem;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.about-btn-orange {
    background: #ff8900;
    border: none;
    color: #fff;
}

.about-btn .arrow {
    margin-left: 6px;
    font-size: 1.13em;
}

.about-btn:hover,
.about-btn:focus {
    background: #191919;
    color: #fff;
    border-color: #191919;
}

.about-btn-orange:hover,
.about-btn-orange:focus {
    background: #d57500;
    color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-row {
        flex-direction: column;
        gap: 38px;
    }

    .about-col-left,
    .about-col-right {
        width: 100%;
        flex: none;
        margin-bottom: 0;
    }

    .about-columns {
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 700px) {
    .about-header h2 {
        font-size: 1.44rem;
    }

    .about-btn,
    .about-btn-orange {
        font-size: 0.92rem;
        padding: 12px 20px;
    }
}
.testimonial-section {
    width: 100vw;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    position: relative;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.testimonial-bg {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: block;
    overflow: hidden;
}

.testimonial-bg img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display:block;
    opacity: 0.94;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 20, 25, 0.77);
    z-index: 1;
}

.testimonial-content {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0;
}

.testimonial-content blockquote {
    margin: 0 auto 18px auto;
    max-width: 1220px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 22px;
    color: #fff;
    line-height: 28px;
    font-weight: 500;
    text-align: left;
    padding: 0 60px;
}

.testimonial-author {
    margin: 0 auto;
    max-width: 1220px;
    color: #ededed;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.04rem;
    text-align: left;
    padding: 0 60px;
    letter-spacing: 0.06em;
}

@media (max-width: 900px) {
    .testimonial-bg img {
        height: 500px;
    }

    .testimonial-content {
        padding: 24px 0;
    }

    .testimonial-content blockquote {
        font-size: 1.05rem;
        padding: 0 20px;
    }

    .testimonial-author {
        padding: 0 20px;
        font-size: 0.92rem;
    }
}
.services-section {
    max-width: 1700px;
    margin: 0 auto 0 auto;
    padding: 64px 0 36px 0;
    box-sizing: border-box;
    padding: 40px;
}

.services-row {
    display: flex;
    gap: 54px;
    justify-content: space-between;
    align-items: flex-start;
}

.services-left {
    flex: 1 1 52%;
    min-width: 340px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.services-left small {
    font-family: inherit;
    letter-spacing: 0.12em;
    font-size: 0.96rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.services-left h2 {
    font-size: 2.7rem;
    font-weight: 500;
    color: #191919;
    margin-bottom: 28px;
    line-height: 1.12;
    margin-top: 0;
}

.services-left p {
    color: #555;
    font-size: 1.19rem;
    font-weight: 400;
    line-height: 1.45;
    margin: 0 0 18px 0;
}

.services-right {
    flex: 1 1 48%;
    min-width: 350px;
    font-family: 'Montserrat', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

/* Accordion styles */
.accordion {
    width: 100%;
    max-width: 540px;
    background: none;
    border: none;
}

/* Individual item */
.accordion-item {
    border-bottom: 2px solid #ededed;
}

.accordion-header {
    width: 100%;
    padding: 22px 14px;
    font-size: 22px;
    font-weight: 500;
    color: #191919;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    font-size: 2rem;
    font-weight: 500;
    margin-left: 18px;
    color: #444;
    user-select: none;
}

.accordion-body {
    padding: 14px 14px 18px 14px;
    font-size: 16px;
    color: #3A3A3A;
    border-left: 3px solid #ff8900;
    background: #f9f9f9;
    margin-top: -2px;
    display: none;
}

.accordion-body.show {
    display: block;
    animation: fadeInAccordion 0.3s;
}

@keyframes fadeInAccordion {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.details-link {
    color: #191919;
    text-decoration: none;
    font-size: 1.02rem;
    margin-left: 0;
    font-weight: 500;
    margin-top: 14px;
    display: inline-block;
}

.details-link .arrow {
    font-size: 1.06em;
    margin-left: 6px;
}

.services-more-btn {
    margin-top: 38px;
    border-radius: 36px;
    border: 2px solid #191919;
    background: #fff;
    color: #191919;
    padding: 13px 38px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Montserrat', Arial, sans-serif;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.18s;
}

.services-more-btn:hover {
    background: #191919;
    color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
    .services-row {
        flex-direction: column;
        gap: 44px;
    }

    .services-left,
    .services-right {
        min-width: 0;
        width: 100%;
    }

    .accordion {
        max-width: 100%;
    }
}

@media (max-width: 670px) {
    .services-left h2 {
        font-size: 1.3rem;
    }

    .accordion-header {
        font-size: 1.13rem;
        padding: 14px 5px;
    }

    .services-more-btn {
        font-size: 1rem;
        padding: 11px 15px;
    }
}
.services-marquee-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    background: #111;
    padding: 0;
    margin-top: 32px;
    overflow: hidden;
}

.services-marquee-row {
    overflow: hidden;
    white-space: nowrap;
    width: 100vw;
    padding: 18px 0;
    position: relative;
    z-index: 1;
}

.marquee-row-top .marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-left 60s linear infinite;
}

.marquee-row-bottom .marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-right 60s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-service {
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 4vw;
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin: 0 32px;
    opacity: 0.85;
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}

.marquee-service.highlight {
    color: #fff;
    -webkit-text-stroke: 0;
    font-weight: 600;
    opacity: 1;
}

@media (max-width: 950px) {
    .marquee-service {
        font-size: 2.6rem;
        margin: 0 16px;
    }
}

@media (max-width: 600px) {
    .marquee-service {
        font-size: 1.25rem;
        margin: 0 9px;
    }
}
.servicespage-section {
    max-width: 1700px;
    margin: 0 auto;
    padding: 56px 0 36px 0;
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 40px;
}

.servicespage-header {
    text-align: center;
    margin-bottom: 44px;
}

.servicespage-header h1 {
    font-size: 2.7rem;
    font-weight: 600;
    color: #191919;
    margin-bottom: 10px;
}

.servicespage-header p {
    color: #575757;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.servicespage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 36px;
}

.service-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 3px 22px rgba(30, 30, 30, 0.04);
    padding: 38px 30px 32px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.2s;
    min-height: 330px;
}

.service-card:hover {
    box-shadow: 0 7px 36px rgba(30, 30, 30, 0.16);
}

.service-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.service-card h2 {
    font-size: 1.23rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #191919;
}

.service-card p {
    font-size: 1.03rem;
    color: #585858;
    margin-bottom: 0;
    line-height: 1.52;
}

.details-link {
    color: #ff8900;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.02rem;
    margin-top: 18px;
}

.details-link:hover {
    text-decoration: underline;
}

@media (max-width: 1000px) {
    .servicespage-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .servicespage-header h1 {
        font-size: 1.19rem;
    }

    .servicespage-header p {
        font-size: 0.9rem;
    }

    .servicespage-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-card {
        padding: 22px 12px 22px 12px;
    }
}
.service-hero-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    background: #fcfcfc;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
}

.service-hero-content {
    max-width: 950px;
    margin-left: 54px;
    padding-top: 58px;
    padding-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.service-hero-content small {
    font-family: 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 1rem;
    color: #191919;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-hero-content h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 4vw;
    font-weight: 600;
    line-height: 1.14;
    color: #191919;
    margin-bottom: 38px;
    margin-top: 0;
}

.service-hero-content p {
    color: #7b7b7b;
    font-size: 1.35rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 34px;
    max-width: 700px;
    line-height: 1.43;
}

.service-social-icons {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    margin-bottom: 38px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 9px rgba(50, 50, 50, 0.07);
    transition: background 0.15s;
}

.social-icon:hover {
    background: #ff8900;
}

.social-icon img {
    width: 26px;
    height: 26px;
}

.service-explore {
    position: absolute;
    right: 28px;
    bottom: 18px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.12rem;
    color: #191919;
    letter-spacing: 0.04em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-explore .arrow {
    font-size: 1.14em;
    margin-left: 5px;
}

@media (max-width: 900px) {
    .service-hero-content {
        margin-left: 0;
        padding: 24px;
        min-height: 62vh;
        max-width: 98vw;
    }

    .service-hero-content h1 {
        font-size: 32px;
    }

    .service-hero-content p {
        font-size: 1rem;
    }

    .service-social-icons {
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .service-explore {
        position: static;
        margin-top: 30px;
        font-size: 0.94rem;
    }
}
.services-grid-section {
    padding: 54px 0 24px 0;
    max-width: 1800px;
    margin: 0 auto;
    padding: 40px;
}

.services-title-row {
    display: flex;
    gap: 44px;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 32px;
}

.services-title-row h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: #191919;
    margin: 0;
    line-height: 1.08;
    max-width: 580px;
}

.services-title-desc {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.07rem;
    color: #616161;
    max-width: 520px;
    margin-bottom: 6px;
    font-weight: 400;
    line-height: 1.38;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
    margin: 0 auto;
    padding-top: 16px;
}

.services-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(40, 40, 40, 0.11);
    padding: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    height: 550px;
}

.services-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 24px rgba(50, 50, 50, 0.08);
}

.services-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.44rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 6px 0;
    padding: 0 28px;
}

.services-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.03rem;
    color: #666;
    margin: 0 0 18px 0;
    padding: 0 28px;
    min-height: 90px;
    line-height: 1.45;
}

.services-details-link {
    
    color: #191919;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.18s;
}

.services-details-link:hover {
    color: #ff8900;
}

.services-details-link .arrow {
    font-size: 1.13em;
    margin-left: 8px;
}

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

@media (max-width: 700px) {
    .services-title-row {
        flex-direction: column;
        gap: 0;
    }

    .services-title-row h2 {
        font-size: 1.13rem;
        max-width: 100%;
    }

    .services-title-desc {
        font-size: 0.94rem;
    }

    .services-grid {
        display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
    }

    .services-card {
        padding-bottom: 16px;
    }

    .services-card h3,
    .services-card p {
        padding: 0 14px;
        line-height: 57px;
    }

    .services-details-link {
        margin-left: 14px;
    }
}
.how-we-work-section {
    max-width: 1700px;
    margin: 0 auto 72px auto;
    padding: 64px 40px 0 40px;
    background: #fcfcfc;
}

.how-work-header small {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.03rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: #171717;
    display: block;
    margin-bottom: 19px;
}

.how-work-header h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.8rem;
    margin: 0 0 12px 0;
    color: #171717;
    font-weight: 600;
    line-height: 1.05;
}

.how-work-header p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.16rem;
    color: #646464;
    margin-bottom: 36px;
    max-width: 740px;
}

.how-work-timeline {
    position: relative;
    height: 260px;
    width: 100%;
    margin-top: 24px;
}

.how-work-gridlines {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 240px;
    width: 100%;
}

.how-work-gridlines span {
    position: absolute;
    bottom: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.14rem;
    color: #aaa;
    transform: translateX(-50%);
}

.gridline {
    position: absolute;
    top: 0;
    bottom: 25px;
    width: 0;
    border-left: 2px dashed #dadada;
    z-index: 1;
    left: 0;
}

.timeline-base {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #bcbcbc;
    z-index: 2;
}

.how-work-pills {
    position: absolute;
    left: 0;
    top: 36px;
    height: 170px;
    width: 100%;
}

.how-work-pill {
    position: absolute;
    top: 0;
    height: 32px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    padding-left: 22px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 20px;
    font-weight: 200;
    color: #222;
    background: #c7c7c7;
    box-sizing: border-box;
    z-index: 3;
}

.how-work-pill.discovery {
    background: #c7c7c7;
}

.how-work-pill.planning {
    background: #555;
    color: #fff;
}

.how-work-pill.execution {
    background: #444;
    color: #fff;
}

.how-work-pill.optimization {
    background: #222;
    color: #fff;
}

.how-work-pill.reporting {
    background: #1a1a1a;
    color: #fff;
}

.how-work-pill span {
    font-size: 20px;
    font-weight: 200;
    font-family: inherit;
}

@media (max-width: 900px) {
    .how-work-header h2 {
        font-size: 1.33rem;
    }

    .how-work-header p {
        font-size: 1rem;
    }

    .how-work-pill {
        font-size: 1.05rem;
        height: 32px;
    }
}

@media (max-width: 600px) {
    .how-work-header h2 {
        font-size: 0.98rem;
    }

    .how-work-timeline {
        height: 170px;
    }

    .how-work-pill {
        font-size: 0.88rem;
        padding-left: 8px;
        height: 20px;
    }
}
.enquiry-hero-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    min-height: 400px;
    margin: 0;
    padding: 0;
}

.enquiry-hero-bg {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
}

.enquiry-hero-bg img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}

.enquiry-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24, 25, 27, .77);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.enquiry-hero-content {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding-top: 0px;
}

.enquiry-hero-content small {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.03rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.enquiry-hero-content h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.12;
    margin: 0 0 0px 0;
}

.enquiry-hero-content p {
    font-size: 16px;
    color: #ededed;
    margin-bottom: 34px;
    max-width: 540px;
}

.enquiry-btn {
    padding: 14px 34px;
    background: #ff8900;
    color: #fff;
    border-radius: 36px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    transition: background 0.18s;
}

.enquiry-btn:hover {
    background: #e17900;
}

@media (max-width: 900px) {

    .enquiry-hero-bg,
    .enquiry-hero-bg img {
        height: 240px;
    }

    .enquiry-hero-content h2 {
        font-size: 1.3rem;
    }

    .enquiry-hero-content p {
        font-size: 0.92rem;
    }

    .enquiry-btn {
        font-size: 0.95rem;
        padding: 12px 18px;
    }
}
.testimonials-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 72px 0 56px 0;
}

.testimonials-row {
    width: 90vw;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.testimonials-left {
    flex: 0 0 340px;
    text-align: left;
    padding-top: 30px;
}

.testimonials-left small {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.11em;
    color: #191919;
    font-weight: 500;
}

.testimonials-left h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.2rem;
    color: #191919;
    font-weight: 500;
    margin: 8px 0 0 0;
}

.testimonials-right {
    flex: 1 1 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 40px;
}

.testimonial-quote {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    color: #444;
    font-weight: 400;
    line-height: 1.56;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 44px;
    min-height: 128px;
}

.quote-mark {
    font-size: 3.2rem;
    color: #ff8900;
    line-height: 1;
    margin-top: -6px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.testimonial-avatars {
    display: flex;
    gap: 36px;
    margin-top: 6px;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border-radius: 26px;
    padding: 7px 20px 7px 7px;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    box-shadow: none;
    border: none;
}

.testimonial-person.highlight {
    background: #191919;
    color: #fff;
}

.testimonial-person img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    background: #eee;
    margin-right: 2px;
}

.person-name {
    font-weight: 600;
}

.person-role {
    font-size: 0.93rem;
    color: #9e9e9e;
}

.testimonial-person.highlight .person-name,
.testimonial-person.highlight .person-role {
    color: #fff;
}

@media (max-width: 900px) {
    .testimonials-row {
        flex-direction: column;
        gap: 24px;
        width: 98vw;
    }

    .testimonials-left {
        padding-top: 0;
    }

    .testimonials-right {
        margin-left: 0;
    }

    .testimonials-left h2 {
        font-size: 1.14rem;
    }

    .testimonial-quote {
        font-size: 1.01rem;
    }

    .testimonial-person img {
        width: 32px;
        height: 32px;
    }
}
.contact-form-section {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fcfcfc;
    padding-bottom: 60px;
}

.contact-form-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.contact-form-header h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
    margin: 32px 0 18px 0;
    color: #191919;
}

.contact-form-header p {
    color: #575757;
    font-size: 1.09rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* Key line! Ensures all children use full width */
    max-width: 660px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-row {
    display: flex;
    gap: 18px;
    width: 100%;
}

.contact-row>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin: 26px 0 9px 2px;
    color: #232323;
    text-align: left;
    /* Force left alignment */
}

input,
textarea {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
    border: 1.3px solid #e1e1e1;
    border-radius: 9px;
    padding: 13px 19px;
    font-size: 1.1rem;
    margin-bottom: 0;
    background: #f7f7f7;
}

input:focus,
textarea:focus {
    border-color: #191919;
}

textarea {
    min-height: 98px;
    max-width: 100%;
}
.contact-services {
    width: 100%;
    margin-top: 28px;
}

.services-checkbox-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 48px;
    /* vertical, horizontal spacing between items */
    margin-top: 6px;
}

.services-checkbox-row label {
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
input[type="checkbox"] {
    width: 1.18em;
    height: 1.18em;
    accent-color: #191919;
}

.contact-form-btn {
    width: 85%;
    background: #191919;
    color: #fff;
    border: none;
    border-radius: 32px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 18px 0;
    margin: 42px auto 0 auto;
    letter-spacing: 0.10em;
    cursor: pointer;
    transition: background 0.18s;
}

.contact-form-btn:hover {
    background: #ff8900;
    color: #fff;
}

@media (max-width: 800px) {
    .contact-row {
        flex-direction: column;
        gap: 0;
    }
}
@media (max-width: 700px) {
    .services-checkbox-row {
        grid-template-columns: 1fr;
        gap: 9px 0;
    }
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    margin-left: 18px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3.2px;
    background: #232323;
    border-radius: 3px;
    transition: all 0.23s;
}

@media (max-width: 900px) {
    .header-nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        right: 20px;
        top: 80px;
        background: #fff;
        box-shadow: 0 2px 24px rgba(50, 50, 50, 0.12);
        border-radius: 24px;
        padding: 18px 34px;
        min-width: 200px;
        z-index: 100;
        gap: 0;
    }

    .header-nav ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* Hamburger animation (optional, for 'X' transition) */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}
@media (max-width: 900px) {
    .header-nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        right: 20px;
        top: 80px;
        background: #fff;
        box-shadow: 0 2px 24px rgba(50, 50, 50, 0.12);
        border-radius: 24px;
        padding: 18px 34px;
        min-width: 200px;
        z-index: 100;
        gap: 12px;
        /* Adjust spacing between items */
    }

    .header-nav ul.active {
        display: flex;
    }

    .header-nav ul li {
        margin: 0;
        padding: 0;
    }

    .header-nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
        color: #191919;
        text-decoration: none;
    }

    .header-nav ul li a:hover {
        color: #ff8900;
    }

    .header-nav ul .mobile-contact a {
        background: #ff8900;
        color: #fff;
        border-radius: 28px;
        padding: 12px 35px;
        font-weight: 600;
        margin-top: 12px;
        display: inline-block;
        text-align: center;
    }
}
.project-hero-section {
    width: 100vw;
    background: #fcfcfc;
    padding: 0;
    min-height: 75vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-hero-content {
    max-width: 900px;
    padding-left: 54px;
    padding-top: 60px;
    padding-bottom: 90px;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.project-hero-content small {
    font-family: 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 1.05rem;
    color: #181818;
    font-weight: 600;
    margin-bottom: 22px;
}

.project-hero-content h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 4vw;
    font-weight: 600;
    line-height: 1.11;
    color: #191919;
    margin-bottom: 38px;
    margin-top: 0;
}

.project-hero-content p {
    color: #555;
    font-size: 1.29rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 42px;
    max-width: 700px;
    line-height: 1.43;
}

.project-social-icons {
    display: flex;
    gap: 29px;
    margin-top: 38px;
}

.project-social-icons a {
    background: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 9px rgba(50, 50, 50, 0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
}

.project-social-icons a:hover {
    background: #ff8900;
}

.project-social-icons img {
    width: 24px;
    height: 24px;
}

.project-explore {
    position: absolute;
    right: 33px;
    bottom: 22px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.22rem;
    color: #191919;
    letter-spacing: 0.04em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-explore .arrow {
    font-size: 1.24em;
    margin-left: 5px;
}

@media (max-width: 900px) {
    .project-hero-content {
        padding-left: 0;
        padding-top: 33px;
        min-height: 63vh;
        max-width: 98vw;
        padding-bottom: 44px;
    }

    .project-hero-content h1 {
        font-size: 34px;
    }

    .project-hero-content p {
        font-size: 1rem;
    }

    .project-social-icons {
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .project-explore {
        position: static;
        margin-top: 30px;
        font-size: 0.98rem;
    }
}
.projects-grid-section {
    width: 100vw;
    margin: 0 auto;
    padding: 36px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 32px;
    width: 94vw;
    max-width: 1700px;
    margin: 0 auto;
}

.project-card {
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.23s, transform 0.12s;
    border-radius: 16px;
}

.project-card:hover {
    box-shadow: 0 6px 32px rgba(60, 60, 60, 0.14);
    transform: translateY(-2px) scale(1.02);
}

.project-card h3,
.project-card .project-brand,
.project-card .project-year {
    color: inherit;
}

.project-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 22px 22px 0 0;
    display: block;
}

.project-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.05rem;
    color: #a2a2a2;
    padding: 24px 18px 0 18px;
}

.project-brand {
    font-weight: 500;
    color: #787878;
}

.project-year {
    font-weight: 500;
}

.project-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.15rem;
    color: #191919;
    font-weight: 600;
    margin-bottom: 22px;
    line-height: 1.18;
    margin-top: 14px;
    padding: 0 18px;
}

@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px;
    }

    .project-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 700px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px 0;
        width: 98vw;
    }

    .project-card h3 {
        font-size: 1.13rem;
    }
}
.aboutus-section {
    max-width: 1700px;
    margin: 0;
    padding: 40px;
    background: #fcfcfc;
}

.aboutus-grid {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.aboutus-grid-left {
    flex: 1.03 1 0;
    min-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aboutus-grid-left h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-top: 18px;
    margin-bottom: 24px;
    color: #151515;
}

.aboutus-grid-images {
    display: flex;
    flex-direction: row;
    gap: 28px;
    width: 100%;
    margin-bottom: 20px;
}

.aboutus-grid-images img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 24px;
    background: #eee;
    box-shadow: 0 3px 14px rgba(30, 30, 30, 0.16);
}

.aboutus-description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.12rem;
    color: #666;
    margin-top: 10px;
    max-width: 90%;
    line-height: 1.47;
}

.aboutus-grid-right {
    flex: 1.1 1 0;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 7px;
    margin-left: 0;
    align-items: flex-start;
}

.aboutus-grid-right h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #151515;
    margin-bottom: 24px;
    line-height: 1.11;
}

.aboutus-grid-right p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    color: #444;
    margin-bottom: 17px;
    line-height: 1.42;
    max-width: 580px;
}

.aboutus-mission {
    color: #ff8900;
    font-weight: 500;
    margin-bottom: 29px;
}

.aboutus-action {
    display: flex;
    gap: 21px;
    margin-top: 8px;
}

.aboutus-btn-primary {
    background: #ff8900;
    color: #fff;
    border-radius: 36px;
    padding: 17px 38px;
    font-size: 1.08rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 10px rgba(60, 60, 60, 0.08);
    transition: background 0.18s;
    display: inline-block;
}

.aboutus-btn-primary:hover {
    background: #d97400;
}

.aboutus-btn-outline {
    background: #fff;
    color: #191919;
    border-radius: 36px;
    border: 2px solid #191919;
    padding: 17px 38px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.08rem;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(60, 60, 60, 0.04);
    transition: background 0.18s;
    display: inline-block;
}

.aboutus-btn-outline:hover {
    background: #191919;
    color: #fff;
}

.arrow {
    font-size: 1.22em;
    margin-left: 7px;
}

@media (max-width: 1050px) {
    .aboutus-grid {
        flex-direction: column;
        gap: 30px;
    }

    .aboutus-grid-left,
    .aboutus-grid-right {
        min-width: 0;
        width: 98vw;
    }

    .aboutus-grid-images img {
        width: 98vw;
        height: 230px;
    }

    .aboutus-grid-right h1,
    .aboutus-grid-left h2 {
        font-size: 1.34rem;
    }

    .aboutus-grid-right p,
    .aboutus-description {
        font-size: 1rem;
    }
}

@media (max-width: 750px) {
    .aboutus-grid-images {
        flex-direction: column;
        gap: 10px;
    }

    .aboutus-grid-images img {
        width: 97vw;
        height: 170px;
    }

    .aboutus-action {
        flex-direction: column;
        gap: 12px;
    }
}
.aboutus-numbers-section {
    width: 100vw;
    max-width: 1800px;
    margin: 0 auto 72px auto;
    padding: 0;
    background: #fcfcfc;
}

.aboutus-numbers-banner {
    width: 96vw;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    background: #eee;
}

.aboutus-numbers-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.68);
    display: block;
}

.aboutus-numbers-overlay {
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 0 32px;
    z-index: 2;
}

.aboutus-numbers-headline {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1a1a1a;
    margin: 62px auto 36px auto;
    text-align: center;
    font-size: 2.15rem;
    font-weight: 500;
    line-height: 1.22;
    max-width: 1050px;
}

.aboutus-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14vw 0;
    width: 96vw;
    max-width: 1500px;
    margin: 0 auto 24px auto;
}

.numbers-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.numbers-main {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #191919;
}

.numbers-main sup {
    font-size: 1.7rem;
    vertical-align: super;
    font-weight: 500;
}

.numbers-caption {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.11rem;
    color: #4d4d4d;
    margin-top: 14px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 950px) {
    .aboutus-numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px 0;
    }

    .numbers-main {
        font-size: 2.3rem;
    }

    .aboutus-numbers-headline {
        font-size: 1.21rem;
    }

    .aboutus-numbers-banner {
        height: 110px;
    }

    .aboutus-numbers-overlay {
        font-size: 0.89rem;
    }
}

@media (max-width: 600px) {
    .aboutus-numbers-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .aboutus-numbers-banner {
        height: 70px;
    }

    .numbers-main {
        font-size: 1.5rem;
    }

    .aboutus-numbers-headline {
        font-size: 1.07rem;
    }
}
.service-detail-hero {
    padding: 70px 6vw 40px 6vw;
}

.service-detail-text h1 {
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 22px 0;
}

.service-detail-text p {
    max-width: 740px;
    font-size: 1.13rem;
    color: #666;
    margin: 0 0 26px 0;
}

.service-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

/* Image section */
.service-detail-image-wrap {
    position: relative;
    width: 100vw;
    overflow: hidden;
}

.service-detail-image {
    position: relative;
    width: 100%;
    height: 55vh;
    /* initial height before scroll */
    overflow: hidden;
    transform-origin: center top;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* dummy content */
.service-detail-content {
    padding: 80px 6vw 120px 6vw;
    font-size: 1rem;
    color: #555;
}

/* responsive */
@media (max-width: 768px) {
    .service-detail-text h1 {
        font-size: 2.2rem;
    }

    .service-detail-text p {
        font-size: 0.96rem;
    }
}
.services-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(40, 40, 40, 0.11);
    padding: 0 0 30px 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    overflow: hidden;
}

.services-card-image-wrap {
    width: 100%;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.services-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.services-card h3,

.services-details-link {
    padding: 0 28px;
    min-height: 57px;
}

.services-details-link {
    margin-top: 6px;
    color: #191919;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.18s;
}

.services-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.services-card:hover img {
    transform: scale(1.05);
}

.services-card:hover .services-details-link {
    color: #ff8900;
}
.service-offer-section {
    max-width: 1400px;
    margin: 0 auto 80px auto;
    padding: 40px 5vw 0 5vw;
    font-family: "Montserrat", Arial, sans-serif;
    color: #181818;
}

.service-offer-block {
    margin-bottom: 36px;
}

.service-offer-block h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0 0 14px 0;
}

.service-offer-tagline {
    font-size: 1.25rem;
    font-style: italic;
    margin: 0 0 22px 0;
}

.service-offer-list {
    list-style-type: disc;
    padding-left: 1.4rem;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #333;
}

.service-offer-list li {
    margin-bottom: 6px;
}

.service-divider {
    border: none;
    border-top: 1px solid #dedede;
    margin: 28px 0 32px 0;
}

.service-book-link {
    display: inline-flex;
    align-items: center;
    margin-top: 26px;
    font-size: 0.98rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #181818;
    font-weight: 500;
}

.service-book-link .arrow {
    margin-left: 6px;
    font-size: 1.1em;
}

.service-book-link:hover {
    color: #ff8900;
}

@media (max-width: 768px) {
    .service-offer-block h2 {
        font-size: 1.6rem;
    }

    .service-offer-tagline {
        font-size: 1rem;
    }

    .service-offer-list {
        font-size: 0.95rem;
    }
}
.other-services-section {
    max-width: 1700px;
    margin: 0 auto 80px auto;
    padding: 40px 5vw 0 5vw;
    font-family: "Montserrat", Arial, sans-serif;
}

.other-services-header h2 {
    font-size: 2.6rem;
    font-weight: 600;
    margin: 0 0 28px 0;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.other-service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 18px rgba(30, 30, 30, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.other-service-image-wrap {
    width: 100%;
    overflow: hidden;
}

.other-service-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.other-service-content {
    padding: 22px 22px 24px 22px;
}

.other-service-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.other-service-content p {
    font-size: 0.99rem;
    color: #5b5b5b;
    margin: 0 0 18px 0;
    line-height: 1.5;
}

.other-service-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.other-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.other-service-card:hover img {
    transform: scale(1.05);
}

.other-service-card:hover .other-service-link {
    color: #ff8900;
}

.other-services-footer {
    margin-top: 30px;
}

.all-services-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d1d1d1;
    padding: 10px 24px;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1b1b1b;
}

.all-services-btn:hover {
    border-color: #ff8900;
    color: #ff8900;
}

.arrow {
    margin-left: 6px;
    font-size: 1.1em;
}

@media (max-width: 1100px) {
    .other-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .other-service-image-wrap img {
        height: 240px;
    }
}

.project-page-title{
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    margin: 14px 22px 0 22px;
    color: #191919;
    text-align: center;
}
.project-title-p{
    font-family: 'Montserrat', Arial, sans-serif;
        font-size: 16px;
        font-weight: 300;
        margin: 14px 22px 0 22px;
        color: #191919;
        text-align: center;
}

.project-img{
    margin: 80px;
    width: 89%;
    align-content: center;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 16/9;
}
.case-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(260px, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.case-main-title {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #052e16;
    margin-bottom: 24px;
}

.case-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.case-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background-color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecfdf3;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.case-body-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

.case-paragraph {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
    max-width: 640px;
}

.case-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #052e16;
    margin-top: 24px;
    margin-bottom: 8px;
}

.case-sidebar {
    background-color: #064e3b;
    color: #ecfdf3;
    border-radius: 18px;
    padding: 24px 24px 28px;
    position: relative;
    overflow: hidden;
}

.case-sidebar::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.case-sidebar-item {
    margin-bottom: 16px;
}

.case-sidebar-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #a7f3d0;
    margin-bottom: 4px;
    display: block;
}

.case-sidebar-value {
    font-size: 16px;
    font-weight: 600;
    color: #f9fafb;
}

.case-checklist {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 20px;
    margin-top: 18px;
    max-width: 840px;
}

.case-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #111827;
}

.case-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background-color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecfdf3;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .case-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    body {
        padding: 24px 16px;
    }

    .case-main-title {
        font-size: 26px;
    }

    .case-checklist {
        grid-template-columns: 1fr;
    }
}
:root {
    --cc-primary: #ff8900;
    /* CodeCraft primary */
    --cc-text: #151515;
    /* CodeCraft text color */
    --muted: #6c757d;
    /* muted gray for descriptions */
    --bg: #ffffff;
    --card-bg: #ff8900;
    /* deep green-like card (visual contrast) */
    --card-accent: rgba(255, 255, 255, 0.04);
    --radius: 18px;
    --max-width: 1200px;
    --font: "Montserrat", Arial, sans-serif;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--cc-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    padding: 40px 24px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Layout */
.case-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* Header area */
.case-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-primary), #ffb473);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex: 0 0 48px;
}

h1.title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: var(--cc-text);
}

.lead {
    color: var(--muted);
    margin: 12px 0 22px 0;
    font-weight: 300;
}

.body-text {
    color: var(--muted);
    margin-bottom: 22px;
    font-weight: 300;
}

/* Right card */
.project--card {
    background: linear-gradient(180deg, var(--card-bg), var(--card-bg));
    color: #ffffff;
    padding: 26px;
    border-radius: var(--radius);
    position: relative;
    box-shadow: 0 8px 28px rgba(19, 60, 49, 0.12);
    overflow: hidden;
}

/* diagonal stripes ornament */
.project--card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(135deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 12px 12px;
    opacity: 0.8;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.project-meta {
    position: relative;
    /* above the ::after because both are stacked */
    z-index: 2;
}

.meta-label {
    font-size: 13px;
    color: #000;
    margin-bottom: 6px;
}

.meta-value {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    color: #000;
}

.project-row {
    margin-bottom: 14px;
}

/* Sections */
.section {
    margin-top: 28px;
}

.section h3 {
    margin: 14px 0;
    font-size: 22px;
    color: var(--cc-text);
    font-weight: 700;
}

.section p {
    margin: 0 0 18px 0;
    color: var(--muted);
    font-weight: 300;
}

/* Solutions list with check icons */
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin-top: 16px;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--muted);
    font-weight: 400;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cc-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    flex: 0 0 20px;
    box-shadow: 0 2px 6px rgba(255, 137, 0, 0.2);
}

/* small rule */
.divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
    border-radius: 2px;
}

/* responsive */
@media (max-width: 980px) {
    .case-grid {
        grid-template-columns: 1fr;
    }

    .project--card {
        order: -1;
        margin-bottom: 12px;
    }
}

/* small tweaks for headings in left column */
.content-left h2 {
    font-size: 38px;
    margin: 0 0 12px 0;
    color: var(--cc-text);
    font-weight: 700;
}

.muted-small {
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 10px;
}

/* subtle bullet list visuals for left content top area */
.top-paragraphs p {
    margin: 0 0 14px 0;
}
* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--cc-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 48px 28px;
    line-height: 1.6;
}

.wrap {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Top images row */
.image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
    margin-top: 28px;
}

.hero-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    filter: grayscale(100%);
}

/* Impact heading / paragraph */
.impact {
    margin: 6px 0 26px 0;
}

.impact h2 {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--cc-text);
}

.impact p {
    margin: 0;
    color: var(--muted);
    font-weight: 300;
    font-size: 15px;
}

/* Testimonial card */
.testimonial {
    position: relative;
    margin-top: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 26px 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(21, 21, 21, 0.04);
    min-height: 160px;
}

/* big quoted background */
.testimonial::before {
    content: "“";
    position: absolute;
    right: 32px;
    top: 8px;
    font-size: 170px;
    line-height: 1;
    color: rgba(21, 21, 21, 0.04);
    font-weight: 700;
    font-family: var(--font);
    pointer-events: none;
    user-select: none;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.stars {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.star {
    width: 22px;
    height: 22px;
    display: inline-block;
    color: var(--cc-primary);
    /* simple star using SVG background for crispness */
}

/* visually hide text while accessible */
.star svg {
    display: block;
    width: 100%;
    height: 100%
}

.rating-score {
    font-weight: 700;
    font-size: 18px;
    color: var(--cc-text);
}

.testimonial p {
    margin: 12px 0 18px 0;
    color: #000;
    font-weight: 300;
    font-size: 15px;
}

.author {
    margin-top: 6px;
    font-weight: 700;
    color: var(--cc-text);
    font-size: 16px;
}

.author-title {
    margin: 2px 0 0 0;
    color: var(--muted);
    font-weight: 400;
    font-size: 14px;
}

/* responsive */
@media (max-width:860px) {
    .image-row {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .hero-img {
        height: 180px
    }

    .testimonial::before {
        font-size: 120px;
        right: 18px;
        top: 6px
    }
}