*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f3f3f3;
    overflow-x:hidden;
}

/*=========================
HERO
=========================*/

.ws-hero{
    padding:70px 0 0 0;
    background:#f3f3f3;
    position:relative;
    overflow:hidden;
}

.ws-hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,187,0,.06);
    border-radius:50%;
    left:-150px;
    top:-150px;
    animation:floatCircle 6s infinite ease-in-out;
}

.hero-wrap{
    /*background:#f7f7f7;*/
    border-radius:10px;
    padding:50px 15px;
    position:relative;
    z-index:5;
}

/*=========================
LOGO
=========================*/

.ws-logo{
    width:290px;
    margin-bottom:35px;
    animation:fadeDown 1s ease;
}

/*=========================
TITLE
=========================*/

.hero-title{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
    color:#111;
    margin-bottom:30px;
    animation:fadeUp 1s ease;
}

.hero-title span{
    color:#f6b300;
}

/*=========================
LINE
=========================*/

.design-line{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:35px;
}

.design-line span{
    height:4px;
    border-radius:50px;
}

.design-line span:nth-child(1){
    width:110px;
    background:#222;
}

.design-line span:nth-child(2){
    width:30px;
    background:#f6b300;
}

.design-line span:nth-child(3){
    width:30px;
    background:#f6b300;
}

/*=========================
TEXT
=========================*/

.hero-text{
    font-size:18px;
    line-height:1.9;
    color:#555;
    max-width:700px;
    margin-bottom:40px;
    animation:fadeUp 1.2s ease;
}

/*=========================
BUTTON
=========================*/

.hero-btn-wrap{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.quote-btn{
    background:#f6b300;
    color:#111;
    text-decoration:none;
    padding:18px 34px;
    border-radius:8px;
    font-size:17px;
    font-weight:700;
    transition:.4s;
    box-shadow:0 10px 25px rgba(246,179,0,.25);
}

.quote-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-5px);
}

.google-box{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:14px 18px;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.google-box i{
    font-size: 16px;
    color: green;
    line-height: 25px;
}

.google-box h5{
    margin:0;
    font-size:18px;
    font-weight:700;
}

.google-stars{
    color:#f6b300;
    font-size:14px;
}

/*=========================
FEATURES
=========================*/

.feature-wrap{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.feature-card{
    width:185px;
    background:#fff;
    padding:30px 20px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-icon{
    width:70px;
    height:70px;
    background:#111;
    color:#f6b300;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.feature-card h4{
    font-size:18px;
    font-weight:700;
    line-height:1.5;
}

/*=========================
RIGHT SIDE
=========================*/

.hero-right{
    position:relative;
    animation:zoomIn 1.2s ease;
}

/*=========================
TOP BUTTONS
=========================*/

.top-buttons{
    position:absolute;
    right:0;
    top:-50px;
    z-index:99;
    display:flex;
    gap:15px;
}

.top-btn{
    text-decoration:none;
    padding:8px;
    border-radius:6px;
    font-size:12px;
    font-weight:700;
    transition:.4s;
}

.yellow-btn{
    background:#f6b300;
    color:#111;
}

.black-btn{
    background:#111;
    color:#fff;
}

.top-btn:hover{
    transform:translateY(-4px);
}

/*=========================
IMAGE
=========================*/

.image-box{
    margin-top:50px;
    position:relative;
}

.hero-img{
    width:100%;
    height:650px;
    object-fit:cover;
    clip-path:polygon(23% 0,100% 0,100% 100%,0 100%);
}

.yellow-shape{
    position:absolute;
    width:24px;
    height:92%;
    background:#f6b300;
    left:75px;
    top:15px;
    transform:skew(-20deg);
}

/*=========================
ANIMATION
=========================*/

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

@keyframes floatCircle{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(30px);
    }
    100%{
        transform:translateY(0px);
    }
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .hero-wrap{
        padding:30px;
    }

    .hero-title{
        font-size:42px;
    }

    .top-buttons{
        position:relative;
        margin-bottom:25px;
    }

    .hero-img{
        height:500px;
        margin-top:20px;
    }

}

@media(max-width:767px){

    .ws-hero{
        padding:100px 0;
    }

    .hero-wrap{
        padding:20px;
    }

    .ws-logo{
        width:220px;
    }

    .hero-title{
        font-size:32px;
    }

    .hero-text{
        font-size:16px;
    }

    .feature-card{
        width:100%;
    }

    .hero-img{
        clip-path:none;
        border-radius:15px;
        height:350px;
    }

    .yellow-shape{
        display:none;
    }

    .top-buttons{
        flex-direction:column;
    }

    .top-btn{
        width:100%;
        text-align:center;
    }

}




/* =========================================
        QUOTE SECTION
========================================= */

.ws-quote-section{

    position:relative;
    padding:50px 0;
    background:#f5f7fb;
    overflow:hidden;

}

/* animated shapes */

.ws-shape{

    position:absolute;
    border-radius:50%;
    filter:blur(80px);

}

.ws-shape1{

    width:350px;
    height:350px;

    background:
    rgba(255,183,0,.18);

    top:-120px;
    left:-120px;

    animation:wsMove1 8s linear infinite;

}

.ws-shape2{

    width:280px;
    height:280px;

    background:
    rgba(255,132,0,.15);

    bottom:-100px;
    right:-100px;

    animation:wsMove2 10s linear infinite;

}

@keyframes wsMove1{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(40px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes wsMove2{

    0%{
        transform:translateX(0px);
    }

    50%{
        transform:translateX(-40px);
    }

    100%{
        transform:translateX(0px);
    }

}

/* wrapper */

.ws-quote-wrapper{

    position:relative;
    z-index:2;

    /*background:#fff;*/

    border-radius:40px;

    padding:60px;

    /*box-shadow:
    0 25px 60px rgba(0,0,0,.08);*/

    overflow:hidden;

}

/* =========================================
        IMAGE AREA
========================================= */

.ws-quote-image-area{

    position:relative;
    border-radius:30px;
    overflow:hidden;

    height:100%;

    min-height:620px;

}

.ws-quote-image-area img{

    width:100%;
    height:700px;
    object-fit:cover;

    transition:1s ease;

}

.ws-quote-image-area:hover img{

    transform:scale(1.08);

}

.ws-image-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(to top,
    rgba(0,0,0,.65),
    rgba(0,0,0,.1));

    z-index:1;

}

/* floating card */

.ws-floating-card{

    position:absolute;

    top:30px;
    left:30px;

    z-index:2;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.2);

    padding:18px 22px;

    border-radius:22px;

    display:flex;
    align-items:center;
    gap:15px;

    animation:floatCard 4s ease infinite;

}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

.ws-floating-card span{

    width:55px;
    height:55px;

    border-radius:50%;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:22px;

}

.ws-floating-card h5{

    color:#fff;
    margin-bottom:2px;
    font-size:18px;
    font-weight:700;

}

.ws-floating-card p{

    margin:0;
    color:#000;
    font-size:13px;
    font-weight: bold;

}

/* call btn */

.ws-call-btn{

    position:absolute;

    bottom:30px;
    left:30px;

    z-index:2;

    padding:15px 28px;

    border-radius:60px;

    border:2px solid rgba(255,255,255,.7);

    color:#fff;

    font-weight:700;

    display:inline-flex;
    align-items:center;
    gap:10px;

    transition:.4s ease;

    backdrop-filter:blur(10px);

}

.ws-call-btn:hover{

    background:#ffb700;
    border-color:#ffb700;

    color:#fff;

    transform:translateY(-4px);

}

/* =========================================
        CONTENT
========================================= */

.ws-small-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:
    rgba(255,183,0,.12);

    color:#ff9900;

    font-weight:700;
    font-size:13px;

    margin-bottom:20px;

    letter-spacing:1px;

}

.ws-quote-content h2{

    font-size:40px;
    line-height:1.1;
    font-weight:900;

    color:#09111f;

    margin-bottom:20px;

}
.ws-quote-content{
    text-align: center;
    margin: 0;
}

.ws-quote-content h2 span{

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.ws-quote-content p{

    font-size:16px;
    line-height:1.8;

    color:#666;
    margin: 0 auto;
    max-width:650px;

}

/* line */

.ws-title-line{
    justify-content: center;
    display:flex;
    align-items:center;
    gap:8px;

    margin:30px 0 25px;

}

.ws-title-line span{

    height:4px;
    border-radius:20px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    animation:lineMove 2s infinite alternate;

}

.ws-title-line span:nth-child(1){

    width:70px;

}

.ws-title-line span:nth-child(2){

    width:35px;

}

.ws-title-line span:nth-child(3){

    width:18px;

}

@keyframes lineMove{

    from{
        transform:translateX(0px);
    }

    to{
        transform:translateX(10px);
    }

}

/* =========================================
        FORM
========================================= */

.ws-input-group{

    position:relative;

}

.ws-input-group i{

    position:absolute;

    left:18px;
    top:50%;

    transform:translateY(-50%);

    color:#ff9900;
    font-size:20px;

}

.ws-input-group input,
.ws-input-group select,
.ws-input-group textarea{

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    border: none;
    background: #f5f7fb;
    height: 45px;
    border-radius: 5px;
    padding: 0 20px 0 55px;
    font-size: 15px;
    outline: none;
    transition: .4s ease;
    border: 2px solid transparent;

}

.ws-input-group textarea{

    height:100px;
    padding-top:20px;
    resize:none;

}

.ws-input-group textarea + i{

    top:25px;

}

.ws-input-group input:focus,
.ws-input-group select:focus,
.ws-input-group textarea:focus{

    border-color:#ffb700;
    background:#fff;

    box-shadow:
    0 10px 25px rgba(255,183,0,.12);

}

/* upload */

.ws-upload-box{

    position:relative;

}

.ws-upload-box input{

    display:none;

}

.ws-upload-box label{

    width:100%;

    border:2px dashed #ffb700;

    background:
    rgba(255,183,0,.05);

    border-radius:28px;

    padding:15px;

    text-align:center;

    cursor:pointer;

    transition:.4s ease;

}

.ws-upload-box label:hover{

    transform:translateY(-4px);

    background:
    rgba(255,183,0,.08);

}

.ws-upload-box i{

    font-size:58px;
    color:#ff9900;

}

.ws-upload-box h4{

    font-size:28px;
    font-weight:800;

    margin:15px 0 10px;

    color:#09111f;

}

.ws-upload-box p{

    margin:0;
    font-weight:700;
    color:#ff9900;

}

.ws-upload-box span{

    display:block;
    margin-top:10px;

    color:#777;
    font-size:14px;

}

/* button */

.ws-submit-btn{

        border: none;
    width: 100%;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffb700, #ff6a00);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: .4s ease;
    box-shadow: 0 20px 40px rgba(255, 132, 0, .25);

}

.ws-submit-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 25px 50px rgba(255,132,0,.35);

}

/* =========================================
        RESPONSIVE
========================================= */

@media(max-width:991px){

    .ws-quote-wrapper{

        padding:30px;

    }

    .ws-quote-content h2{

        font-size:42px;

    }

}

@media(max-width:768px){

    .ws-quote-section{

        padding:80px 0;

    }

    .ws-quote-wrapper{

        border-radius:25px;

        padding:20px;

    }

    .ws-quote-content h2{

        font-size:34px;

    }

    .ws-quote-image-area{

        min-height:420px;

    }

    .ws-upload-box h4{

        font-size:22px;

    }

}

/* =========================================
        ABOUT SECTION
========================================= */

.ws-about-exp-section{

    position:relative;
    padding:50px 0;
    background:#f5f7fb;
    overflow:hidden;

}

/* =========================================
        GLOW EFFECT
========================================= */

.ws-about-glow{

    position:absolute;
    border-radius:50%;
    filter:blur(80px);

}

.ws-about-glow1{

    width:320px;
    height:320px;

    background:
    rgba(255,183,0,.15);

    top:-120px;
    left:-100px;

    animation:wsGlowMove1 8s linear infinite;

}

.ws-about-glow2{

    width:280px;
    height:280px;

    background:
    rgba(255,132,0,.12);

    right:-80px;
    bottom:-100px;

    animation:wsGlowMove2 10s linear infinite;

}

@keyframes wsGlowMove1{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(40px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes wsGlowMove2{

    0%{
        transform:translateX(0px);
    }

    50%{
        transform:translateX(-40px);
    }

    100%{
        transform:translateX(0px);
    }

}

/* =========================================
        WRAPPER
========================================= */

.ws-about-exp-wrapper{

    position:relative;
    z-index:2;

}

/* =========================================
        IMAGE AREA
========================================= */

.ws-about-image-area{

    position:relative;
    min-height:650px;

}

/* image common */

.ws-about-img{

    position:absolute;
    overflow:hidden;

    border-radius:30px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

}

.ws-about-img img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:1s ease;

}

.ws-about-img:hover img{

    transform:scale(1.08);

}

/* image 1 */

.ws-about-img1{

    width:310px;
    height:420px;

    top:0;
    left:0;

    animation:wsFloatImg1 5s ease infinite;

}

/* image 2 */

.ws-about-img2{

    width:260px;
    height:230px;

    bottom:20px;
    right:0;

    animation:wsFloatImg2 6s ease infinite;

}

@keyframes wsFloatImg1{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes wsFloatImg2{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* experience card */

.ws-about-exp-card{

    position:absolute;

    top:45%;
    left:55%;

    transform:translate(-50%,-50%);

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#fff;

    z-index:5;

    box-shadow:
    0 20px 50px rgba(255,132,0,.35);

    animation:rotateCard 8s linear infinite;

}

@keyframes rotateCard{

    0%{
        transform:translate(-50%,-50%) rotate(0deg);
    }

    100%{
        transform:translate(-50%,-50%) rotate(360deg);
    }

}

.ws-about-exp-card h2{

    font-size:52px;
    font-weight:900;

    margin-bottom:5px;

}

.ws-about-exp-card p{

    font-size:15px;
    font-weight:600;

    margin:0;

    max-width:110px;

}

/* floating icon */

.ws-about-circle{

    position:absolute;

    top:40px;
    right:20px;

    width:90px;
    height:90px;

    border-radius:50%;

    background:#09111f;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffb700;
    font-size:40px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);

    animation:wsIconBounce 3s ease infinite;

}

@keyframes wsIconBounce{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
        CONTENT
========================================= */

.ws-about-badge{

    display:inline-block;

    padding:12px 20px;

    border-radius:50px;

    background:
    rgba(255,183,0,.12);

    color:#ff9900;

    font-size:13px;
    font-weight:800;

    letter-spacing:1px;

    margin-bottom:22px;

}

.ws-about-content h2{

    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
    color: #09111f;
    margin-bottom: 25px;

}

.ws-about-content h2 span{

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* animated line */

.ws-about-line{

    display:flex;
    align-items:center;
    gap:8px;

    margin-bottom:30px;

}

.ws-about-line span{

    height:4px;

    border-radius:20px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    animation:wsLineMove 2s infinite alternate;

}

.ws-about-line span:nth-child(1){

    width:80px;

}

.ws-about-line span:nth-child(2){

    width:40px;

}

.ws-about-line span:nth-child(3){

    width:20px;

}

@keyframes wsLineMove{

    from{
        transform:translateX(0px);
    }

    to{
        transform:translateX(10px);
    }

}

.ws-about-content p{

    font-size:17px;
    line-height:1.9;

    color:#666;

    margin-bottom:18px;

}

/* =========================================
        FEATURES
========================================= */

.ws-about-feature{

    display:flex;
    align-items:flex-start;
    gap:15px;

    background:#fff;

    padding:22px;

    border-radius:24px;

    transition:.4s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

.ws-about-feature:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

}

.ws-about-feature span{

    width:55px;
    height:55px;

    border-radius:16px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:24px;

    flex-shrink:0;

}

.ws-about-feature h5{

    font-size:19px;
    font-weight:800;

    color:#09111f;

    margin-bottom:5px;

}

.ws-about-feature p{

    margin:0;
    font-size:14px;

}

/* =========================================
        BUTTON
========================================= */

.ws-about-btn-area{

    margin-top:35px;

}

.ws-about-btn{

    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:18px 34px;

    border-radius:60px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    color:#fff;

    font-size:16px;
    font-weight:800;

    transition:.4s ease;

    box-shadow:
    0 20px 45px rgba(255,132,0,.25);

}

.ws-about-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    rgba(255,255,255,.18);

    transform:skewX(25deg);

    transition:.6s ease;

}

.ws-about-btn:hover::before{

    left:120%;

}

.ws-about-btn:hover{

    transform:translateY(-5px);

    color:#fff;

}

/* =========================================
        RESPONSIVE
========================================= */

@media(max-width:1200px){

    .ws-about-content h2{

        font-size:50px;

    }

}

@media(max-width:991px){

    .ws-about-exp-section{

        padding:90px 0;

    }

    .ws-about-image-area{

        min-height:600px;

    }

    .ws-about-content h2{

        font-size:42px;

    }

}

@media(max-width:768px){

    .ws-about-img1{

        width:240px;
        height:320px;

    }

    .ws-about-img2{

        width:210px;
        height:180px;

    }

    .ws-about-exp-card{

        width:140px;
        height:140px;

    }

    .ws-about-exp-card h2{

        font-size:38px;

    }

    .ws-about-content h2{

        font-size:34px;

    }

    .ws-about-content p{

        font-size:15px;

    }

}

@media(max-width:500px){

    .ws-about-image-area{

        min-height:500px;

    }

    .ws-about-img1{

        width:200px;
        height:280px;

    }

    .ws-about-img2{

        width:180px;
        height:150px;

    }

    .ws-about-exp-card{

        width:120px;
        height:120px;

    }

    .ws-about-exp-card h2{

        font-size:30px;

    }

    .ws-about-exp-card p{

        font-size:12px;

    }

}

/* =========================================
        SERVICES SECTION
========================================= */

.ws-services-section{

    position:relative;
    padding:50px 0;
    background:#070b12;
    overflow:hidden;

}

/* =========================================
        GLOW EFFECT
========================================= */

.ws-service-glow{

    position:absolute;
    border-radius:50%;
    filter:blur(90px);

}

.ws-service-glow1{

    width:350px;
    height:350px;

    background:
    rgba(255,183,0,.12);

    top:-120px;
    left:-120px;

    animation:wsGlowOne 8s linear infinite;

}

.ws-service-glow2{

    width:300px;
    height:300px;

    background:
    rgba(255,132,0,.10);

    right:-120px;
    bottom:-120px;

    animation:wsGlowTwo 10s linear infinite;

}

@keyframes wsGlowOne{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(50px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes wsGlowTwo{

    0%{
        transform:translateX(0px);
    }

    50%{
        transform:translateX(-50px);
    }

    100%{
        transform:translateX(0px);
    }

}

/* =========================================
        GRID LINES
========================================= */

.ws-grid-lines{

    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:80px 80px;

    opacity:.5;

}

/* =========================================
        TOP CONTENT
========================================= */

.ws-services-top{

    position:relative;
    z-index:2;

    text-align:center;

    max-width:850px;

    margin:auto auto 70px;

}

.ws-service-badge{

    display:inline-block;

    padding:12px 22px;

    border-radius:60px;

    background:
    rgba(255,183,0,.12);

    border:1px solid rgba(255,183,0,.18);

    color:#ffb700;

    font-size:13px;
    font-weight:800;

    letter-spacing:1px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

}

.ws-services-top h2{

    font-size:30px;
    line-height:1.08;

    font-weight:900;

    color:#fff;

    margin-bottom:22px;

}

.ws-services-top h2 span{

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.ws-services-top p{

    font-size:17px;
    line-height:1.9;

    color:#bfc6d1;

    max-width:760px;

    margin:auto;

}

/* animated line */

.ws-service-line{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    margin-top:30px;

}

.ws-service-line span{

    height:4px;
    border-radius:20px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    animation:wsLineAnimation 2s infinite alternate;

}

.ws-service-line span:nth-child(1){

    width:80px;

}

.ws-service-line span:nth-child(2){

    width:35px;

}

.ws-service-line span:nth-child(3){

    width:18px;

}

@keyframes wsLineAnimation{

    from{
        transform:translateX(0px);
    }

    to{
        transform:translateX(10px);
    }

}

/* =========================================
        SERVICE CARD
========================================= */

.ws-service-card{

    position:relative;

    height:100%;

    min-height:auto;

    border-radius:35px;

    overflow:hidden;

    background:#111827;

    transition:.5s ease;

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);

}

.ws-service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 35px 70px rgba(0,0,0,.45);

}

/* image */

.ws-service-image{

    position:absolute;
    inset:0;

}

.ws-service-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;

}

.ws-service-card:hover .ws-service-image img{

    transform:scale(1.1);

}

/* overlay */

.ws-service-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.25));

}

/* service number */

.ws-service-number{

    position:absolute;

    top:25px;
    right:25px;

    width:70px;
    height:70px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:24px;
    font-weight:900;

    z-index:5;

}

/* content */

.ws-service-content{

    position:absolute;

    left:35px;
    right:35px;
    bottom:35px;

    z-index:5;

}

/* icon */

.ws-service-icon{

    width:75px;
    height:75px;

    border-radius:22px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:34px;

    margin-bottom:25px;

    box-shadow:
    0 15px 35px rgba(255,132,0,.35);

    transition:.5s ease;

}

.ws-service-card:hover .ws-service-icon{

    transform:rotateY(180deg);

}

.ws-service-content h3{

   font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;

}

.ws-service-content p{

    color:#c5ccd5;

    font-size:15px;
    line-height:1.8;

    margin-bottom:28px;

}

/* button */

.ws-service-btn{

    position:relative;

    overflow:hidden;

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:15px 28px;

    border-radius:60px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    color:#fff;

    font-size:14px;
    font-weight:600;

    transition:.4s ease;

}

.ws-service-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    rgba(255,255,255,.18);

    transform:skewX(25deg);

    transition:.6s ease;

}

.ws-service-btn:hover::before{

    left:120%;

}

.ws-service-btn:hover{

    transform:translateY(-4px);

    color:#fff;

}

/* wide card */

.ws-service-wide{

    min-height:420px;

}

/* =========================================
        RESPONSIVE
========================================= */

@media(max-width:1200px){

    .ws-services-top h2{

        font-size:56px;

    }

}

@media(max-width:991px){

    .ws-services-section{

        padding:90px 0;

    }

    .ws-services-top h2{

        font-size:44px;

    }

}

@media(max-width:768px){

    .ws-services-top h2{

        font-size:34px;

    }

    .ws-services-top p{

        font-size:15px;

    }

    .ws-service-card{

        min-height:auto;

    }

    .ws-service-content{

        left:25px;
        right:25px;
        bottom:25px;

    }

    .ws-service-content h3{

        font-size:28px;

    }

    .ws-service-icon{

        width:65px;
        height:65px;

        font-size:28px;

    }

}

/* =========================================
        SECTION
========================================= */

.ws-solution-section{

    position:relative;
    padding:50px 0;
    background:#f5f7fb;
    overflow:hidden;

}

/* =========================================
        GLOW EFFECT
========================================= */

.ws-solution-glow{

    position:absolute;
    border-radius:50%;
    filter:blur(90px);

}

.ws-solution-glow1{

    width:350px;
    height:350px;

    background:
    rgba(255,183,0,.15);

    top:-120px;
    left:-120px;

    animation:wsGlowMove1 8s linear infinite;

}

.ws-solution-glow2{

    width:300px;
    height:300px;

    background:
    rgba(255,132,0,.12);

    right:-120px;
    bottom:-120px;

    animation:wsGlowMove2 10s linear infinite;

}

@keyframes wsGlowMove1{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(50px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes wsGlowMove2{

    0%{
        transform:translateX(0px);
    }

    50%{
        transform:translateX(-40px);
    }

    100%{
        transform:translateX(0px);
    }

}

/* =========================================
        GRID BACKGROUND
========================================= */

.ws-solution-grid{

    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);

    background-size:80px 80px;

    opacity:.5;

}

/* =========================================
        TOP CONTENT
========================================= */

.ws-solution-top{

    position:relative;
    z-index:2;

    margin-bottom:70px;

}

.ws-solution-badge{

    display:inline-block;

    padding:12px 22px;

    border-radius:60px;

    background:
    rgba(255,183,0,.12);

    border:1px solid rgba(255,183,0,.18);

    color:#ff9900;

    font-size:13px;
    font-weight:800;

    letter-spacing:1px;

    margin-bottom:25px;

}

.ws-solution-content h2{

    font-size:30px;
    line-height:1.08;

    font-weight:900;

    color:#09111f;

    margin-bottom:28px;

}

.ws-solution-content h2 span{

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* animated line */

.ws-solution-line{

    display:flex;
    align-items:center;
    gap:8px;

    margin-bottom:30px;

}

.ws-solution-line span{

    height:4px;

    border-radius:20px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    animation:wsLineMove 2s infinite alternate;

}

.ws-solution-line span:nth-child(1){

    width:80px;

}

.ws-solution-line span:nth-child(2){

    width:35px;

}

.ws-solution-line span:nth-child(3){

    width:18px;

}

@keyframes wsLineMove{

    from{
        transform:translateX(0px);
    }

    to{
        transform:translateX(10px);
    }

}

.ws-solution-content p{

    font-size:17px;
    line-height:1.9;

    color:#555;

    max-width:760px;

}

/* =========================================
        TOUCH CIRCLE
========================================= */

.ws-touch-circle{

    position:relative;

    width:220px;
    height:220px;

    margin:auto;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    animation:rotateCircle 12s linear infinite;

}

@keyframes rotateCircle{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

.ws-circle-text{

    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:16px;
    font-weight:800;

    color:#09111f;

    letter-spacing:3px;

}

.ws-circle-text::before{

    /*content:'GET IN TOUCH • GET IN TOUCH •';*/

    position:absolute;

    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    animation:rotateCircle 12s linear infinite;

}

.ws-circle-icon{

    width:95px;
    height:95px;

    border-radius:50%;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:42px;

    box-shadow:
    0 20px 50px rgba(255,132,0,.30);

}

/* =========================================
        SOLUTION CARD
========================================= */

.ws-solution-card{

    position:relative;

    height:520px;

    border-radius:35px;

    overflow:hidden;

    transition:.5s ease;

    box-shadow:
    0 20px 50px rgba(0,0,0,.10);

}

.ws-solution-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 35px 70px rgba(0,0,0,.18);

}

/* image */

.ws-solution-image{

    position:absolute;
    inset:0;

}

.ws-solution-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1.2s ease;

}

.ws-solution-card:hover .ws-solution-image img{

    transform:scale(1.12);

}

/* overlay */

.ws-solution-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.15));

}

/* animated border */

.ws-border-light{

    position:absolute;
    inset:0;

    border-radius:35px;

    border:1px solid rgba(255,255,255,.08);

    overflow:hidden;

}

.ws-border-light::before{

    content:'';

    position:absolute;

    width:200px;
    height:200%;

    background:
    linear-gradient(transparent,
    rgba(255,183,0,.8),
    transparent);

    top:-50%;
    left:-50%;

    transform:rotate(25deg);

    animation:lightMove 5s linear infinite;

}

@keyframes lightMove{

    0%{
        left:-60%;
    }

    100%{
        left:140%;
    }

}

/* =========================================
        CARD CONTENT
========================================= */

.ws-solution-card-content{

    position:absolute;

    left:40px;
    right:40px;
    bottom:40px;

    z-index:5;

}

/* icon */

.ws-card-icon{

    width:80px;
    height:80px;

    border-radius:24px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:36px;

    margin-bottom:28px;

    box-shadow:
    0 15px 40px rgba(255,132,0,.30);

    transition:.5s ease;

}

.ws-solution-card:hover .ws-card-icon{

    transform:rotateY(180deg);

}

.ws-solution-card-content h3{

    font-size:22px;
    line-height:1.1;

    font-weight:900;

    color:#fff;

    margin-bottom:18px;

}

.ws-solution-card-content p{

    color:#d7dce3;

    font-size:15px;
    line-height:1.9;

    margin-bottom:30px;

}

/* button */

.ws-solution-btn{

    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 30px;

    border-radius:60px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    color:#fff;

    font-size:14px;
    font-weight:600;

    transition:.4s ease;

}

.ws-solution-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    rgba(255,255,255,.18);

    transform:skewX(25deg);

    transition:.6s ease;

}

.ws-solution-btn:hover::before{

    left:120%;

}

.ws-solution-btn:hover{

    transform:translateY(-5px);

    color:#fff;

}

/* =========================================
        RESPONSIVE
========================================= */

@media(max-width:1200px){

    .ws-solution-content h2{

        font-size:56px;

    }

}

@media(max-width:991px){

    .ws-solution-section{

        padding:90px 0;

    }

    .ws-solution-content h2{

        font-size:42px;

    }

    .ws-touch-circle{

        margin-top:40px;

    }

}

@media(max-width:768px){

    .ws-solution-content h2{

        font-size:34px;

    }

    .ws-solution-content p{

        font-size:15px;

    }

    .ws-solution-card{

        height:450px;

    }

    .ws-solution-card-content{

        left:25px;
        right:25px;
        bottom:25px;

    }

    .ws-solution-card-content h3{

        font-size:30px;

    }

    .ws-card-icon{

        width:65px;
        height:65px;

        font-size:28px;

    }

    .ws-touch-circle{

        width:170px;
        height:170px;

    }

    .ws-circle-icon{

        width:75px;
        height:75px;

        font-size:32px;

    }

}

/* =========================================
        SECTION
========================================= */

.wsrq-section{

    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:
    linear-gradient(rgba(4,10,20,.78),
    rgba(4,10,20,.90)),
    url('images/road-bg.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

}

/* =========================================
        GLOW EFFECT
========================================= */

.wsrq-glow{

    position:absolute;
    border-radius:50%;
    filter:blur(90px);

}

.wsrq-glow1{

    width:350px;
    height:350px;

    background:
    rgba(255,183,0,.16);

    top:-120px;
    left:-120px;

    animation:wsrqGlow1 8s linear infinite;

}

.wsrq-glow2{

    width:300px;
    height:300px;

    background:
    rgba(255,132,0,.12);

    bottom:-100px;
    right:-100px;

    animation:wsrqGlow2 10s linear infinite;

}

@keyframes wsrqGlow1{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(50px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes wsrqGlow2{

    0%{
        transform:translateX(0px);
    }

    50%{
        transform:translateX(-40px);
    }

    100%{
        transform:translateX(0px);
    }

}

/* =========================================
        PARTICLES
========================================= */

.wsrq-particles{

    position:absolute;
    inset:0;

    background-image:
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);

    background-size:40px 40px;

    opacity:.4;

}

/* =========================================
        WRAPPER
========================================= */

.wsrq-wrapper{

    position:relative;
    z-index:5;

}

/* =========================================
        CONTENT
========================================= */

.wsrq-content{

    color:#fff;

}

.wsrq-badge{

    display:inline-block;

    padding:12px 22px;

    border-radius:60px;

    background:
    rgba(255,183,0,.12);

    border:1px solid rgba(255,183,0,.18);

    color:#ffb700;

    font-size:13px;
    font-weight:800;

    letter-spacing:1px;

    margin-bottom:28px;

    backdrop-filter:blur(10px);

}

.wsrq-content h2{

    font-size:32px;
    line-height:50px;

    font-weight:800;

    margin-bottom:30px;

}

.wsrq-content h2 span{

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* line */

.wsrq-line{

    display:flex;
    align-items:center;
    gap:8px;

    margin-bottom:30px;

}

.wsrq-line span{

    height:4px;

    border-radius:20px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    animation:wsrqLine 2s infinite alternate;

}

.wsrq-line span:nth-child(1){

    width:80px;

}

.wsrq-line span:nth-child(2){

    width:40px;

}

.wsrq-line span:nth-child(3){

    width:18px;

}

@keyframes wsrqLine{

    from{
        transform:translateX(0px);
    }

    to{
        transform:translateX(10px);
    }

}

.wsrq-content p{

    font-size:17px;
    line-height:1.9;

    color:#d7dce3;

    max-width:620px;

}

/* =========================================
        FEATURES
========================================= */

.wsrq-feature-list{

    margin-top:35px;

}

.wsrq-feature{

    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:18px;

}

.wsrq-feature span{

    width:50px;
    height:50px;

    border-radius:16px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:22px;

    flex-shrink:0;

    box-shadow:
    0 12px 30px rgba(255,132,0,.25);

}

.wsrq-feature h5{

    font-size:18px;
    font-weight:700;

    margin:0;

}

/* =========================================
        BUTTON
========================================= */

.wsrq-btn-area{

    margin-top:40px;

}

.wsrq-call-btn{

    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:18px 34px;

    border-radius:60px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    color:#fff;

    font-size:16px;
    font-weight:800;

    transition:.4s ease;

    box-shadow:
    0 20px 45px rgba(255,132,0,.25);

}

.wsrq-call-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    rgba(255,255,255,.18);

    transform:skewX(25deg);

    transition:.6s ease;

}

.wsrq-call-btn:hover::before{

    left:120%;

}

.wsrq-call-btn:hover{

    transform:translateY(-5px);

    color:#fff;

}

/* =========================================
        FORM BOX
========================================= */

.wsrq-form-box{

    position:relative;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:35px;

    padding:45px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,.25);

}

/* animated border */

.wsrq-form-box::before{

    content:'';

    position:absolute;

    width:220px;
    height:220%;

    /*background:
    linear-gradient(transparent,
    rgba(255,183,0,.8),
    transparent);*/

    top:-50%;
    left:-60%;

    transform:rotate(25deg);

    animation:wsrqBorder 6s linear infinite;

}

@keyframes wsrqBorder{

    0%{
        left:-60%;
    }

    100%{
        left:140%;
    }

}

/* top */

.wsrq-form-top{

    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:25px;

}

.wsrq-form-icon{

    width:80px;
    height:80px;

    border-radius:24px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:36px;

    box-shadow:
    0 15px 35px rgba(255,132,0,.30);

}

.wsrq-form-top span{

    color:#ffb700;

    font-size:13px;
    font-weight:800;

    letter-spacing:1px;

}

.wsrq-form-top h3{

    font-size:24px;
    font-weight:600;

    color:#fff;

    margin-top:5px;

}

/* line */

.wsrq-form-line{

    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    gap:8px;

    margin-bottom:35px;

}

.wsrq-form-line span{

    height:4px;
    border-radius:20px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    animation:wsrqLine 2s infinite alternate;

}

.wsrq-form-line span:nth-child(1){

    width:70px;

}

.wsrq-form-line span:nth-child(2){

    width:35px;

}

.wsrq-form-line span:nth-child(3){

    width:18px;

}

/* =========================================
        INPUT
========================================= */

.wsrq-input{

    position:relative;
    z-index:2;

}

.wsrq-input i{

    position:absolute;

    left:18px;
    top:50%;

    transform:translateY(-50%);

    color:#ffb700;
    font-size:20px;

}

.wsrq-input input,
.wsrq-input select,
.wsrq-input textarea{

    width:100%;

    border:none;

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    height:65px;

    border-radius:18px;

    padding:0 20px 0 55px;

    color:#fff;

    font-size:15px;

    outline:none;

    transition:.4s ease;

}

.wsrq-input textarea{

    height:140px;

    resize:none;

    padding-top:20px;

}

.wsrq-input input::placeholder,
.wsrq-input textarea::placeholder{

    color:#d7dce3;

}

.wsrq-input select{

    color:#d7dce3;

}

.wsrq-input input:focus,
.wsrq-input select:focus,
.wsrq-input textarea:focus{

    border-color:#ffb700;

    background:
    rgba(255,255,255,.12);

    box-shadow:
    0 10px 30px rgba(255,183,0,.12);

}

/* =========================================
        UPLOAD
========================================= */

.wsrq-upload{

    position:relative;
    z-index:2;

}

.wsrq-upload input{

    display:none;

}

.wsrq-upload label{

    width:100%;

    border:2px dashed rgba(255,183,0,.6);

    background:
    rgba(255,255,255,.05);

    border-radius:28px;

    padding:45px 20px;

    text-align:center;

    cursor:pointer;

    transition:.4s ease;

}

.wsrq-upload label:hover{

    transform:translateY(-5px);

    background:
    rgba(255,255,255,.08);

}

.wsrq-upload i{

    font-size:58px;

    color:#ffb700;

}

.wsrq-upload h4{

    font-size:30px;
    font-weight:800;

    color:#fff;

    margin:15px 0 10px;

}

.wsrq-upload p{

    color:#ffb700;

    font-weight:700;

    margin-bottom:6px;

}

.wsrq-upload span{

    color:#d7dce3;

    font-size:14px;

}

/* =========================================
        SUBMIT BUTTON
========================================= */

.wsrq-submit-btn{

    position:relative;
    z-index:2;

    border:none;

    width:100%;

    height:70px;

    border-radius:70px;

    background:
    linear-gradient(135deg,
    #ffb700,
    #ff6a00);

    color:#fff;

    font-size:18px;
    font-weight:800;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    transition:.4s ease;

    box-shadow:
    0 20px 45px rgba(255,132,0,.25);

}

.wsrq-submit-btn:hover{

    transform:translateY(-5px);

}

/* =========================================
        RESPONSIVE
========================================= */

@media(max-width:1200px){

    .wsrq-content h2{

        font-size:56px;

    }

}

@media(max-width:991px){

    .wsrq-section{

        padding:90px 0;

    }

    .wsrq-content h2{

        font-size:42px;

    }

    .wsrq-form-box{

        padding:30px;

    }

}

@media(max-width:768px){

    .wsrq-content h2{

        font-size:34px;

    }

    .wsrq-content p{

        font-size:15px;

    }

    .wsrq-form-top h3{

        font-size:30px;

    }

    .wsrq-form-box{

        padding:22px;

        border-radius:25px;

    }

    .wsrq-form-icon{

        width:65px;
        height:65px;

        font-size:28px;

    }

    .wsrq-upload h4{

        font-size:24px;

    }

}

/* =========================
   FOOTER CSS START
========================= */

.wm-footer-area{
    position: relative;
    background: #0b0b0b;
    padding: 100px 0 30px;
    overflow: hidden;
    z-index: 1;
}

.wm-footer-glow{
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 187, 0, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    filter: blur(100px);
    z-index: -1;
}

.wm-footer-box h4{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.wm-footer-box h4::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 3px;
    background: #ffbb00;
    border-radius: 50px;
}

.wm-footer-logo img{
    width: 260px;
    margin-bottom: 25px;
}

.wm-footer-text{
    color: #bdbdbd;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 30px;
}

.wm-social-links{
    display: flex;
    gap: 15px;
}

.wm-social-links a{
    width: 48px;
    height: 48px;
    background: #151515;
    color: #ffbb00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    text-decoration: none;
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.06);
}

.wm-social-links a:hover{
    background: #ffbb00;
    color: #000;
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(255, 187, 0, 0.3);
}

.wm-footer-links{
    padding: 0;
    margin: 0;
    list-style: none;
}

.wm-footer-links li{
    margin-bottom: 16px;
}

.wm-footer-links li a{
    color: #bdbdbd;
    text-decoration: none;
    transition: .4s;
    font-size: 15px;
    position: relative;
    padding-left: 18px;
}

.wm-footer-links li a::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #ffbb00;
    border-radius: 50%;
    transform: translateY(-50%);
}

.wm-footer-links li a:hover{
    color: #ffbb00;
    padding-left: 25px;
}

.wm-contact-item{
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.8;
}

.wm-contact-item i{
    color: #ffbb00;
    font-size: 18px;
    margin-top: 4px;
}

.wm-footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 70px;
    padding-top: 25px;
    text-align: center;
}

.wm-footer-bottom p{
    margin: 0;
    color: #9c9c9c;
    font-size: 15px;
}

.wm-footer-bottom span{
    color: #ffbb00;
    font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .wm-footer-area{
        padding: 80px 0 30px;
    }

    .wm-footer-box{
        margin-bottom: 20px;
    }

}

@media(max-width:576px){

    .wm-footer-logo img{
        width: 220px;
    }

    .wm-footer-box h4{
        font-size: 22px;
    }

}

/* =========================
   ABOUT PAGE CSS
========================= */

.about-page{
    overflow:hidden;
    background:#f7f7f7;
}

/* HERO */

.about-hero{
    position:relative;
    padding:140px 0 120px;
    background:#0f0f0f;
    overflow:hidden;
    z-index:1;
}

.about-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,170,0,0.08);
    border-radius:50%;
    top:-180px;
    right:-150px;
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.mini-badge{
    display:inline-block;
    padding:10px 22px;
    background:#ffb000;
    color:#111;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:72px;
    font-weight:900;
    margin-bottom:20px;
    line-height:1.1;
}

.hero-content p{
    max-width:720px;
    margin:auto;
    font-size:18px;
    color:#d7d7d7;
    line-height:1.9;
}

.hero-shape{
    position:absolute;
    width:400px;
    height:400px;
    border:60px solid #ffb000;
    border-radius:50%;
    bottom:-230px;
    left:-120px;
    opacity:.08;
}

/* IMAGE */

.image-box{
    position:relative;
}

.image-box img{
    width:100%;
    border-radius:35px;
    display:block;
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
    transition:.5s;
}

.image-box:hover img{
    transform:scale(1.03);
}

.floating-card{
    position:absolute;
    bottom:25px;
    right:25px;
    background:#111;
    color:#fff;
    padding:25px 30px;
    border-radius:25px;
    text-align:center;
    animation:float 3s ease-in-out infinite;
}

.floating-card h3{
    font-size:42px;
    color:#ffb000;
    margin-bottom:5px;
    font-weight:800;
}

.floating-card p{
    margin:0;
    font-size:15px;
}

/* CONTENT */

.content-box{
    position:relative;
}

.section-tag{
    display:inline-block;
    background:#ffb000;
    color:#111;
    padding:10px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.content-box h2{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:25px;
    color:#111;
}

.content-box p{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:18px;
}

/* FEATURES */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.feature-item{
    background:#fff;
    padding:18px 22px;
    border-radius:18px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:.4s;
}

.feature-item:hover{
    transform:translateY(-6px);
}

.feature-item i{
    color:#ffb000;
    margin-right:10px;
}

/* SERVICES */

.service-section{
    padding:110px 0;
}

.section-title span{
    color:#ffb000;
    font-weight:700;
    letter-spacing:1px;
    font-size:14px;
}

.section-title h2{
    font-size:54px;
    font-weight:900;
    margin-top:15px;
    color:#111;
}

.service-card{
    background:#fff;
    padding:45px 35px;
    border-radius:30px;
    text-align:center;
    transition:.5s;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    width:100%;
    height:0;
    background:#111;
    left:0;
    bottom:0;
    transition:.5s;
    z-index:0;
}

.service-card:hover::before{
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card *{
    position:relative;
    z-index:2;
}

.service-card:hover h3,
.service-card:hover p{
    color:#fff;
}

.service-icon{
    width:90px;
    height:90px;
    background:#ffb000;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#111;
    margin-bottom:25px;
}

.service-card h3{
    font-size:28px;
    margin-bottom:18px;
    font-weight:800;
    color:#111;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

/* MISSION */

.mission-section{
    padding:110px 0;
    background:#111;
}

.mission-content h2{
    color:#fff;
    font-size:52px;
    font-weight:900;
    margin:20px 0;
    line-height:1.2;
}

.mission-content p{
    color:#ccc;
    line-height:1.9;
    margin-bottom:20px;
}

.mission-image img{
    width:100%;
    border-radius:35px;
    display:block;
}

.mission-counter{
    display:flex;
    gap:25px;
    margin-top:35px;
}

.counter-box{
    background:#1d1d1d;
    padding:28px 35px;
    border-radius:25px;
    text-align:center;
    min-width:180px;
}

.counter-box h3{
    color:#ffb000;
    font-size:42px;
    font-weight:800;
    margin-bottom:5px;
}

.counter-box span{
    color:#fff;
}

/* ANIMATION */

.reveal-left{
    animation:leftMove 1.2s ease;
}

.reveal-right{
    animation:rightMove 1.2s ease;
}

.reveal-up{
    animation:upMove 1.2s ease;
}

.delay-2{
    animation-delay:.2s;
}

.delay-3{
    animation-delay:.4s;
}

@keyframes leftMove{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes rightMove{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes upMove{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-content h1{
        font-size:52px;
    }

    .content-box h2{
        font-size:38px;
    }

    .mission-content h2{
        font-size:40px;
    }

    .section-title h2{
        font-size:42px;
    }

    .about-features{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .content-box h2{
        font-size:30px;
    }

    .mission-content h2{
        font-size:32px;
    }

    .section-title h2{
        font-size:34px;
    }

    .mission-counter{
        flex-direction:column;
    }

    .floating-card{
        padding:18px 20px;
    }

    .floating-card h3{
        font-size:28px;
    }
}


.about-page{
    position:relative;
}

/* HERO */

.about-hero{
    background:#000;
    padding:120px 0 140px;
    position:relative;
    overflow:hidden;
}

.hero-content{
    position:relative;
    z-index:2;
    animation:fadeUp 1s ease;
}

.hero-content h1{
    color:#fff;
    font-size:65px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    color:#d9d9d9;
    max-width:700px;
    margin:auto;
    line-height:1.9;
    font-size:18px;
}

.mini-badge{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:10px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.hero-shape{
    position:absolute;
    width:500px;
    height:500px;
    background:#ffcc00;
    right:-180px;
    top:-120px;
    border-radius:50%;
    opacity:.08;
}

/* ABOUT */

.image-box{
    position:relative;
}

.image-box img{
    width:100%;
    border-radius:30px;
    height:550px;
    object-fit:cover;
    transition:.5s;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.image-box:hover img{
    transform:scale(1.03);
}

.floating-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#fff;
    padding:20px 28px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    animation:float 3s ease-in-out infinite;
}

.floating-card h3{
    font-size:38px;
    color:#ffb800;
    font-weight:800;
    margin-bottom:0;
}

.floating-card p{
    margin:0;
    color:#666;
}

.content-box h2{
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
    line-height:1.3;
}

.content-box p{
    color:#666;
    line-height:2;
    margin-bottom:20px;
}

.section-tag{
    display:inline-block;
    color:#ffb800;
    font-weight:700;
    margin-bottom:18px;
    letter-spacing:1px;
}

.about-features{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature-item{
    background:#fff;
    padding:16px 20px;
    border-radius:16px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
}

.feature-item i{
    color:#ffb800;
    margin-right:10px;
}

.feature-item:hover{
    transform:translateY(-5px);
}

/* SERVICES */

.service-section{
    padding:100px 0;
    background:#fff;
}

.section-title span{
    color:#ffb800;
    font-weight:700;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    margin-top:10px;
}

.service-card{
    background:#f8fafc;
    padding:40px 30px;
    border-radius:24px;
    transition:.5s;
    height:100%;
    border:1px solid transparent;
}

.service-card:hover{
    transform:translateY(-12px);
    background:#000;
    border-color:#ffcc00;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-icon{
    color:#fff;
}

.service-icon{
    width:80px;
    height:80px;
    background:#ffcc00;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
    color:#000;
}

.service-card h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:18px;
}

.service-card p{
    color:#666;
    line-height:1.9;
}

/* MISSION */

.mission-section{
    padding:100px 0;
}

.mission-content h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:25px;
}

.mission-content p{
    color:#666;
    line-height:2;
    margin-bottom:20px;
}

.mission-image img{
    width:100%;
    border-radius:30px;
    height:580px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.mission-counter{
    display:flex;
    gap:25px;
    margin-top:35px;
}

.counter-box{
    background:#fff;
    padding:25px 35px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.counter-box h3{
    font-size:40px;
    color:#ffb800;
    font-weight:800;
    margin-bottom:5px;
}

/* ANIMATION */

.reveal-left{
    animation:fadeLeft 1s ease;
}

.reveal-right{
    animation:fadeRight 1s ease;
}

.reveal-up{
    animation:fadeUp 1s ease;
}

.delay-2{
    animation-delay:.2s;
}

.delay-3{
    animation-delay:.4s;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-content h1{
        font-size:48px;
    }

    .content-box h2,
    .section-title h2,
    .mission-content h2{
        font-size:36px;
    }

    .image-box img,
    .mission-image img{
        height:auto;
    }

}

@media(max-width:576px){

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:15px;
    }

    .content-box h2,
    .section-title h2,
    .mission-content h2{
        font-size:30px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .mission-counter{
        flex-direction:column;
    }

}

/* =========================================
   PREMIUM SERVICE DESIGN
========================================= */

.tg-service-area{
    position: relative;
    padding: 120px 0;
    background: #f7f8fc;
    overflow: hidden;
}

/* BACKGROUND GLOW */

.tg-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .15;
}

.tg-glow-one{
    width: 500px;
    height: 500px;
    background: #ffb300;
    top: -180px;
    left: -180px;
    animation: tgFloat 7s infinite alternate;
}

.tg-glow-two{
    width: 450px;
    height: 450px;
    background: #ff6600;
    bottom: -180px;
    right: -180px;
    animation: tgFloat2 7s infinite alternate;
}

@keyframes tgFloat{
    from{
        transform: translateY(0px);
    }
    to{
        transform: translateY(50px);
    }
}

@keyframes tgFloat2{
    from{
        transform: translateX(0px);
    }
    to{
        transform: translateX(-50px);
    }
}

/* TOP LAYOUT */

.tg-service-layout{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    margin-bottom: 110px;
}

/* IMAGE */

.tg-service-photo-wrap{
    position: relative;
}

.tg-main-photo{
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    position: relative;
}

.tg-main-photo::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.25),transparent);
    z-index: 1;
}

.tg-main-photo img{
    width: 100%;
    display: block;
    transition: 1s;
}

.tg-main-photo:hover img{
    transform: scale(1.08);
}

/* FLOATING BOX */

.tg-floating-box{
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    animation: tgBounce 4s infinite ease-in-out;
    z-index: 99999;
}

@keyframes tgBounce{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

.tg-floating-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#ffb300,#ff6600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tg-floating-box h4{
    font-size: 24px;
    margin-bottom: 4px;
    color: #111;
}

.tg-floating-box p{
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* CONTENT */

.tg-mini-tag{
    display: inline-block;
    background: rgba(255,179,0,0.15);
    color: #ff8c00;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.tg-service-info h2{
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #111;
    font-weight: 800;
}

.tg-service-info p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

/* FEATURE */

.tg-feature-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
    margin-bottom: 40px;
}

.tg-feature-item{
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: .4s;
}

.tg-feature-item:hover{
    transform: translateY(-8px);
}

.tg-feature-item i{
    color: #ff9800;
    margin-right: 10px;
}

/* BUTTON */

.tg-main-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg,#ffb300,#ff6600);
    color: #fff;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 16px;
    font-weight: 700;
    transition: .4s;
    box-shadow: 0 18px 40px rgba(255,179,0,0.25);
}

.tg-main-btn:hover{
    transform: translateY(-6px);
}

/* CARD GRID */

.tg-card-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-bottom: 110px;
}

.tg-service-card{
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: .5s;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.tg-service-card:hover{
    transform: translateY(-15px);
}

.tg-card-image{
    overflow: hidden;
}

.tg-card-image img{
    width: 100%;
    display: block;
    transition: 1s;
}

.tg-service-card:hover img{
    transform: scale(1.08);
}

.tg-card-body{
    padding: 30px;
}

.tg-card-icon{
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg,#ffb300,#ff6600);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    margin-bottom: 25px;
}

.tg-card-body h3{
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111;
}

.tg-card-body p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}

.tg-card-body a{
    color: #ff8c00;
    font-weight: 700;
    text-decoration: none;
}

/* CTA */

.tg-cta-box{
    background: linear-gradient(135deg,#111,#1f1f1f);
    border-radius: 35px;
    padding:30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.tg-cta-box::before{
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,179,0,0.15);
    border-radius: 50%;
    right: -80px;
    top: -80px;
}

.tg-cta-content span{
    color: #ffb300;
    font-weight: 700;
    letter-spacing: 1px;
}

.tg-cta-content h2{
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
    line-height: 1.2;
    font-weight: bold;
}

.tg-cta-btn{
    background: linear-gradient(135deg, #ffb300, #ff6600);
    color: #fff;
    text-decoration: none;
    padding: 12px 36px;
    border-radius: 16px;
    font-weight: 700;
    transition: .4s;
    font-size: 14px;
}

.tg-cta-btn:hover{
    transform: translateY(-6px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .tg-service-layout{
        grid-template-columns: 1fr;
    }

    .tg-card-grid{
        grid-template-columns: 1fr;
    }

    .tg-cta-box{
        flex-direction: column;
        text-align: center;
    }

    .tg-service-info h2,
    .tg-cta-content h2{
        font-size: 38px;
    }

}

@media(max-width:767px){

    .tg-service-area{
        padding: 120px 0;
    }

    .tg-feature-wrapper{
        grid-template-columns: 1fr;
    }

    .tg-service-info h2,
    .tg-cta-content h2{
        font-size: 30px;
    }

    .tg-floating-box{
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .tg-cta-box{
        padding: 40px 25px;
    }

}

/* =========================
   PREMIUM ABOUT SECTION
========================= */

.ws-about-modern{
    position: relative;
    padding: 120px 0;
    background: linear-gradient(to bottom,#f8f9fc,#eef3f9);
    overflow: hidden;
}

/* background design */

.ws-about-modern::before{
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,174,0,0.08);
    border-radius: 50%;
    top: -250px;
    right: -180px;
    filter: blur(80px);
    animation: float1 8s infinite alternate;
}

.ws-about-modern::after{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,115,0,0.08);
    border-radius: 50%;
    bottom: -200px;
    left: -150px;
    filter: blur(80px);
    animation: float2 8s infinite alternate;
}

@keyframes float1{
    from{
        transform: translateY(0);
    }
    to{
        transform: translateY(50px);
    }
}

@keyframes float2{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(50px);
    }
}

/* =========================
   TOP SECTION
========================= */

.ws-about-top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
    margin-bottom: 40px;
}

/* IMAGE */

.ws-about-image{
    position: relative;
}

.ws-img-box{
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.ws-img-box img{
    width: 100%;
    display: block;
    transition: 1s;
}

.ws-img-box:hover img{
    transform: scale(1.08);
}

/* experience card */

.ws-exp-box{
    position: absolute;
    left: -30px;
    bottom: 40px;
    background: #fff;
    padding: 28px 35px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    animation: bounceBox 4s infinite ease-in-out;
}

@keyframes bounceBox{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-12px);
    }
    100%{
        transform: translateY(0);
    }
}

.ws-exp-box h2{
    font-size: 55px;
    margin-bottom: 5px;
    font-weight: 800;
    background: linear-gradient(135deg,#ffb300,#ff7300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ws-exp-box span{
    font-size: 16px;
    color: #444;
    font-weight: 600;
}

/* CONTENT */

.ws-mini-title{
    display: inline-block;
    background: rgba(255,179,0,0.12);
    color: #ff9800;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.ws-about-content h2{
    font-size: 22px;
    line-height: 30px;
    color: #111;
    margin-bottom: 30px;
    font-weight: 800;
}

.ws-about-content p{
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* FEATURES */

.ws-feature-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 40px;
    margin-bottom: 45px;
}

.ws-feature{
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: .4s;
}

.ws-feature:hover{
    transform: translateY(-8px);
}

.ws-feature i{
        width: 42px;
    height: 35px;
    background: linear-gradient(135deg, #ffb300, #ff7300);
    color: #fff;
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-feature span{
    font-weight: 600;
    color: #222;
    font-size: 16px;
}

/* BUTTON */

.ws-about-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg,#ffb300,#ff7300);
    color: #fff;
    text-decoration: none;
    padding: 18px 38px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 20px 40px rgba(255,179,0,0.3);
    transition: .4s;
}

.ws-about-btn:hover{
    transform: translateY(-6px);
}

/* =========================
   SERVICE BOX
========================= */

.ws-service-wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.ws-service-card{
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 45px 35px;
    overflow: hidden;
    transition: .5s;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.ws-service-card:hover{
    transform: translateY(-15px);
}

.ws-service-card::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    left: 0;
    top: 0;
    background: linear-gradient(90deg,#ffb300,#ff7300);
}

.ws-service-icon{
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffb300, #ff7300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(255, 179, 0, 0.25);
}

.ws-service-card h3{
    font-size: 20px;
    margin-bottom: 18px;
    color: #111;
    font-weight: bold;
}

.ws-service-card p{
    color: #666;
    line-height: 1.9;
}

/* =========================
   MISSION SECTION
========================= */

.ws-mission-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.ws-mission-content h2{
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #111;
}

.ws-mission-box{
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    margin-bottom: 25px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    border-left: 5px solid #ff9800;
    transition: .4s;
}

.ws-mission-box:hover{
    transform: translateX(10px);
}

.ws-mission-box h4{
    font-size: 20px;
    margin-bottom: 15px;
    color: #111;
    font-weight: bold;
}

.ws-mission-box p{
    color: #666;
    line-height: 1.9;
}

/* IMAGE */

.ws-mission-image{
    position: relative;
}

.ws-mission-image img{
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.ws-floating-card{
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    animation: bounceBox 4s infinite ease-in-out;
}

.ws-floating-card i{
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg,#ffb300,#ff7300);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.ws-floating-card h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #111;
}

.ws-floating-card span{
    color: #666;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .ws-about-top,
    .ws-mission-wrapper{
        grid-template-columns: 1fr;
    }

    .ws-service-wrapper{
        grid-template-columns: 1fr;
    }

    .ws-about-content h2,
    .ws-mission-content h2{
        font-size: 40px;
    }

}

@media(max-width:767px){

    .ws-about-modern{
        padding: 120px 0;
    }

    .ws-about-content h2,
    .ws-mission-content h2{
        font-size: 22px;
    }

    .ws-feature-list{
        grid-template-columns: 1fr;
    }

    .ws-exp-box{
        left: 10px;
        bottom: 10px;
        padding: 20px;
    }

    .ws-exp-box h2{
        font-size: 35px;
    }

    .ws-floating-card{
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }

}

  /* =========================
   CONTACT SECTION
========================= */

.ws-contact-section{
    position: relative;
    padding: 120px 0 60px 0;
    background: #050505;
    overflow: hidden;
    z-index: 1;
}

/* Animated Background */
.ws-contact-section::before{
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,174,0,0.12), transparent 70%);
    top: -250px;
    left: -150px;
    animation: wsRotate 15s linear infinite;
}

.ws-contact-section::after{
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,174,0,0.10), transparent 70%);
    bottom: -250px;
    right: -150px;
    animation: wsRotateReverse 18s linear infinite;
}

@keyframes wsRotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

@keyframes wsRotateReverse{
    from{
        transform: rotate(360deg);
    }
    to{
        transform: rotate(0deg);
    }
}

.ws-contact-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT SIDE */

.ws-subtitle{
    display: inline-block;
    color: #ffb300;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.ws-subtitle::after{
    content: '';
    width: 70px;
    height: 2px;
    background: #ffb300;
    position: absolute;
    top: 50%;
    left: 110%;
}

.ws-title-box h2{
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin-bottom: 25px;
}

.ws-title-box p{
    color: #bcbcbc;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 45px;
}

.ws-contact-card{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 18px;
    margin-bottom: 25px;
    transition: .4s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ws-contact-card::before{
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,179,0,0.15), transparent);
    left: 0;
    top: 0;
    transition: .5s;
}

.ws-contact-card:hover::before{
    width: 100%;
}

.ws-contact-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,179,0,0.3);
}

.ws-icon{
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffb300, #ff8800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(255, 179, 0, 0.35);
}

.ws-contact-card h4{
    color: #fff;
    margin-bottom: 2px;
    font-size: 18px;
}

.ws-contact-card p{
    color: #bfbfbf;
    line-height: 1.8;
}

.ws-socials{
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.ws-socials a{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #ffb300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: .4s;
    border: 1px solid rgba(255,255,255,0.08);
}

.ws-socials a:hover{
    background: #ffb300;
    color: #000;
    transform: translateY(-8px) rotate(360deg);
}

/* RIGHT FORM */

.ws-contact-form-box{
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 60px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.ws-form-glow{
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,179,0,0.18);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    filter: blur(60px);
    animation: wsPulse 4s infinite ease-in-out;
}

@keyframes wsPulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.3);
    }
    100%{
        transform: scale(1);
    }
}

.ws-form-header span{
    color: #ffb300;
    font-weight: 700;
    letter-spacing: 2px;
}

.ws-form-header h2{
    color: #fff;
    font-size: 45px;
    margin-top: 10px;
    margin-bottom: 40px;
    font-weight: 800;
}

.ws-contact-form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.ws-input-group{
    position: relative;
}

.ws-input-group input,
.ws-input-group textarea{
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 18px 22px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: .4s;
}

.ws-input-group textarea{
    resize: none;
}

.ws-input-group input:focus,
.ws-input-group textarea:focus{
    border-color: #ffb300;
    box-shadow: 0 0 20px rgba(255,179,0,0.25);
    transform: translateY(-3px);
}

.ws-input-group input::placeholder,
.ws-input-group textarea::placeholder{
    color: #b9b9b9;
}

.ws-full{
    grid-column: span 2;
}

.ws-btn{
    border: none;
    background: linear-gradient(135deg,#ffb300,#ff7b00);
    color: #fff;
    padding: 18px 35px;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .4s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(255,179,0,0.35);
}

.ws-btn::before{
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    left: 0;
    top: 0;
    transition: .5s;
}

.ws-btn:hover::before{
    width: 100%;
}

.ws-btn:hover{
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .ws-contact-wrapper{
        grid-template-columns: 1fr;
    }

    .ws-title-box h2{
        font-size: 40px;
    }

    .ws-form-header h2{
        font-size: 35px;
    }
}

@media(max-width:767px){

    .ws-contact-section{
        padding: 80px 0;
    }

    .ws-contact-form{
        grid-template-columns: 1fr;
    }

    .ws-full{
        grid-column: span 1;
    }

    .ws-contact-form-box{
        padding: 35px 25px;
    }

    .ws-title-box h2{
        font-size: 32px;
    }

    .ws-form-header h2{
        font-size: 28px;
    }
}

 /* =========================
   CONTACT SECTION
========================= */

.ws-contact-section{
    position: relative;
    padding: 120px 0 60px 0;
    background: #050505;
    overflow: hidden;
    z-index: 1;
}

/* Animated Background */
.ws-contact-section::before{
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,174,0,0.12), transparent 70%);
    top: -250px;
    left: -150px;
    animation: wsRotate 15s linear infinite;
}

.ws-contact-section::after{
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,174,0,0.10), transparent 70%);
    bottom: -250px;
    right: -150px;
    animation: wsRotateReverse 18s linear infinite;
}

@keyframes wsRotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

@keyframes wsRotateReverse{
    from{
        transform: rotate(360deg);
    }
    to{
        transform: rotate(0deg);
    }
}

.ws-contact-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT SIDE */

.ws-subtitle{
    display: inline-block;
    color: #ffb300;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.ws-subtitle::after{
    content: '';
    width: 70px;
    height: 2px;
    background: #ffb300;
    position: absolute;
    top: 50%;
    left: 110%;
}

.ws-title-box h2{
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin-bottom: 25px;
}

.ws-title-box p{
    color: #bcbcbc;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 45px;
}

.ws-contact-card{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 18px;
    margin-bottom: 25px;
    transition: .4s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ws-contact-card::before{
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,179,0,0.15), transparent);
    left: 0;
    top: 0;
    transition: .5s;
}

.ws-contact-card:hover::before{
    width: 100%;
}

.ws-contact-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,179,0,0.3);
}

.ws-icon{
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffb300, #ff8800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(255, 179, 0, 0.35);
}

.ws-contact-card h4{
    color: #fff;
    margin-bottom: 2px;
    font-size: 18px;
}

.ws-contact-card p{
    color: #bfbfbf;
    line-height: 1.8;
}

.ws-socials{
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.ws-socials a{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #ffb300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: .4s;
    border: 1px solid rgba(255,255,255,0.08);
}

.ws-socials a:hover{
    background: #ffb300;
    color: #000;
    transform: translateY(-8px) rotate(360deg);
}

/* RIGHT FORM */

.ws-contact-form-box{
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 60px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.ws-form-glow{
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,179,0,0.18);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    filter: blur(60px);
    animation: wsPulse 4s infinite ease-in-out;
}

@keyframes wsPulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.3);
    }
    100%{
        transform: scale(1);
    }
}

.ws-form-header span{
    color: #ffb300;
    font-weight: 700;
    letter-spacing: 2px;
}

.ws-form-header h2{
    color: #fff;
    font-size: 45px;
    margin-top: 10px;
    margin-bottom: 40px;
    font-weight: 800;
}

.ws-contact-form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.ws-input-group{
    position: relative;
}

.ws-input-group input,
.ws-input-group textarea{
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 18px 22px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: .4s;
}

.ws-input-group textarea{
    resize: none;
}

.ws-input-group input:focus,
.ws-input-group textarea:focus{
    border-color: #ffb300;
    box-shadow: 0 0 20px rgba(255,179,0,0.25);
    transform: translateY(-3px);
}

.ws-input-group input::placeholder,
.ws-input-group textarea::placeholder{
    color: #b9b9b9;
}

.ws-full{
    grid-column: span 2;
}

.ws-btn{
    border: none;
    background: linear-gradient(135deg,#ffb300,#ff7b00);
    color: #fff;
    padding: 18px 35px;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .4s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(255,179,0,0.35);
}

.ws-btn::before{
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    left: 0;
    top: 0;
    transition: .5s;
}

.ws-btn:hover::before{
    width: 100%;
}

.ws-btn:hover{
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .ws-contact-wrapper{
        grid-template-columns: 1fr;
    }

    .ws-title-box h2{
        font-size: 40px;
    }

    .ws-form-header h2{
        font-size: 35px;
    }
}

@media(max-width:767px){

    .ws-contact-section{
        padding: 80px 0;
    }

    .ws-contact-form{
        grid-template-columns: 1fr;
    }

    .ws-full{
        grid-column: span 1;
    }

    .ws-contact-form-box{
        padding: 35px 25px;
    }

    .ws-title-box h2{
        font-size: 32px;
    }

    .ws-form-header h2{
        font-size: 28px;
    }
}

/* =========================================
   PREMIUM SERVICE DESIGN
========================================= */

.tg-service-area{
    position: relative;
    padding: 120px 0;
    background: #f7f8fc;
    overflow: hidden;
}

/* BACKGROUND GLOW */

.tg-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .15;
}

.tg-glow-one{
    width: 500px;
    height: 500px;
    background: #ffb300;
    top: -180px;
    left: -180px;
    animation: tgFloat 7s infinite alternate;
}

.tg-glow-two{
    width: 450px;
    height: 450px;
    background: #ff6600;
    bottom: -180px;
    right: -180px;
    animation: tgFloat2 7s infinite alternate;
}

@keyframes tgFloat{
    from{
        transform: translateY(0px);
    }
    to{
        transform: translateY(50px);
    }
}

@keyframes tgFloat2{
    from{
        transform: translateX(0px);
    }
    to{
        transform: translateX(-50px);
    }
}

/* TOP LAYOUT */

.tg-service-layout{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    margin-bottom: 110px;
}

/* IMAGE */

.tg-service-photo-wrap{
    position: relative;
}

.tg-main-photo{
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    position: relative;
}

.tg-main-photo::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.25),transparent);
    z-index: 1;
}

.tg-main-photo img{
    width: 100%;
    display: block;
    transition: 1s;
}

.tg-main-photo:hover img{
    transform: scale(1.08);
}

/* FLOATING BOX */

.tg-floating-box{
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    animation: tgBounce 4s infinite ease-in-out;
    z-index: 99999;
}

@keyframes tgBounce{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

.tg-floating-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#ffb300,#ff6600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tg-floating-box h4{
    font-size: 24px;
    margin-bottom: 4px;
    color: #111;
}

.tg-floating-box p{
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* CONTENT */

.tg-mini-tag{
    display: inline-block;
    background: rgba(255,179,0,0.15);
    color: #ff8c00;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.tg-service-info h2{
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #111;
    font-weight: 800;
}

.tg-service-info p{
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
    font-weight: 100;
}

/* FEATURE */

.tg-feature-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
    margin-bottom: 40px;
}

.tg-feature-item{
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: .4s;
}

.tg-feature-item:hover{
    transform: translateY(-8px);
}

.tg-feature-item i{
    color: #ff9800;
    margin-right: 10px;
}

/* BUTTON */

.tg-main-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg,#ffb300,#ff6600);
    color: #fff;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 16px;
    font-weight: 700;
    transition: .4s;
    box-shadow: 0 18px 40px rgba(255,179,0,0.25);
}

.tg-main-btn:hover{
    transform: translateY(-6px);
}

/* CARD GRID */

.tg-card-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-bottom: 110px;
}

.tg-service-card{
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: .5s;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.tg-service-card:hover{
    transform: translateY(-15px);
}

.tg-card-image{
    overflow: hidden;
}

.tg-card-image img{
    width: 100%;
    display: block;
    transition: 1s;
}

.tg-service-card:hover img{
    transform: scale(1.08);
}

.tg-card-body{
    padding: 30px;
}

.tg-card-icon{
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg,#ffb300,#ff6600);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    margin-bottom: 25px;
}

.tg-card-body h3{
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111;
}

.tg-card-body p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}

.tg-card-body a{
    color: #ff8c00;
    font-weight: 700;
    text-decoration: none;
}

/* CTA */

.tg-cta-box{
    background: linear-gradient(135deg,#111,#1f1f1f);
    border-radius: 35px;
    padding:30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.tg-cta-box::before{
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,179,0,0.15);
    border-radius: 50%;
    right: -80px;
    top: -80px;
}

.tg-cta-content span{
    color: #ffb300;
    font-weight: 700;
    letter-spacing: 1px;
}

.tg-cta-content h2{
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
    line-height: 1.2;
    font-weight: bold;
}

.tg-cta-btn{
    background: linear-gradient(135deg, #ffb300, #ff6600);
    color: #fff;
    text-decoration: none;
    padding: 12px 36px;
    border-radius: 16px;
    font-weight: 700;
    transition: .4s;
    font-size: 14px;
}

.tg-cta-btn:hover{
    transform: translateY(-6px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .tg-service-layout{
        grid-template-columns: 1fr;
    }

    .tg-card-grid{
        grid-template-columns: 1fr;
    }

    .tg-cta-box{
        flex-direction: column;
        text-align: center;
    }

    .tg-service-info h2,
    .tg-cta-content h2{
        font-size: 38px;
    }

}

@media(max-width:767px){

    .tg-service-area{
        padding: 120px 0;
    }

    .tg-feature-wrapper{
        grid-template-columns: 1fr;
    }

    .tg-service-info h2,
    .tg-cta-content h2{
        font-size: 30px;
    }

    .tg-floating-box{
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .tg-cta-box{
        padding: 40px 25px;
    }

}

/* =========================================
   PREMIUM SERVICE DESIGN
========================================= */

.tg-service-area{
    position: relative;
    padding: 120px 0;
    background: #f7f8fc;
    overflow: hidden;
}

/* BACKGROUND GLOW */

.tg-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .15;
}

.tg-glow-one{
    width: 500px;
    height: 500px;
    background: #ffb300;
    top: -180px;
    left: -180px;
    animation: tgFloat 7s infinite alternate;
}

.tg-glow-two{
    width: 450px;
    height: 450px;
    background: #ff6600;
    bottom: -180px;
    right: -180px;
    animation: tgFloat2 7s infinite alternate;
}

@keyframes tgFloat{
    from{
        transform: translateY(0px);
    }
    to{
        transform: translateY(50px);
    }
}

@keyframes tgFloat2{
    from{
        transform: translateX(0px);
    }
    to{
        transform: translateX(-50px);
    }
}

/* TOP LAYOUT */

.tg-service-layout{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    margin-bottom: 110px;
}

/* IMAGE */

.tg-service-photo-wrap{
    position: relative;
}

.tg-main-photo{
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    position: relative;
}

.tg-main-photo::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.25),transparent);
    z-index: 1;
}

.tg-main-photo img{
    width: 100%;
    display: block;
    transition: 1s;
}

.tg-main-photo:hover img{
    transform: scale(1.08);
}

/* FLOATING BOX */

.tg-floating-box{
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    animation: tgBounce 4s infinite ease-in-out;
    z-index: 99999;
}

@keyframes tgBounce{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

.tg-floating-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#ffb300,#ff6600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tg-floating-box h4{
    font-size: 24px;
    margin-bottom: 4px;
    color: #111;
}

.tg-floating-box p{
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* CONTENT */

.tg-mini-tag{
    display: inline-block;
    background: rgba(255,179,0,0.15);
    color: #ff8c00;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.tg-service-info h2{
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #111;
    font-weight: 800;
}

.tg-service-info p{
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
    font-weight: 100;
}

/* FEATURE */

.tg-feature-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
    margin-bottom: 40px;
}

.tg-feature-item{
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: .4s;
}

.tg-feature-item:hover{
    transform: translateY(-8px);
}

.tg-feature-item i{
    color: #ff9800;
    margin-right: 10px;
}

/* BUTTON */

.tg-main-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg,#ffb300,#ff6600);
    color: #fff;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 16px;
    font-weight: 700;
    transition: .4s;
    box-shadow: 0 18px 40px rgba(255,179,0,0.25);
}

.tg-main-btn:hover{
    transform: translateY(-6px);
}

/* CARD GRID */

.tg-card-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-bottom: 110px;
}

.tg-service-card{
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: .5s;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.tg-service-card:hover{
    transform: translateY(-15px);
}

.tg-card-image{
    overflow: hidden;
}

.tg-card-image img{
    width: 100%;
    display: block;
    transition: 1s;
}

.tg-service-card:hover img{
    transform: scale(1.08);
}

.tg-card-body{
    padding: 30px;
}

.tg-card-icon{
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg,#ffb300,#ff6600);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    margin-bottom: 25px;
}

.tg-card-body h3{
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111;
}

.tg-card-body p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}

.tg-card-body a{
    color: #ff8c00;
    font-weight: 700;
    text-decoration: none;
}

/* CTA */

.tg-cta-box{
    background: linear-gradient(135deg,#111,#1f1f1f);
    border-radius: 35px;
    padding:30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.tg-cta-box::before{
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,179,0,0.15);
    border-radius: 50%;
    right: -80px;
    top: -80px;
}

.tg-cta-content span{
    color: #ffb300;
    font-weight: 700;
    letter-spacing: 1px;
}

.tg-cta-content h2{
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
    line-height: 1.2;
    font-weight: bold;
}

.tg-cta-btn{
    background: linear-gradient(135deg, #ffb300, #ff6600);
    color: #fff;
    text-decoration: none;
    padding: 12px 36px;
    border-radius: 16px;
    font-weight: 700;
    transition: .4s;
    font-size: 14px;
}

.tg-cta-btn:hover{
    transform: translateY(-6px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .tg-service-layout{
        grid-template-columns: 1fr;
    }

    .tg-card-grid{
        grid-template-columns: 1fr;
    }

    .tg-cta-box{
        flex-direction: column;
        text-align: center;
    }

    .tg-service-info h2,
    .tg-cta-content h2{
        font-size: 38px;
    }

}

@media(max-width:767px){

    .tg-service-area{
        padding: 120px 0;
    }

    .tg-feature-wrapper{
        grid-template-columns: 1fr;
    }

    .tg-service-info h2,
    .tg-cta-content h2{
        font-size: 30px;
    }

    .tg-floating-box{
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .tg-cta-box{
        padding: 40px 25px;
    }

}