/* =========================================
   DỊCH VỤ THIẾT KẾ LOGO - HERO SECTION
   ========================================= */

.dl-hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background-color: #F8F9FA;
    /* Subtle off-white to contrast the white ellipse */
    text-align: center;
}

.dl-hero-ellipse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 606px;
    height: 606px;
    border-radius: 50%;
    background-color: #FFFFFF;
    z-index: 1;
    /* In case it needs a subtle shadow to stand out */
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.05);
}

.dl-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.dl-hero-title {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.25;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
}

.dl-line {
    display: block;
}

.dl-hero-image-wrap {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.dl-hero-image-wrap img {
    width: 100%;
    max-width: 556px;
    height: auto;
    border-radius: 12px;
}

.dl-hero-subtitle {
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    color: #000000;
    margin: 0;
    max-width: 480px;
}

/* =========================================
   ABOUT US SECTION
   ========================================= */

.dl-about {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.dl-about-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.dl-about-label {
    font-family: 'Google Sans', sans-serif;
}

.dl-label-text {
    font-weight: 400;
    font-size: 16px;
    color: #A4A4A4;
    line-height: 1.5;
}

.dl-about-desc {
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #262626;
    margin-bottom: 30px;
}

.dl-about-list {
    margin-bottom: 40px;
}

.dl-list-item {
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #262626;
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.dl-list-item::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #262626;
}

.dl-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 32px;
    border: 1px solid #000000;
    border-radius: 58px;
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #14313A;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.dl-btn-outline:hover {
    background-color: #14313A;
    color: #FFFFFF;
}

.dl-btn-outline:hover svg path {
    stroke: #FFFFFF;
}

/* =========================================
   PROJECT SECTION
   ========================================= */

.dl-project {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.dl-project-header {
    margin-bottom: 40px;
}

.dl-project-masonry {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.dl-masonry-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dl-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: #F0F0F0;
}

.dl-project-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.dl-project-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 2;
}

.dl-tag-name {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    padding: 2px 10px;
}

.dl-tag-industry {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25;
    padding: 2px 10px;
    width: fit-content;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media screen and (max-width: 768px) {
    .dl-hero {
        padding: 60px 0;
    }

    .dl-hero-title {
        font-size: 32px;
    }

    .dl-hero-image-wrap img {
        max-width: 100%;
    }

    .dl-hero-subtitle {
        font-size: 16px;
    }

    .dl-hero-ellipse {
        width: 400px;
        height: 400px;
    }

    .dl-about {
        padding: 60px 0;
    }

    .dl-about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dl-about-label {
        margin-bottom: 20px;
    }

    .dl-about-desc,
    .dl-list-item {
        font-size: 16px;
    }

    .dl-project {
        padding: 60px 0;
    }

    .dl-project-masonry {
        flex-direction: column;
    }

    .dl-masonry-col {
        width: 100%;
    }

    .dl-tag-name {
        font-size: 16px;
    }

    .dl-tag-industry {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .dl-hero-title {
        font-size: 24px;
    }

    .dl-hero-ellipse {
        width: 300px;
        height: 300px;
    }
}

/* =========================================
   PORTFOLIO FOOTER (shared)
   ========================================= */
.th-portfolio-footer {
    margin-top: 60px;
    display: flex;
    align-items: center;
}

.th-portfolio-line-long {
    flex: 1;
    height: 1px;
    background-color: #AFAFAF;
}

.th-portfolio-ornament {
    display: flex;
    align-items: center;
}

.th-portfolio-line-short {
    margin-right: 32px;
    background-color: #AFAFAF;
}

.th-portfolio-more-btn {
    background-color: #000000;
    color: #FDB602;
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding: 10px 32px;
    border-radius: 58px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 34px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.th-portfolio-more-btn:hover {
    background-color: #1a1a1a;
    transform: translateX(5px);
}

.th-portfolio-more-btn .btn-arrow {
    font-size: 24px;
}

/* =========================================
   TESTIMONIAL SECTION (shared)
   ========================================= */
.gg2-testimonial {
    padding: 80px 0;
    background: #fff;
}

.gg2-testimonial-card {
    background: #fff9f9;
    border-radius: 20px;
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gg2-testimonial-author {
    margin-bottom: 24px;
}

.gg2-testimonial-name {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #262626;
    opacity: 0.89;
}

.gg2-testimonial-role {
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #262626;
    opacity: 0.56;
}

.gg2-testimonial-quote-mark {
    width: 33px;
    height: 23px;
    margin-bottom: 16px;
}

.gg2-testimonial-quote-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gg2-testimonial-text {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #14313a;
    max-width: 894px;
}

/* =========================================
   CTA SECTION (shared)
   ========================================= */
.gt-cta-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.gt-cta-wrapper {
    position: relative;
    max-width: 1256px;
    height: 387px;
    margin: 0 auto;
}

.gt-cta-char {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.gt-cta-char--left {
    left: 0;
    top: 158px;
    width: 221px;
    height: 203px;
    object-fit: contain;
}

.gt-cta-char--right {
    right: 0;
    top: 0;
    width: 332px;
    height: 387px;
    object-fit: contain;
}

.gt-cta-card {
    position: absolute;
    left: 138px;
    top: 71px;
    width: 967px;
    height: 304px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #000;
    border-radius: 20px;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    z-index: 2;
    padding: 43px 51px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.gt-cta-content {
    position: relative;
}

.gt-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 1.25;
    margin-bottom: 16px;
    max-width: 678px;
}

.gt-cta-desc {
    font-size: 20px;
    font-weight: 400;
    color: #2F2F2F;
    line-height: 1.25;
    margin-bottom: 30px;
    max-width: 709px;
}

.gt-cta-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    height: 42px;
    padding: 0 32px;
    background: linear-gradient(90deg, #BCBCBC 0%, #EBEBEB 100%);
    border-radius: 58px;
    color: #3F3F3F;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    width: fit-content;
    transition: opacity 0.2s;
}

.gt-cta-btn:hover {
    opacity: 0.9;
}

.gt-cta-btn-icon {
    width: 24px;
    height: 24px;
}

/* Responsive CTA */
@media (max-width: 1256px) {
    .gt-cta-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .gt-cta-char {
        display: none;
    }

    .gt-cta-card {
        position: static;
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .gg2-testimonial-card {
        padding: 40px 24px;
    }

    .gg2-testimonial-text {
        font-size: 28px;
    }

    .gt-cta-btn-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .gt-cta-btn {
        justify-content: center;
        width: 100%;
        font-size: 14px;
        gap: 12px;
        padding: 0 20px;
    }
}



/* ---- PROJECTS SECTION ---- */
.ctm-projects-section {
    padding: 80px 0 100px;
}

.ctm-projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.ctm-projects-heading {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -2.4px;
    color: #262626;
    max-width: 505px;
}

.ctm-projects-link {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #14313A;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ctm-projects-link:hover {
    color: #00D88A;
}

.ctm-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

a.ctm-project-card {
    text-decoration: none;
    color: inherit;
}

.ctm-project-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctm-project-img {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.ctm-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.ctm-project-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ctm-project-name {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #000;
    transition: color 0.3s ease;
}

.ctm-project-card:hover .ctm-project-name {
    background: var(--gradient, linear-gradient(90deg, #19D08E 0%, #26FFB1 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ctm-project-desc {
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #262626;
}

.ctm-project-desc strong {
    font-weight: 700;
}

.ctm-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ctm-project-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    background: #E8F5EC;
    color: #1A7A3C;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* ---- PROJECTS SECTION RESPONSIVE ---- */
@media screen and (max-width: 1200px) {
    .ctm-projects-heading {
        font-size: 36px;
        letter-spacing: -1.8px;
    }

    .ctm-projects-section {
        padding: 60px 0 80px;
    }
}

@media screen and (max-width: 992px) {
    .ctm-projects-heading {
        font-size: 32px;
    }

    .ctm-projects-link {
        font-size: 17px;
    }

    .ctm-project-name {
        font-size: 24px;
    }

    .ctm-project-desc {
        font-size: 17px;
    }
}

@media screen and (max-width: 768px) {
    .ctm-projects-section {
        padding: 40px 0 60px;
    }

    .ctm-projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .ctm-projects-heading {
        font-size: 28px;
        letter-spacing: -1.2px;
        max-width: 100%;
    }

    .ctm-projects-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ctm-project-name {
        font-size: 22px;
    }

    .ctm-project-desc {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .ctm-projects-section {
        padding: 30px 0 40px;
    }

    .ctm-projects-heading {
        font-size: 22px;
        letter-spacing: -1px;
    }

    .ctm-projects-link {
        font-size: 15px;
    }

    .ctm-project-name {
        font-size: 20px;
    }

    .ctm-project-desc {
        font-size: 15px;
    }

    .ctm-project-tag {
        font-size: 12px;
        padding: 3px 10px;
    }
}