@font-face {
    font-family: "Guminert";
    src: url("/fonts/Century Gothic.otf") format("truetype");
    font-weight: normal;
    font-style: normal;
}



/*==================================================
        CSS VARIABLES
==================================================*/

:root{

    --primary:#0F766E;
    --secondary:#14B8A6;
    --dark:#0F172A;
    --text:#475569;
    --white:#ffffff;
    --light:#F8FAFC;
    --border:#E2E8F0;
    --shadow:0 15px 45px rgba(0,0,0,.08);
    --radius:18px;
    --transition:.35s ease;

}


/*==================================================
        RESET
==================================================*/


img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.wire-container{

    width:90%;
    max-width:1280px;
    margin:auto;

}


/*==================================================
        COMMON SECTION
==================================================*/

section{

    padding:50px 0 0px 0;

}

.section-title{

    text-align:center;
    max-width:1000px;
    margin:0 auto 70px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.section-title span{

    color:#01526d;
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
    text-transform:uppercase;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 1px;

}

.section-title h2{

    font-size:46px;
    margin:18px 0;
    color:var(--dark);
    line-height:1.2;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.section-title p{

    color:var(--text);
    font-size:18px;
    line-height: 1.8;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;
}


/*==================================================
        BUTTONS
==================================================*/

.primary-btn,
.secondary-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    transition:var(--transition);
    font-weight:600;
    font-size:15px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.primary-btn{

    background: white;
    color: #01526d;
}

.primary-btn:hover{

    transform:translateY(-5px);

}

.secondary-btn{

    border:2px solid #01526d;
    color:#01526d;

}

.secondary-btn:hover{

    background:#01526d;
    color:#fff;

}


/*==================================================
        HERO SECTION
==================================================*/

.wireframe-hero{

    padding:150px 0 110px;
    background-color: #045b77;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.wireframe-hero .wire-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;

}

.service-tag{

    display:inline-block;
    background:#DFFCF8;
    color:#01526d;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:25px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.wire-hero-left h1{

    font-size:62px;
    line-height:1.15;
    margin-bottom:25px;
    color: white;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.wire-hero-left h1 span{

    color:#01526d;

}

.wire-hero-left p{

    color:var(--text);
    font-size:18px;
    margin-bottom:40px;
    color: white;

}

.hero-btns{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.wire-hero-right{

    position:relative;

}

.wire-hero-right img{

    box-shadow:var(--shadow);
}


/* Floating Circle */

.wire-hero-right::before{

    content:"";
    position:absolute;
    width:170px;
    height:170px;
    background:rgba(20,184,166,.15);
    border-radius:50%;
    top:-40px;
    right:-40px;
    z-index:-1;

}

.wire-hero-right::after{

    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(15,118,110,.12);
    border-radius:50%;
    bottom:-25px;
    left:-30px;
    z-index:-1;

}


/*==================================================
        ABOUT
==================================================*/

.wireframe-about{

    background:#fff;

}

.wireframe-about p{

    font-size:18px;
    color:var(--text);

}


/*==================================================
        COMMON CARD
==================================================*/

.service-card,
.process-card,
.project-card,
.website-card,
.tool-card,
.deliverable-card,
.industry-card{

    background:#fff;
    border-radius:22px;
    box-shadow:var(--shadow);
    transition:var(--transition);

}

.service-card:hover,
.process-card:hover,
.project-card:hover,
.website-card:hover,
.tool-card:hover,
.deliverable-card:hover,
.industry-card:hover{

    transform:translateY(-12px);

}

/*==================================================
                RESPONSIVE
==================================================*/

/* Large Desktop */
@media screen and (max-width:1440px){

    .wireframe-hero{
        padding:140px 0 100px;
    }

    .wireframe-hero .wire-container{
        gap:60px;
    }

    .wire-hero-left h1{
        font-size:56px;
    }

    .section-title{
        max-width:900px;
    }

    .section-title h2{
        font-size:42px;
    }

}

/* Laptop */
@media screen and (max-width:1152px){

    .wireframe-hero{
        padding:130px 0 90px;
    }

    .wireframe-hero .wire-container{
        gap:45px;
    }

    .wire-hero-left h1{
        font-size:48px;
    }

    .wire-hero-left p{
        font-size:17px;
    }

    .section-title{
        margin:0 auto 60px;
    }

    .section-title h2{
        font-size:38px;
    }

    .primary-btn,
    .secondary-btn{
        padding:14px 28px;
    }

}

/* Tablets */
@media (max-width:992px){

    section{
        padding:70px 0 0;
    }

    .wireframe-hero{
        padding:120px 0 70px;
    }

    .wireframe-hero .wire-container{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .wire-hero-left{
        order:1;
    }

    .wire-hero-right{
        order:2;
        max-width:600px;
        margin:auto;
    }

    .wire-hero-right img{
        width:100%;
    }

    .hero-btns{
        justify-content:center;
    }

    .wire-hero-left h1{
        font-size:44px;
    }

    .wire-hero-left p{
        font-size:17px;
        margin-bottom:30px;
    }

    .section-title{
        margin-bottom:50px;
        padding:0 20px;
    }

    .section-title h2{
        font-size:36px;
    }

    .section-title p{
        font-size:17px;
    }

}

/* Large Phones */
@media (max-width:768px){

    section{
        padding:60px 0 0;
    }

    .wireframe-hero{
        padding:100px 0 60px;
    }

    .wire-hero-left h1{
        font-size:38px;
        line-height:1.25;
    }

    .wire-hero-left p{
        font-size:16px;
    }

    .hero-btns{
        gap:15px;
    }

    .primary-btn,
    .secondary-btn{
        padding:13px 24px;
        font-size:14px;
    }

    .section-title{
        margin-bottom:45px;
        padding:0 15px;
    }

    .section-title span{
        font-size:13px;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:16px;
    }

    .wire-hero-right::before{
        width:120px;
        height:120px;
    }

    .wire-hero-right::after{
        width:90px;
        height:90px;
    }

}

/* Medium Phones */
@media (max-width:576px){

    section{
        padding:50px 0 0;
    }

    .wireframe-hero{
        padding:90px 0 50px;
    }

    .service-tag{
        font-size:12px;
        padding:8px 15px;
    }

    .wire-hero-left h1{
        font-size:32px;
    }

    .wire-hero-left p{
        font-size:15px;
    }

    .hero-btns{
        flex-direction:column;
        align-items:center;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:260px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:15px;
        line-height:1.7;
    }

    .service-card,
    .process-card,
    .project-card,
    .website-card,
    .tool-card,
    .deliverable-card,
    .industry-card{
        border-radius:18px;
    }

}

/* Small Phones */
@media (max-width:480px){

    .wireframe-hero{
        padding:80px 0 45px;
    }

    .wire-hero-left h1{
        font-size:28px;
    }

    .wire-hero-left p{
        font-size:14px;
    }

    .section-title span{
        font-size:12px;
        letter-spacing:1px;
    }

    .section-title h2{
        font-size:24px;
    }

    .section-title p{
        font-size:14px;
    }

    .primary-btn,
    .secondary-btn{
        max-width:100%;
        font-size:14px;
        padding:12px 20px;
    }

    .wire-hero-right::before,
    .wire-hero-right::after{
        display:none;
    }

}

/* Extra Small Phones */
@media (max-width:320px){

    .wireframe-hero{
        padding:70px 0 40px;
    }

    .service-tag{
        font-size:11px;
        padding:7px 12px;
    }

    .wire-hero-left h1{
        font-size:24px;
        line-height:1.3;
    }

    .wire-hero-left p{
        font-size:13px;
    }

    .section-title{
        padding:0 10px;
        margin-bottom:35px;
    }

    .section-title span{
        font-size:11px;
    }

    .section-title h2{
        font-size:20px;
    }

    .section-title p{
        font-size:13px;
        line-height:1.6;
        text-align: justify;
    }

    .primary-btn,
    .secondary-btn{
        font-size:13px;
        padding:11px 16px;
    }

    .service-card,
    .process-card,
    .project-card,
    .website-card,
    .tool-card,
    .deliverable-card,
    .industry-card{
        border-radius:14px;
    }

}

/*==================================================
        ICON STYLE
==================================================*/

.icon{

    width:75px;
    height:75px;
    background:linear-gradient(135deg,#01526d,var(--secondary));
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;

}


/*==================================================
        ANIMATIONS
==================================================*/

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}


/*==================================================
        SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#01526d;
    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#F1F5F9;

}

/*==================================================
        WHAT WE DESIGN
==================================================*/

.wireframe-services{

    background:#F8FAFC;

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    padding-bottom: 100px;
}

.service-card{

    padding:40px 30px;
    border:1px solid var(--border);
    position:relative;
    overflow:hidden;

}

.service-card::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:5px;
    background:linear-gradient(90deg,#01526d,var(--secondary));
    transition:.4s;

}

.service-card:hover::before{

    width:100%;

}

.service-card h3{

    font-size:24px;
    margin-bottom:18px;
    color:var(--dark);
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.service-card p{

    color:var(--text);
    font-size:16px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.service-card:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(15,118,110,.12);

}

.service-card .icon{

    transition:.35s;

}

.service-card:hover .icon{

    transform:rotate(-10deg) scale(1.08);

}




/*==================================================
        OUR PROCESS
==================================================*/

.wireframe-process{

    background:#F8FAFC;

}

.process-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.process-card{

    padding:40px 35px;
    border:1px solid var(--border);
    position:relative;
    overflow:hidden;

}

.process-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.step-number{

    position:absolute;
    top:22px;
    right:25px;

    font-size:55px;
    font-weight:700;

    color:rgba(15,118,110,.08);

    line-height:1;

}

.process-card i{

    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #01526d,
        var(--secondary)
    );

    color:#fff;
    font-size:28px;

    margin-bottom:25px;

}

.process-card h3{

    font-size:24px;
    margin-bottom:16px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.process-card p{

    color:var(--text);
    font-size:16px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;    
}

.process-card::before{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:0;

    background:linear-gradient(
        180deg,
        rgba(20,184,166,.04),
        rgba(20,184,166,.10)
    );

    transition:.35s;

    z-index:0;

}

.process-card>*{

    position:relative;
    z-index:2;

}

.process-card:hover::before{

    height:100%;

}



/*==================================================
        PROCESS CONNECTOR
==================================================*/

.process-grid{

    position:relative;

}

.process-grid::before{

    content:"";

    position:absolute;

    left:0;
    top:50%;

    width:100%;
    height:2px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(20,184,166,.15),
        transparent
    );

    z-index:0;

}



/*==================================================
        COMMON IMAGE STYLE
==================================================*/

.wireframe-benefits img,
.wire-hero-right img{

    transition:.4s;

}

.wireframe-benefits img:hover,
.wire-hero-right img:hover{

    transform:scale(1.03);

}

/*==================================================
                RESPONSIVE
==================================================*/

/* Large Desktop */
@media screen and (max-width:1440px){

    .services-grid,
    .process-grid{
        gap:25px;
    }

    .service-card,
    .process-card{
        padding:35px 28px;
    }

    .service-card h3,
    .process-card h3{
        font-size:22px;
    }

}

/* Laptop */
@media screen and (max-width:1152px){

    .services-grid,
    .process-grid{
        gap:22px;
    }

    .service-card,
    .process-card{
        padding:32px 24px;
    }

    .icon,
    .process-card i{
        width:68px;
        height:68px;
        font-size:26px;
    }

    .step-number{
        font-size:46px;
    }

}

/* Tablets */
@media (max-width:992px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        padding-bottom:70px;
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .process-grid::before{
        display:none;
    }

    .service-card,
    .process-card{
        padding:28px 22px;
    }

    .service-card h3,
    .process-card h3{
        font-size:21px;
    }

    .service-card p,
    .process-card p{
        font-size:15px;
    }

    .icon,
    .process-card i{
        width:64px;
        height:64px;
        font-size:24px;
        margin-bottom:20px;
    }

    .step-number{
        font-size:40px;
        top:18px;
        right:20px;
    }

}

/* Large Phones */
@media (max-width:768px){

    .services-grid,
    .process-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .services-grid{
        padding-bottom:60px;
    }

    .service-card,
    .process-card{
        padding:25px 20px;
    }

    .service-card h3,
    .process-card h3{
        font-size:20px;
    }

    .service-card p,
    .process-card p{
        font-size:15px;
        line-height:1.7;
    }

    .icon,
    .process-card i{
        width:60px;
        height:60px;
        font-size:22px;
        border-radius:15px;
    }

    .step-number{
        font-size:34px;
    }

}

/* Medium Phones */
@media (max-width:576px){

    .services-grid,
    .process-grid{
        gap:18px;
    }

    .service-card,
    .process-card{
        padding:22px 18px;
        border-radius:18px;
    }

    .service-card h3,
    .process-card h3{
        font-size:19px;
    }

    .service-card p,
    .process-card p{
        font-size:14px;
    }

    .icon,
    .process-card i{
        width:55px;
        height:55px;
        font-size:20px;
        border-radius:14px;
        margin-bottom:18px;
    }

    .step-number{
        font-size:30px;
        top:15px;
        right:16px;
    }

}

/* Small Phones */
@media (max-width:480px){

    .services-grid{
        padding-bottom:45px;
    }

    .service-card,
    .process-card{
        padding:20px 16px;
        border-radius:16px;
    }

    .service-card h3,
    .process-card h3{
        font-size:18px;
    }

    .service-card p,
    .process-card p{
        font-size:14px;
        line-height:1.6;
    }

    .icon,
    .process-card i{
        width:50px;
        height:50px;
        font-size:18px;
        border-radius:12px;
    }

    .step-number{
        font-size:26px;
    }

}

/* Extra Small Phones */
@media (max-width:320px){

    .services-grid,
    .process-grid{
        gap:15px;
    }

    .service-card,
    .process-card{
        padding:18px 14px;
        border-radius:14px;
    }

    .service-card h3,
    .process-card h3{
        font-size:16px;
    }

    .service-card p,
    .process-card p{
        font-size:13px;
        line-height:1.6;
    }

    .icon,
    .process-card i{
        width:45px;
        height:45px;
        font-size:16px;
        border-radius:10px;
        margin-bottom:15px;
    }

    .step-number{
        font-size:22px;
        top:12px;
        right:14px;
    }

}



/*==================================================
        SECTION SPACING
==================================================*/

.wireframe-services,
.wireframe-benefits,
.wireframe-process{

    position:relative;

}

.wireframe-services::after,
.wireframe-process::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(20,184,166,.05);

    right:-60px;
    bottom:-60px;

    z-index:0;

}

.wireframe-services .wire-container,
.wireframe-benefits .wire-container,
.wireframe-process .wire-container{

    position:relative;
    z-index:2;

}

/*==================================================
            WHY CHOOSE US
==================================================*/

.wireframe-choose{
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.wireframe-choose::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(20,184,166,.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.wireframe-choose::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(15,118,110,.04);
    border-radius:50%;
    bottom:-90px;
    left:-90px;
}

.wireframe-choose .wire-container{

    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;

}

.choose-left span{

    color:#01526d;
    text-transform:uppercase;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.choose-left h2{

    font-size:44px;
    line-height:1.2;
    margin:18px 0 25px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.choose-left>p{

    color:var(--text);
    margin-bottom:40px;
    font-size:17px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.choose-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    padding-bottom: 100px;
}

.choose-item{

    display:flex;
    gap:18px;
    align-items:flex-start;

    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;

    padding:24px;

    transition:var(--transition);
    box-shadow:0 10px 25px rgba(0,0,0,.04);

}

.choose-item:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(15,118,110,.10);

}

.choose-item i{

    width:52px;
    height:52px;

    min-width:52px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #01526d,
        var(--secondary)
    );

    color:#fff;
    font-size:18px;

}

.choose-item h4{

    font-size:18px;
    margin-bottom:8px;
    color:var(--dark);
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.choose-item p{

    color:var(--text);
    font-size:15px;
    line-height:1.7;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.choose-right{

    position:relative;

}

.choose-right img{

    width:100%;
    border-radius:22px;
    box-shadow:var(--shadow);
    transition:.4s;

}

.choose-right img:hover{

    transform:scale(1.03);

}



/*==================================================
                TOOLS SECTION
==================================================*/

.wireframe-tools{

    background:#F8FAFC;
    position:relative;

}

.tools-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.tool-card{

    background:#fff;
    border:1px solid var(--border);

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    transition:var(--transition);

    position:relative;
    overflow:hidden;

}

.tool-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:0;

    background:linear-gradient(
        180deg,
        rgba(20,184,166,.05),
        rgba(20,184,166,.10)
    );

    transition:.4s;

}

.tool-card:hover::before{

    height:100%;

}

.tool-card>*{

    position:relative;
    z-index:2;

}

.tool-card:hover{

    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(15,118,110,.12);

}

.tool-card i{

    width:85px;
    height:85px;

    margin:auto auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #01526d,
        var(--secondary)
    );

    color:#fff;

    font-size:34px;

    transition:.35s;

}

.tool-card:hover i{

    transform:rotate(-12deg) scale(1.08);

}

.tool-card h3{

    font-size:24px;
    margin-bottom:15px;
    color:var(--dark);

}

.tool-card p{

    color:var(--text);
    font-size:16px;
    line-height:1.8;

}

/*==================================================
                RESPONSIVE
==================================================*/

/* Large Desktop */
@media screen and (max-width:1440px){

    .wireframe-choose .wire-container{
        gap:60px;
    }

    .choose-left h2{
        font-size:40px;
    }

    .choose-list{
        gap:20px;
    }

    .tools-grid{
        gap:25px;
    }

}

/* Laptop */
@media screen and (max-width:1152px){

    .wireframe-choose .wire-container{
        gap:45px;
    }

    .choose-left h2{
        font-size:36px;
    }

    .choose-list{
        gap:18px;
        padding-bottom:80px;
    }

    .choose-item{
        padding:22px;
    }

    .tools-grid{
        gap:22px;
    }

    .tool-card{
        padding:38px 25px;
    }

    .tool-card i{
        width:75px;
        height:75px;
        font-size:30px;
    }

}

/* Tablets */
@media (max-width:992px){

    .wireframe-choose .wire-container{
        grid-template-columns:1fr;
        gap:45px;
    }

    .choose-left{
        text-align:center;
    }

    .choose-right{
        max-width:600px;
        margin:auto;
    }

    .choose-list{
        grid-template-columns:repeat(2,1fr);
        padding-bottom:60px;
    }

    .choose-left h2{
        font-size:34px;
    }

    .tools-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .tool-card{
        padding:35px 22px;
    }

    .tool-card h3{
        font-size:22px;
    }

    .tool-card p{
        font-size:15px;
    }

}

/* Large Phones */
@media (max-width:768px){

    .wireframe-services::after,
    .wireframe-process::after,
    .wireframe-choose::before,
    .wireframe-choose::after{
        display:none;
    }

    .wireframe-choose .wire-container{
        gap:35px;
    }

    .choose-left{
        text-align:left;
    }

    .choose-left span{
        font-size:13px;
    }

    .choose-left h2{
        font-size:30px;
    }

    .choose-left>p{
        font-size:16px;
        margin-bottom:30px;
    }

    .choose-list{
        grid-template-columns:1fr;
        gap:18px;
        padding-bottom:50px;
    }

    .choose-item{
        padding:20px;
    }

    .choose-item h4{
        font-size:17px;
    }

    .choose-item p{
        font-size:14px;
    }

    .tools-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .tool-card{
        padding:30px 20px;
    }

    .tool-card i{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .tool-card h3{
        font-size:21px;
    }

}

/* Medium Phones */
@media (max-width:576px){

    .choose-left h2{
        font-size:28px;
        line-height:1.3;
    }

    .choose-left>p{
        font-size:15px;
    }

    .choose-item{
        gap:15px;
        padding:18px;
        border-radius:16px;
    }

    .choose-item i{
        width:46px;
        height:46px;
        min-width:46px;
        font-size:16px;
    }

    .choose-item h4{
        font-size:16px;
    }

    .choose-item p{
        font-size:14px;
        line-height:1.6;
    }

    .tool-card{
        padding:28px 18px;
        border-radius:18px;
    }

    .tool-card i{
        width:65px;
        height:65px;
        font-size:24px;
        margin-bottom:20px;
    }

    .tool-card h3{
        font-size:20px;
    }

    .tool-card p{
        font-size:14px;
    }

}

/* Small Phones */
@media (max-width:480px){

    .choose-left span{
        font-size:12px;
    }

    .choose-left h2{
        font-size:24px;
    }

    .choose-item{
        padding:16px;
    }

    .choose-item i{
        width:42px;
        height:42px;
        min-width:42px;
        border-radius:12px;
        font-size:15px;
    }

    .choose-item h4{
        font-size:15px;
    }

    .choose-item p{
        font-size:13px;
    }

    .tool-card{
        padding:24px 16px;
        border-radius:16px;
    }

    .tool-card i{
        width:58px;
        height:58px;
        font-size:22px;
    }

    .tool-card h3{
        font-size:18px;
    }

    .tool-card p{
        font-size:13px;
        line-height:1.6;
    }

}

/* Extra Small Phones */
@media (max-width:320px){

    .choose-left span{
        font-size:11px;
    }

    .choose-left h2{
        font-size:20px;
    }

    .choose-left>p{
        font-size:13px;
    }

    .choose-item{
        padding:14px;
        gap:12px;
    }

    .choose-item i{
        width:38px;
        height:38px;
        min-width:38px;
        font-size:14px;
    }

    .choose-item h4{
        font-size:14px;
    }

    .choose-item p{
        font-size:12px;
    }

    .tool-card{
        padding:20px 14px;
        border-radius:14px;
    }

    .tool-card i{
        width:50px;
        height:50px;
        font-size:20px;
        margin-bottom:15px;
    }

    .tool-card h3{
        font-size:16px;
    }

    .tool-card p{
        font-size:12px;
        line-height:1.5;
    }

}


/*==================================================
            FLOATING DECORATION
==================================================*/

.wireframe-tools::before{

    content:"";

    position:absolute;

    width:170px;
    height:170px;

    border-radius:50%;

    background:rgba(20,184,166,.05);

    top:-70px;
    right:-70px;

}

.wireframe-tools::after{

    content:"";

    position:absolute;

    width:130px;
    height:130px;

    border-radius:50%;

    background:rgba(15,118,110,.05);

    left:-60px;
    bottom:-60px;

}



/*==================================================
        ICON HOVER GLOW
==================================================*/

.tool-card:hover i,
.choose-item:hover i{

    box-shadow:0 10px 30px rgba(20,184,166,.35);

}



/*==================================================
        SMOOTH ENTRANCE
==================================================*/

.choose-item,
.tool-card{

    animation:fadeUp .8s ease both;

}

/*==================================================
                PROJECTS SECTION
==================================================*/

.wireframe-projects{
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.wireframe-projects::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(20,184,166,.05);
    top:-120px;
    left:-120px;
}

.wireframe-projects::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(15,118,110,.05);
    right:-80px;
    bottom:-80px;
}

.wireframe-projects .wire-container{
    position:relative;
    z-index:2;
}


/*==================================================
                GRID
==================================================*/

.projects-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    padding-bottom: 150px;
}


/*==================================================
                PROJECT CARD
==================================================*/

.project-card{

    background:#fff;
    border-radius:22px;
    overflow:hidden;

    border:1px solid var(--border);

    transition:var(--transition);

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.project-card:hover{

    transform:translateY(-12px);
    box-shadow:0 22px 50px rgba(15,118,110,.15);

}


/*==================================================
                IMAGE
==================================================*/

.project-image{

    position:relative;
    overflow:hidden;
    height:260px;

}

.project-image img{

    width:100%;
    height:100%;
    object-fit:contain;

    transition:.5s;

}

.project-card:hover .project-image img{

    transform:scale(1.08);

}


/* Dark Overlay */

.project-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,0)
    );

    opacity:0;

    transition:.4s;

    z-index:1;

}

.project-card:hover .project-image::before{

    opacity:1;

}


/*==================================================
            CONTENT
==================================================*/

.project-content{

    padding:30px;

}

.project-category{

    display:inline-block;

    background:#DDFCF6;

    color:#01526d;

    padding:8px 16px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:18px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.project-content h3{

    font-size:28px;

    margin-bottom:8px;

    color:var(--dark);

    line-height:1.3;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.project-content h4{

    color:#01526d;

    font-size:20px;

    margin-bottom:18px;

    font-weight:600;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}

.project-content p{

    color:var(--text);

    line-height:1.8;

    font-size:15px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
letter-spacing: 0.5px;

}


/*==================================================
            HOVER BORDER
==================================================*/

.project-card{

    position:relative;

}

.project-card::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:0;
    height:4px;

    background:linear-gradient(
        90deg,
        #01526d,
        var(--secondary)
    );

    transition:.4s;

}

.project-card:hover::after{

    width:100%;

}


/*==================================================
            OPTIONAL BUTTON
==================================================*/

.project-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:22px;

    color:#01526d;

    font-weight:600;

    transition:.3s;

}

.project-btn i{

    transition:.3s;

}

.project-btn:hover{

    color:var(--secondary);

}

.project-btn:hover i{

    transform:translateX(6px);

}


/*==================================================
            IMAGE ZOOM ICON
==================================================*/

.project-view{

    position:absolute;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%) scale(.5);

    opacity:0;

    transition:.35s;

    z-index:3;

}

.project-view i{

    color:#01526d;
    font-size:22px;

}

.project-card:hover .project-view{

    opacity:1;
    transform:translate(-50%,-50%) scale(1);

}


/*==================================================
            FADE ANIMATION
==================================================*/

.project-card{

    animation:fadeUp .8s ease both;

}


/*==================================================
                RESPONSIVE
==================================================*/

/* Large Desktop */
@media screen and (max-width:1440px){

    .projects-grid{
        gap:30px;
        padding-bottom:120px;
    }

    .project-image{
        height:240px;
    }

    .project-content{
        padding:28px;
    }

    .project-content h3{
        font-size:26px;
    }

}

/* Laptop */
@media screen and (max-width:1152px){

    .projects-grid{
        gap:25px;
        padding-bottom:100px;
    }

    .project-image{
        height:220px;
    }

    .project-content{
        padding:24px;
    }

    .project-content h3{
        font-size:24px;
    }

    .project-content h4{
        font-size:16px;
    }

    .project-view{
        width:55px;
        height:55px;
    }

}

/* Tablets */
@media (max-width:992px){

    .wireframe-tools::before,
    .wireframe-tools::after,
    .wireframe-projects::before,
    .wireframe-projects::after{
        display:none;
    }

    .projects-grid{
        grid-template-columns:1fr;
        gap:25px;
        padding-bottom:80px;
    }

    .project-image{
        height:260px;
    }

    .project-content{
        padding:24px;
    }

    .project-content h3{
        font-size:24px;
    }

    .project-content h4{
        font-size:16px;
    }

    .project-content p{
        font-size:15px;
    }

}

/* Large Phones */
@media (max-width:768px){

    .projects-grid{
        gap:20px;
        padding-bottom:70px;
    }

    .project-card{
        border-radius:18px;
    }

    .project-image{
        height:220px;
    }

    .project-content{
        padding:22px;
    }

    .project-category{
        font-size:12px;
        padding:7px 14px;
    }

    .project-content h3{
        font-size:22px;
    }

    .project-content h4{
        font-size:15px;
    }

    .project-content p{
        font-size:14px;
        line-height:1.7;
    }

    .project-view{
        width:50px;
        height:50px;
    }

    .project-view i{
        font-size:18px;
    }

}

/* Medium Phones */
@media (max-width:576px){

    .projects-grid{
        gap:18px;
        padding-bottom:60px;
    }

    .project-card{
        border-radius:16px;
    }

    .project-image{
        height:200px;
    }

    .project-content{
        padding:18px;
    }

    .project-category{
        font-size:11px;
        padding:6px 12px;
    }

    .project-content h3{
        font-size:20px;
        line-height:1.3;
    }

    .project-content h4{
        font-size:14px;
    }

    .project-content p{
        font-size:14px;
    }

    .project-btn{
        font-size:14px;
        gap:8px;
    }

}

/* Small Phones */
@media (max-width:480px){

    .projects-grid{
        padding-bottom:50px;
    }

    .project-card{
        border-radius:15px;
    }

    .project-image{
        height:180px;
    }

    .project-content{
        padding:16px;
    }

    .project-category{
        font-size:10px;
        padding:6px 10px;
    }

    .project-content h3{
        font-size:18px;
    }

    .project-content h4{
        font-size:13px;
    }

    .project-content p{
        font-size:13px;
        line-height:1.6;
    }

    .project-btn{
        font-size:13px;
    }

    .project-view{
        width:45px;
        height:45px;
    }

    .project-view i{
        font-size:16px;
    }

}

/* Extra Small Phones */
@media (max-width:320px){

    .projects-grid{
        gap:15px;
        padding-bottom:40px;
    }

    .project-card{
        border-radius:14px;
    }

    .project-image{
        height:150px;
    }

    .project-content{
        padding:14px;
    }

    .project-category{
        font-size:9px;
        padding:5px 8px;
    }

    .project-content h3{
        font-size:16px;
    }

    .project-content h4{
        font-size:12px;
    }

    .project-content p{
        font-size:12px;
        line-height:1.5;
    }

    .project-btn{
        font-size:12px;
        gap:6px;
    }

    .project-view{
        width:40px;
        height:40px;
    }

    .project-view i{
        font-size:14px;
    }

}