 /* =========================
   LUXURY FOOTER
========================= */

.luxury-footer{

    background: #082A47;

    padding-top: 100px;

    position: relative;

    overflow: hidden;
}

/* GLOW */

.footer-glow{

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(200,155,60,0.08);

    border-radius: 50%;

    top: -250px;
    right: -250px;

    filter: blur(120px);
}

/* CONTAINER */

.container{
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* GRID */

.footer-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 40px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* BOX */

.footer-box{

    position: relative;

}

@keyframes floatBox{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* TITLE */

.footer-box h3{

    color: #ffffff;

    font-size: 28px;

    margin-bottom: 30px;

    font-family: cinzel;

    position: relative;
}

/* GOLD LINE */

.footer-box h3::after{

    content: "";

    position: absolute;

    width: 60px;
    height: 2px;

    background: #C89B3C;

    left: 0;
    bottom: -10px;

    animation: lineMove 2s infinite alternate;
}

@keyframes lineMove{

    from{
        width: 20px;
    }

    to{
        width: 70px;
    }
}

/* CONTACT */

.footer-contact{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li{

    display: flex;

    align-items: flex-start;

    margin-bottom: 25px;

    color: #BDBDBD;

    line-height: 1.8;
}

.footer-contact i{

    color: #C89B3C;

    margin-right: 15px;

    font-size: 18px;

    margin-top: 5px;
}

.footer-contact a{

    color: #BDBDBD;

    text-decoration: none;

    transition: 0.4s ease;
}

.footer-contact a:hover{
    color: #C89B3C;
}

/* LINKS */

.footer-links{

    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li{

    margin-bottom: 18px;

    color: #BDBDBD;

    transition: 0.4s ease;

    position: relative;

    padding-left: 18px;
}

.footer-links li::before{

    content: "›";

    position: absolute;

    left: 0;

    color: #C89B3C;

    transition: 0.4s ease;
}

.footer-links li:hover{

    color: #ffffff;

    transform: translateX(8px);
}

.footer-links a{

    color: #BDBDBD;

    text-decoration: none;

    transition: 0.4s ease;
}

.footer-links a:hover{
    color: #ffffff;
}

/* TEXT */

.footer-text{

    color: #BDBDBD;

    line-height: 1.9;

    margin-bottom: 30px;
}

/* SOCIAL */

.footer-social{

    display: flex;

    gap: 15px;
}

.footer-social a{

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    transition: 0.5s ease;

    position: relative;

    overflow: hidden;
}

/* SHINE */

.footer-social a::before{

    content: "";

    position: absolute;

    width: 200%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    top: 0;
    left: -100%;

    transition: 0.7s;
}

.footer-social a:hover::before{
    left: 100%;
}

/* HOVER */

.footer-social a:hover{

    background: linear-gradient(
        135deg,
        #C89B3C,
        #F4D58D
    );

    color: #000;

    transform: translateY(-8px) rotate(360deg);

    box-shadow:
        0 10px 30px rgba(200,155,60,0.35);
}

/* BOTTOM */

.footer-bottom{

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 30px 0;

    flex-wrap: wrap;

    gap: 20px;
}

/* LOGO */

.footer-logo img{
    height: 55px;
}

/* COPYRIGHT */

.footer-bottom p{

    color: #BDBDBD;

    margin: 0;
}

/* DESIGN */

.footer-bottom a{

    color: #C89B3C;

    text-decoration: none;

    transition: 0.4s ease;
}

.footer-bottom a:hover{
    color: #ffffff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .footer-grid{

        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:767px){

    .luxury-footer{
        padding-top: 80px;
    }

    .footer-grid{

        grid-template-columns: 1fr;
    }

    .footer-bottom{

        flex-direction: column;

        text-align: center;
    }

    .footer-box h3{
        font-size: 24px;
    }
}
                /*//////////*/
                /* =========================
   DARK CLIENTS SECTION
========================= */

.dark-clients-section{

    background: #082A47;

    padding: 120px 0;

    overflow: hidden;

    position: relative;
}

/* GOLD GLOW */

.dark-clients-section::before{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(200,155,60,0.08);

    border-radius: 50%;

    top: -220px;
    right: -220px;

    filter: blur(100px);
}

/* CONTAINER */

.container{
    width: 90%;
    margin: auto;
}

/* =========================
   HEADING
========================= */

.clients-heading{

    text-align: center;

    margin-bottom: 70px;
}

.clients-heading h5{

    color: #C89B3C;

    font-size: 14px;

    letter-spacing: 4px;

    margin-bottom: 20px;

    position: relative;

    display: inline-block;
}

/* ANIMATED LINE */

.clients-heading h5::after{

    content: "";

    position: absolute;

    width: 60%;
    height: 2px;

    background: #C89B3C;

    left: 20%;
    bottom: -8px;

    animation: lineMove 2s infinite alternate;
}

@keyframes lineMove{

    from{
        width: 20%;
        left: 40%;
    }

    to{
        width: 80%;
        left: 10%;
    }
}

.clients-heading h2{

    font-size: 54px;

    color: #ffffff;

    margin-bottom: 20px;

    font-family: cinzel;
}

.clients-heading p{

    max-width: 700px;

    margin: auto;

    color: #BDBDBD;

    line-height: 1.9;

    font-size: 17px;
}

/* =========================
   SLIDER
========================= */

.clients-slider{

    overflow: hidden;

    position: relative;

    padding: 25px 0;
}

/* TRACK */

.clients-track{

    display: flex;

    align-items: center;

    gap: 30px;

    width: max-content;

    animation: slideClients 30s linear infinite;
}

/* PAUSE ON HOVER */

.clients-slider:hover .clients-track{
    animation-play-state: paused;
}

/* ANIMATION */

@keyframes slideClients{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }
}

/* =========================
   CLIENT LOGO CARD
========================= */

.client-logo{

    width: 220px;

    height: 130px;

    background: rgba(255,255,255,0.04);

    backdrop-filter: blur(10px);

    border-radius: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);

    transition: 0.5s ease;

    /*animation: floatingLogo 4s ease-in-out infinite;*/
}

/* FLOATING */

@keyframes floatingLogo{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* GOLD GLOW */

.client-logo::after{

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    background: rgba(200,155,60,0.15);

    border-radius: 50%;

    top: -60px;
    right: -60px;

    filter: blur(20px);
}

/* SHINE EFFECT */

.client-logo::before{

    content: "";

    position: absolute;

    width: 200%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );

    top: 0;
    left: -100%;

    transition: 0.8s;
}

.client-logo:hover::before{
    left: 100%;
}

/* HOVER */

.client-logo:hover{

    transform: translateY(-15px) scale(1.05);

    border-color: #C89B3C;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35),
        0 10px 30px rgba(200,155,60,0.25);
}

/* IMAGE */

.client-logo img{

    max-width: 100%;

    max-height: 70px;

    object-fit: contain;

    filter: grayscale(100%) brightness(0.9);

    transition: 0.5s ease;

    position: relative;

    z-index: 2;
}

/* IMAGE HOVER */

.client-logo:hover img{

    filter: grayscale(0%) brightness(1);

    transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .clients-heading h2{
        font-size: 42px;
    }

    .client-logo{
        width: 190px;
        height: 120px;
    }
}

@media(max-width:767px){

    .dark-clients-section{
        padding: 80px 0;
    }

    .clients-heading h2{
        font-size: 34px;
    }

    .client-logo{
        width: 160px;
        height: 100px;

        padding: 20px;
    }

    .client-logo img{
        max-height: 50px;
    }
}
                /*///////////////*/
                /* =========================
  /* =========================
   CLIENT REVIEW SECTION
========================= */

.client-review-section{
    background: #fff;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

/* BACKGROUND GLOW */

.client-review-section::before{
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    background: rgba(200,155,60,0.08);

    border-radius: 50%;

    top: -180px;
    right: -180px;

    filter: blur(100px);
}

/* CONTAINER */

.container{
    width: 90%;
    margin: auto;
}

/* HEADING */

.review-heading{
    text-align: center;
    margin-bottom: 70px;
}

.review-heading h5{
    color: #C89B3C;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.review-heading h5::after{
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background: #C89B3C;
    left: 20%;
    bottom: -8px;

    animation: lineMove 2s infinite alternate;
}

@keyframes lineMove{

    from{
        width: 20%;
        left: 40%;
    }

    to{
        width: 80%;
        left: 10%;
    }
}

.review-heading h2{
    font-size: 52px;
    color: #000;
    margin-bottom: 20px;
    font-family: cinzel;
}

.review-heading p{
    max-width: 700px;
    margin: auto;
    color:  #000;
    line-height: 1.9;
    font-size: 17px;
}

/* SLIDER */

.review-slider{
    overflow: hidden;
    position: relative;
}

/* TRACK */

.review-track{
    display: flex;
    gap: 30px;
    width: max-content;

    animation: slideReviews 25s linear infinite;
}

.review-slider:hover .review-track{
    animation-play-state: paused;
}

/* SLIDE ANIMATION */

@keyframes slideReviews{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }
}

/* CARD */

.review-card{

    width: 350px;

    background: rgba(255,255,255,0.75);

    backdrop-filter: blur(12px);

    border-radius: 30px;

    padding: 40px;

    text-align: center;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.5);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08),
        0 5px 20px rgba(200,155,60,0.08);

    transition: 0.5s ease;

    /*animation: floatingCard 4s ease-in-out infinite;*/
}

/* FLOATING EFFECT */

@keyframes floatingCard{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* HOVER */

.review-card:hover{

    transform: translateY(-18px);

    border-color: #C89B3C;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.12),
        0 10px 35px rgba(200,155,60,0.22);
}

/* SHINE EFFECT */

.review-card::before{

    content: "";

    position: absolute;

    width: 200%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );

    top: 0;
    left: -100%;

    transition: 0.8s;
}

.review-card:hover::before{
    left: 100%;
}

/* CLIENT IMAGE */

.client-image{
    width: 100px;
    height: 100px;

    margin: auto;
    margin-bottom: 25px;

    position: relative;
}

.client-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 50%;

    border: 4px solid #F4D58D;
}

/* ROTATING BORDER */

.client-image::after{

    content: "";

    position: absolute;
    inset: -7px;

    border-radius: 50%;

    /*border: 2px dashed #C89B3C;*/

    animation: rotateBorder 12s linear infinite;
}

@keyframes rotateBorder{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

/* NAME */

.review-card h3{
    font-size: 28px;
    color: #000;
    margin-bottom: 8px;
    font-family: cinzel;
}

/* LOCATION */

.review-card span{
    color: #C89B3C;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
}

/* TEXT */

.review-card p{
    color:  #000;
    line-height: 1.9;
    font-size: 16px;
    margin: 0;
}

/* RESPONSIVE */

@media(max-width:767px){

    .client-review-section{
        padding: 80px 0;
    }

    .review-heading h2{
        font-size: 36px;
    }

    .review-card{
        width: 300px;
        padding: 30px;
    }
}


                /* =========================
   LUXURY FOOTER
========================= */

.luxury-footer{

    background: #082A47;

    padding-top: 100px;

    position: relative;

    overflow: hidden;
}

/* GLOW */

.footer-glow{

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(200,155,60,0.08);

    border-radius: 50%;

    top: -250px;
    right: -250px;

    filter: blur(120px);
}

/* CONTAINER */

.container{
    width: 90%;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* GRID */

.footer-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 40px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* BOX */

.footer-box{

    position: relative;

}

@keyframes floatBox{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* TITLE */

.footer-box h3{

    color: #ffffff;

    font-size: 28px;

    margin-bottom: 30px;

    font-family: cinzel;

    position: relative;
}

/* GOLD LINE */

.footer-box h3::after{

    content: "";

    position: absolute;

    width: 60px;
    height: 2px;

    background: #C89B3C;

    left: 0;
    bottom: -10px;

    animation: lineMove 2s infinite alternate;
}

@keyframes lineMove{

    from{
        width: 20px;
    }

    to{
        width: 70px;
    }
}

/* CONTACT */

.footer-contact{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li{

    display: flex;

    align-items: flex-start;

    margin-bottom: 25px;

    color: #BDBDBD;

    line-height: 1.8;
}

.footer-contact i{

    color: #C89B3C;

    margin-right: 15px;

    font-size: 18px;

    margin-top: 5px;
}

.footer-contact a{

    color: #BDBDBD;

    text-decoration: none;

    transition: 0.4s ease;
}

.footer-contact a:hover{
    color: #C89B3C;
}

/* LINKS */

.footer-links{

    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li{

    margin-bottom: 18px;

    color: #BDBDBD;

    transition: 0.4s ease;

    position: relative;

    padding-left: 18px;
}

.footer-links li::before{

    content: "›";

    position: absolute;

    left: 0;

    color: #C89B3C;

    transition: 0.4s ease;
}

.footer-links li:hover{

    color: #ffffff;

    transform: translateX(8px);
}

.footer-links a{

    color: #BDBDBD;

    text-decoration: none;

    transition: 0.4s ease;
}

.footer-links a:hover{
    color: #ffffff;
}

/* TEXT */

.footer-text{

    color: #BDBDBD;

    line-height: 1.9;

    margin-bottom: 30px;
}

/* SOCIAL */

.footer-social{

    display: flex;

    gap: 15px;
}

.footer-social a{

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    transition: 0.5s ease;

    position: relative;

    overflow: hidden;
}

/* SHINE */

.footer-social a::before{

    content: "";

    position: absolute;

    width: 200%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    top: 0;
    left: -100%;

    transition: 0.7s;
}

.footer-social a:hover::before{
    left: 100%;
}

/* HOVER */

.footer-social a:hover{

    background: linear-gradient(
        135deg,
        #C89B3C,
        #F4D58D
    );

    color: #000;

    transform: translateY(-8px) rotate(360deg);

    box-shadow:
        0 10px 30px rgba(200,155,60,0.35);
}

/* BOTTOM */

.footer-bottom{

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 30px 0;

    flex-wrap: wrap;

    gap: 20px;
}

/* LOGO */

.footer-logo img{
    height: 55px;
}

/* COPYRIGHT */

.footer-bottom p{

    color: #BDBDBD;

    margin: 0;
}

/* DESIGN */

.footer-bottom a{

    color: #C89B3C;

    text-decoration: none;

    transition: 0.4s ease;
}

.footer-bottom a:hover{
    color: #ffffff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .footer-grid{

        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:767px){

    .luxury-footer{
        padding-top: 80px;
    }

    .footer-grid{

        grid-template-columns: 1fr;
    }

    .footer-bottom{

        flex-direction: column;

        text-align: center;
    }

    .footer-box h3{
        font-size: 24px;
    }
}


/*================================
 TECHNOSWIFT CORPORATE SECTION
================================*/

.ts-corp-section{

    background:#fff;

    padding:120px 0;

    overflow:hidden;

    position:relative;
}

/* GOLD BACKGROUND */

.ts-corp-section::before{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    background:
    rgba(200,155,60,.08);

    border-radius:50%;

    top:-250px;
    left:-250px;

    filter:blur(120px);
}

/* WRAPPER */

.ts-corp-wrapper{

    width:90%;

    margin:auto;

    display:flex;

    align-items:center;

    gap:80px;

    position:relative;

    z-index:2;
}

/*=====================
 IMAGE
=====================*/

.ts-corp-left{

    width:50%;

    position:relative;

    animation:
    tsImageFloat
    5s
    ease-in-out
    infinite;
}

.ts-corp-left img{

    width:100%;

    height:580px;

    object-fit:cover;

    border-radius:35px;

    transition:.6s;

    box-shadow:
    0 30px 80px
    rgba(0,0,0,.10);
}

.ts-corp-left:hover img{

    transform:
    scale(1.03);
}

/* FRAME */

.ts-corp-left::after{

    content:"";

    position:absolute;

    top:18px;

    left:18px;

    width:100%;

    height:100%;

    border:
    2px solid
    #C89B3C;

    border-radius:35px;

    z-index:-1;
}

/*=====================
 CONTENT
=====================*/

.ts-corp-right{

    width:50%;

    animation:
    tsContentShow
    1s ease;
}

/* LABEL */

.ts-corp-tag{

    display:inline-block;

    color:#C89B3C;

    font-size:14px;

    letter-spacing:5px;

    margin-bottom:22px;
}

/* TITLE */

.ts-corp-right h2{

    font-size:56px;

    line-height:1.15;

    color:#000;

    margin-bottom:25px;

    font-family:
    cinzel,
    serif;
}

/* SUBTITLE */

.ts-corp-right h5{

    color:#C89B3C;

    font-size:20px;

    line-height:1.8;

    margin-bottom:25px;

    font-weight:500;
}

/* DESCRIPTION */

.ts-corp-right p{

    color: #000;

    font-size:17px;

    line-height:2;

    margin-bottom:40px;
}

/* BUTTON */

.ts-corp-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:
    18px 40px;

    text-decoration:none;

    color:#000;

    font-weight:600;

    border-radius:60px;

    background:

    linear-gradient(
    135deg,
    #C89B3C,
    #F4D58D
    );

    transition:.5s;

    box-shadow:
    0 15px 40px
    rgba(200,155,60,.25);
}

/* BUTTON HOVER */

.ts-corp-btn:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 60px
    rgba(200,155,60,.35);
}

/*=====================
 ANIMATIONS
=====================*/

@keyframes tsImageFloat{

0%{

transform:
translateY(0);

}

50%{

transform:
translateY(-16px);

}

100%{

transform:
translateY(0);

}

}

@keyframes tsContentShow{

from{

opacity:0;

transform:
translateX(80px);

}

to{

opacity:1;

transform:
translateX(0);

}

}

/*=====================
 RESPONSIVE
=====================*/

@media(max-width:991px){

.ts-corp-wrapper{

flex-direction:column;

gap:50px;

}

.ts-corp-left,
.ts-corp-right{

width:100%;

}

.ts-corp-right h2{

font-size:42px;

}

}

@media(max-width:767px){

.ts-corp-section{

padding:80px 0;

}

.ts-corp-left img{

height:360px;

}

.ts-corp-right h2{

font-size:34px;

}

.ts-corp-right h5{

font-size:18px;

}

}