/* ==================================================
   SERVICE HERO WRAPPER
================================================== */

.td-service-hero-wrapper{
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: -170px;
    min-height: 541px;
    padding-top: 0;
    overflow: hidden;
    background: var(--td-bg);
}

/* ====================================
   GRID IMAGE
==================================== */

.td-service-grid-bg{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 541px;
    z-index: 1;
    pointer-events: none;
}

.td-service-grid-bg img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================================
   THEME IMAGES
==================================== */

.td-grid-dark{
    display: none !important;
}

html[data-theme="dark"] .td-grid-light{
    display: none !important;
}

html[data-theme="dark"] .td-grid-dark{
    display: block !important;
}

/* ====================================
   HERO CONTENT AREA
==================================== */

.td-service-hero{
    position: relative;
    z-index: 5;
    width: min(1200px, calc(100% - 60px));
    height: 541px;
    margin: 0 auto;
    padding-top: 170px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

/* ====================================
   CONTENT
==================================== */

.td-service-hero-content{
    width: 100%;
    max-width: 845px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    text-align: center;
}

/* ====================================
   TAG
==================================== */

.td-service-tag{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.td-service-tag-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--td-accent);
}

.td-service-tag-text{
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--td-text);
}

/* ====================================
   TITLE
==================================== */

.td-service-title{
    margin: 0;
    font-family: "Tomorrow", sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 67px;
    letter-spacing: .2px;
    color: var(--td-text);
}

.td-service-title-red{
    color: var(--td-accent);
}

/* ====================================
   DESCRIPTION
==================================== */

.td-service-description{
    max-width: 805px;
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: .2px;
    color: var(--td-muted);
}

/* ====================================
   BUTTON
==================================== */

.td-service-hero .td-animated-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

/* ====================================
   TABLET
==================================== */

@media (max-width:1024px){

    .td-service-hero-wrapper{
        margin-top: -110px;
        min-height: 420px;
    }

    .td-service-grid-bg{
        width: 100%;
        height: 420px;
    }

    .td-service-grid-bg img{
        object-position: center top;
    }

    .td-service-hero{
        width: calc(100% - 40px);
        height: 397px;
        padding-top: 140px;
    }

    .td-service-hero-content{
        max-width: 615px;
        gap: 32px;
    }

    .td-service-title{
        max-width: 604px;
        font-size: 48px;
        line-height: 58px;
    }

    .td-service-description{
        max-width: 615px;
    }

    .td-service-hero .td-animated-btn{
        margin-top: 0;
    }

}

/* ====================================
   MOBILE
==================================== */

@media (max-width:767px){

    .td-service-hero-wrapper{
        margin-top: -110px;
        min-height: 260px;
    }

    .td-service-grid-bg{
        width: 100%;
        height: 260px;
    }

    .td-service-grid-bg img{
        object-position: center top;
    }

    .td-service-hero{
        width: calc(100% - 40px);
        height: 240px;
        padding-top: 100px;
    }

    .td-service-hero-content{
        max-width: 350px;
        gap: 15px;
    }

    .td-service-tag-dot{
        width: 6px;
        height: 6px;
    }

    .td-service-tag-text{
        font-size: 8px;
        line-height: 11px;
    }

    .td-service-title{
        max-width: 294px;
        margin: 0 auto;
        font-size: 18px;
        line-height: 22px;
    }

    .td-service-description{
        max-width: 232px;
        margin: 0 auto;
        font-size: 8px;
        line-height: 11px;
    }

    .td-service-hero .td-animated-btn{
        display: none;
    }

}


/* ********************************* Service Hero Section ENd ***************************************** */

/* ********************************* ABOUT SERVICE SECTION Start ************************************** */

.td-about-service{
    position: relative;
    padding-top: 90px;
    background: var(--td-bg);
}

/* wrapper */
.td-about-service-inner{
    max-width: 791px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* tag row */
.td-about-service-tag{
    display: flex;
    align-items: center;
    gap: 5px;
}

/* red dot */
.td-about-service-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF0000;
    flex-shrink: 0;
}

/* label */
.td-about-service-text{
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    line-height: 16px;
    color: var(--td-text);
    transition: color 0.3s ease;
}

/* paragraph */
.td-about-service-description{
    font-family: "Tomorrow", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: var(--td-text);
    margin: 0;
    transition: color 0.3s ease;
}

.word{
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.word.active{
    opacity: 1;
}
/* ==================================================
   TABLET (1024px)
================================================== */

@media (max-width:1024px){

    .td-about-service{
        padding-top: 60px ;
    }

    .td-about-service-inner{
        max-width: 645px;
        gap: 20px;
    }

    .td-about-service-description{
        font-size: 20px;
        line-height: 24px;
    }
}

/* ==================================================
   MOBILE (767px)
================================================== */

@media (max-width:767px){

    .td-about-service{
        padding-top: 40px;
    }

    .td-about-service-inner{
        max-width: 350px;
        gap: 10px;
    }

    .td-about-service-text{
        font-size: 8px;
        line-height: 11px;
    }

    .td-about-service-description{
        font-size: 14px;
        line-height: 17px;
    }
}

/* ********************************* ABOUT SERVICE SECTION End ************************************** */

/* ********************************* WHAT WE OFFER SECTION START ************************************ */

.td-container{
    width: min(1200px, calc(100% - 60px));
    margin: 0 auto;
    box-sizing: border-box;
}

.td-offer-section{
    padding-top: 90px;
    background: var(--td-bg);
}

/* ====================================
   HEADER
==================================== */

.td-offer-header{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

/* ====================================
   TAG
==================================== */

.td-offer-tag{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.td-offer-tag-dot{
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--td-accent);
}

.td-offer-tag-text{
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--td-text);
}

/* ====================================
   GRID
==================================== */

.td-offer-grid{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 35px 45px;
    width: 100%;
}

/* ====================================
   CARD
==================================== */

.td-offer-item{
    display: flex;
    align-items: center;
    gap: 22px;
    width: 100%;
    min-width: 0;
    padding: 9px 19px;
    height: 83px;
    border-radius: 40px;
    box-sizing: border-box;
    background: rgba(255,0,0,.08);
    transition: transform .3s ease;
}

.td-offer-item:hover{
    transform: translateY(-2px);
}

/* ====================================
   ICON
==================================== */

.td-offer-item-icon{
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.8);
}

.td-offer-item-icon img{
    width: 28px;
    height: 28px;
    display: block;
}

/* ====================================
   TITLE
==================================== */

.td-offer-item-title{
    margin: 0;
    flex: 1;
    min-width: 0;
    font-family: "Tomorrow", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: .2px;
    color: var(--td-text);
    overflow-wrap: anywhere;
}


/* ====================================
   DARK MODE
==================================== */

html[data-theme="dark"] .td-offer-item{
    background: rgba(23,22,21,1);
}

/* ====================================
   TABLET
==================================== */

@media (max-width:1024px){

       .td-container{
        width: calc(100% - 40px);
    }

    .td-offer-section{
        padding-top: 60px ;
    }

    .td-offer-grid{
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 25px;
    }

    .td-offer-item-title{
        font-size: 14px;
        line-height: 20px;
    }

}

/* ====================================
   MOBILE
==================================== */

@media (max-width:767px){

      .td-container{
        width: calc(100% - 40px);
    }

    .td-offer-section{
        padding-top: 40px ;
    }

    .td-offer-header{
        margin-bottom: 30px;
    }

    .td-offer-tag-text{
        font-size: 8px;
        line-height: 11px;
    }

    .td-offer-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .td-offer-item{
        min-height: 70px;
        height: auto;
        gap: 16px;
        padding: 12px 15px;
    }

    .td-offer-item-icon{
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }

    .td-offer-item-icon img{
        width: 22px;
        height: 22px;
    }

    .td-offer-item-title{
        font-size: 12px;
        line-height: 18px;
    }

}

/* *************************************** WHAT WE OFFER SECTION END ************************************* */

/* **************************************   SERVICE PROCESS SECTION START ***************************** */

.td-service-process{
    padding-top:90px ;
    background:var(--td-bg);
}

/* ====================================
   CONTAINER
==================================== */

.td-service-process .td-container{
    width:1200px;
    max-width:calc(100% - 40px);
    margin:0 auto;
}

/* ====================================
   HEADING
==================================== */

.td-service-process-head{
    display:flex;
    justify-content:center;
    margin-bottom:50px;
}

.td-service-process-tag{
    display:flex;
    align-items:center;
    gap:5px;
}

.td-service-process-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#FF0000;
    flex-shrink:0;
}

.td-service-process-label{
    font-family:"JetBrains Mono",monospace;
    font-size:12px;
    font-weight:400;
    line-height:16px;
    color:var(--td-text);
}

/* ====================================
   LIST
==================================== */

.td-service-process-list{
    width:100%;
}

/* ====================================
   ITEM
==================================== */

.td-service-process-item{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    min-height:138px;
    padding:50px 40px;
    box-sizing:border-box;
    border-bottom:1px solid rgba(0,0,0,.10);
    background:rgba(255,0,0,.06);
    transition:.35s ease;
}

/* ====================================
   LEFT
==================================== */

.td-service-process-left{
    flex:0 0 390px;
}

.td-service-process-left h3{
    width: 405px;
    margin:0;
    font-family:"Tomorrow",sans-serif;
    font-size:30px;
    font-weight:600;
    line-height:36px;
    letter-spacing:.2px;
    color:var(--td-text);
    transition:.3s;
}

/* ====================================
   RIGHT
==================================== */

.td-service-process-right{

    width:380px;
    max-width:100%;
}

.td-service-process-right p{

    margin:0;
    font-family:"Nunito",sans-serif;
    font-size:14px;
    font-weight:400;
    line-height:19px;
    letter-spacing:.2px;
    color:var(--td-text);
    transition:.3s;
}

/* ====================================
   HOVER
==================================== */

.td-service-process-item:hover{

    background: rgba(255, 0, 0, 0.1);

}


/* ====================================
   DARK MODE
==================================== */

html[data-theme="dark"] .td-service-process-item{

    border-color:rgba(255,255,255,.08);

    background: rgba(15, 16, 17, 1);

}

html[data-theme="dark"] .td-service-process-item:hover{

    background: rgba(23, 22, 21, 1);
;
}

@media (max-width:1024px){

    .td-service-process .td-container{
        width:984px;
        max-width:calc(100% - 40px);
    }

    .td-service-process-item{

        padding:50px 40px;
        min-height:138px;

        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:40px;
    }

    .td-service-process-left{

        flex:1;
        min-width:0;
    }

    .td-service-process-right{

        flex:0 0 380px;
        max-width:380px;
    }

    .td-service-process-left h3{

        width: auto;
        font-size:30px;
        line-height:36px;
    }

    .td-service-process-right p{

        font-size:14px;
        line-height:19px;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:767px){

    .td-service-process{
        padding-top:40px;
    }

    .td-service-process .td-container{
        width:350px;
        max-width:calc(100% - 40px);
    }

    .td-service-process-head{
        margin-bottom:20px;
        justify-content:center;
    }

    /* Tag */

    .td-service-process-tag-text{
        font-size:8px;
        line-height:11px;
    }

    /* Item */

    .td-service-process-item{

        min-height:121px;
        padding:30px;
        gap:15px;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
    }

    /* Left */

    .td-service-process-left{
        width:100%;
        flex:none;
    }

    .td-service-process-left h3{
        margin:0;
        font-size:12px;
        line-height:14px;
    }

    /* Right */

    .td-service-process-right{
        width:100%;
        max-width:none;
        flex:none;
    }

    .td-service-process-right p{
        margin:0;
        font-size:12px;
        line-height:16px;
    }

}

/* **************************************   SERVICE PROCESS SECTION END ***************************** */

/****************************************  SERVICE FAQ SECTION START ****************************************/

.td-service-faq-section{
    width:min(900px,calc(100% - 40px));
    margin:0 auto;
    padding:100px 0;
}

/********************************
HEADER
********************************/

.td-service-faq-header{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:40px;
    margin-bottom:40px;
}

.td-service-section-tag{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
}

.td-service-section-tag span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ff0000;
}

.td-service-section-tag p{
    margin:0;
    font-family:"JetBrains Mono";
    font-size:12px;
    line-height:16px;
    color:var(--td-text);
}

.td-service-faq-header h2{
    margin:0;
    max-width:531px;
    text-align:center;
    font-family:"Tomorrow",sans-serif;
    font-size:32px;
    font-weight:700;
    line-height:38px;
    letter-spacing:.2px;
    color:var(--td-text);
}

/********************************
FAQ LIST
********************************/

.td-service-faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.td-service-faq-item{
    border-radius:16px;
    overflow:hidden;
    background:rgba(255,0,0,.15);
}

/********************************
QUESTION
********************************/

.td-service-faq-question{
    width:100%;
    min-height:74px;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    border:none;
    background:transparent;
    cursor:pointer;
    text-align:left;
}

.td-service-faq-question:hover,
.td-service-faq-question:focus{
    background:transparent;
    outline:none;
    box-shadow:none;
}

.td-service-faq-question span{
    flex:1;
    font-family:"Tomorrow", sans-serif;
    font-weight:500;
    font-size:18px;
    line-height:25px;
    letter-spacing:-0.36px;
    color:var(--td-text);
}

.td-service-faq-question i{
    width:22px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-style:normal;
    font-size:22px;
    color:var(--td-text);
}

.td-service-faq-question i::before{
    content:"+";
}

.td-service-faq-item.active .td-service-faq-question i::before{
    content:"−";
}

/********************************
ANSWER
********************************/

.td-service-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.td-service-faq-answer p{
    margin:0;
    padding:0 20px 20px;
    font-family:"Nunito",sans-serif;
    font-size:14px;
    line-height:22px;
    color:var(--td-muted);
}

.td-service-faq-item.active .td-service-faq-answer{
    max-height:250px;
}

/********************************
DARK MODE
********************************/

[data-theme="dark"] .td-service-section-tag p{
    color:#fff;
}

[data-theme="dark"] .td-service-faq-item{
    background:#171615;
}

[data-theme="dark"] .td-service-faq-question span,
[data-theme="dark"] .td-service-faq-question i{
    color:#fff;
}

/********************************
TABLET
********************************/

@media (max-width:1024px){

    .td-service-faq-section{
        width:min(900px,calc(100% - 40px));
        padding:80px 0;
    }

    .td-service-faq-header{
        gap:30px;
    }

    .td-service-faq-header h2{
        font-size:28px;
        line-height:34px;
    }

    .td-service-faq-question{
        min-height:74px;
    }

    .td-service-faq-question span{
        font-size:17px;
    }

}

/********************************
MOBILE
********************************/

@media (max-width:767px){

    .td-service-faq-section{
        width:min(350px,calc(100% - 40px));
        padding:60px 0;
    }

    .td-service-faq-header{
        gap:20px;
        margin-bottom:20px;
    }

    .td-service-section-tag{
        gap:5px;
    }

    .td-service-section-tag span{
        width:4px;
        height:4px;
    }

    .td-service-section-tag p{
        font-size:8px;
        line-height:11px;
    }

    .td-service-faq-header h2{
        width:233px;
        font-size:16px;
        line-height:19px;
    }

    .td-service-faq-wrapper{
        gap:10px;
    }

    .td-service-faq-question{
        min-height:74px;
        padding:16px;
        gap:12px;
    }

    .td-service-faq-question span{
        font-family:"Nunito",sans-serif;
        font-size:12px;
        line-height:16px;
        letter-spacing:.2px;
    }

    .td-service-faq-question i{
        font-size:18px;
        width:18px;
        height:18px;
    }

    .td-service-faq-answer p{
        padding:0 16px 16px;
        font-size:12px;
        line-height:18px;
    }

}

/****************************************  SERVICE FAQ SECTION END ****************************************/
