 <style>
                /*///////////////*/
                /* =========================
   LUXURY ABOUT SECTION
========================= */

.luxury-about-section{

    background: #fff;

    padding: 120px 0;

    position: relative;

    overflow: hidden;
}

/* GOLD GLOW */

.luxury-about-section::before{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(200,155,60,0.08);

    border-radius: 50%;

    top: -220px;
    left: -220px;

    filter: blur(100px);
}

/* CONTAINER */

.container{

    width: 90%;

    margin: auto;

    position: relative;

    z-index: 2;
}

/* WRAPPER */

.about-wrapper{

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}

/* CONTENT */

.about-content{
    width: 50%;
}

/* HEADING */

.section-heading h5{

    color: #C89B3C;

    font-size: 14px;

    letter-spacing: 4px;

    margin-bottom: 20px;

    position: relative;

    display: inline-block;
}

/* ANIMATED LINE */

.section-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%;
    }
}

/* TITLE */

.section-heading h2{

    font-size: 54px;

    line-height: 1.2;

    color: #000;

    margin-bottom: 25px;

    font-family: cinzel;
}

/* TEXT */

.section-heading p{

    color:  #000;

    line-height: 2;

    font-size: 17px;
}

/* =========================
   COUNTER GRID
========================= */

.about-counter-grid{

    width: 50%;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 30px;
}

/* CARD */

.counter-card{

    background: rgba(255,255,255,0.7);

    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 15px rgba(200,155,60,0.08);

    transition: 0.5s ease;

    animation: floatingCard 4s ease-in-out infinite;
}

/* FULL WIDTH LAST CARD */

.counter-card:last-child{
    grid-column: span 2;
}

/* FLOATING */

@keyframes floatingCard{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* GOLD SHINE */

.counter-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;
}

.counter-card:hover::before{
    left: 100%;
}

/* GOLD GLOW */

.counter-card::after{

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    background: rgba(200,155,60,0.12);

    border-radius: 50%;

    top: -60px;
    right: -60px;

    filter: blur(20px);
}

/* HOVER */

.counter-card:hover{

    transform: translateY(-15px);

    border-color: #C89B3C;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.12),
        0 10px 30px rgba(200,155,60,0.22);
}

/* ICON */

.counter-icon{

    width: 85px;
    height: 85px;

    margin: auto;

    margin-bottom: 25px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #C89B3C,
        #F4D58D
    );

    display: flex;

    align-items: center;
    justify-content: center;

    animation: pulseGlow 2s infinite;
}

/* ICON */

.counter-icon i{

    color: #000;

    font-size: 30px;
}

/* PULSE */

@keyframes pulseGlow{

    0%{
        box-shadow: 0 0 0 0 rgba(200,155,60,0.4);
    }

    70%{
        box-shadow: 0 0 0 20px rgba(200,155,60,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(200,155,60,0);
    }
}

/* NUMBER */

.counter-card h3{

    font-size: 48px;

    color: #000;

    margin-bottom: 10px;

    font-family: cinzel;
}

/* TEXT */

.counter-card span{

    color:  #000;

    font-size: 17px;

    letter-spacing: 0.5px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-wrapper{
        flex-direction: column;
    }

    .about-content,
    .about-counter-grid{
        width: 100%;
    }

    .section-heading h2{
        font-size: 42px;
    }
}

@media(max-width:767px){

    .luxury-about-section{
        padding: 80px 0;
    }

    .about-counter-grid{
        grid-template-columns: 1fr;
    }

    .counter-card:last-child{
        grid-column: span 1;
    }

    .section-heading h2{
        font-size: 34px;
    }

    .counter-card{
        padding: 30px;
    }

    .counter-card h3{
        font-size: 40px;
    }
}
                /* =========================
   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 GALLERY SECTION
========================= */

.luxury-gallery-section{
    background: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND GLOW */

.luxury-gallery-section::before{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(200,155,60,0.08);
    border-radius: 50%;
    top: -180px;
    left: -180px;
    filter: blur(90px);
}

/* HEADING */

.gallery-heading{
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
}

.gallery-heading h5{
    color: #C89B3C;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.gallery-heading h5::after{
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background: #C89B3C;
    left: 20%;
    bottom: -8px;
    animation: lineAnimate 2s infinite alternate;
}

@keyframes lineAnimate{
    from{
        width: 20%;
        left: 40%;
    }
    to{
        width: 80%;
        left: 10%;
    }
}

.gallery-heading h2{
    font-size: 52px;
    color: #000;
    margin-bottom: 20px;
    font-family: cinzel;
}

.gallery-heading p{
    color:  #000;
    font-size: 17px;
    line-height: 1.8;
}

/* GRID */

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

/* CARD */

.gallery-card{
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    animation: floatCard 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */

@keyframes floatCard{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* IMAGE */

.gallery-card img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* OVERLAY */

.gallery-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.1)
    );

    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;

    opacity: 0;
    transition: 0.5s ease;
}

/* TITLE */

.gallery-overlay h3{
    color: #fff;
    font-size: 30px;
    font-family: cinzel;
    transform: translateY(30px);
    transition: 0.5s ease;
}

/* HOVER EFFECT */

.gallery-card:hover img{
    transform: scale(1.12) rotate(2deg);
}

.gallery-card:hover .gallery-overlay{
    opacity: 1;
}

.gallery-card:hover .gallery-overlay h3{
    transform: translateY(0);
}

/* GOLD GLOW */

.gallery-card:hover{
    box-shadow: 0 20px 50px rgba(200,155,60,0.25);
}

/* BUTTON */

.gallery-btn{
    text-align: center;
    margin-top: 60px;
}

.gallery-btn a{
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg,#C89B3C,#F4D58D);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* BUTTON SHINE */

.gallery-btn a::before{
    content: "";
    position: absolute;
    width: 120%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    top: 0;
    left: -130%;
    transform: skewX(-20deg);
    transition: 0.7s;
}

.gallery-btn a:hover::before{
    left: 130%;
}

.gallery-btn a:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(200,155,60,0.35);
}

/* RESPONSIVE */

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .gallery-heading h2{
        font-size: 42px;
    }
}

@media(max-width:767px){

    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .gallery-heading h2{
        font-size: 34px;
    }

    .gallery-card img{
        height: 400px;
    }

    .luxury-gallery-section{
        padding: 80px 0;
    }
}
                /* =========================
   LUXURY SERVICE SECTION
========================= */

.luxury-service-section{
    background: linear-gradient(135deg,#000,#121212);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* GOLD GLOW EFFECT */

.luxury-service-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(200,155,60,0.08);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    filter: blur(100px);
}

/* SECTION HEADING */

.section-heading{
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

.section-heading h5{
    color: #C89B3C;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-heading h5::after{
    content: "";
    width: 60%;
    height: 2px;
    background: #C89B3C;
    position: absolute;
    left: 20%;
    bottom: -8px;
    animation: lineMove 2s infinite alternate;
}

@keyframes lineMove{
    from{
        width: 20%;
        left: 40%;
    }
    to{
        width: 80%;
        left: 10%;
    }
}

.section-heading h2{
    font-size: 52px;
    color: #fff;
    margin-bottom: 25px;
    font-family: cinzel;
}

.section-heading p{
    color: #bdbdbd;
    line-height: 1.9;
    font-size: 17px;
}

/* GRID */

.service-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

/* CARD */

.luxury-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 25px;
    padding: 45px 35px;
    transition: 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

/* GOLD SHINE */

.luxury-card::before{
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    top: 0;
    left: -100%;
    transition: 0.8s;
}

.luxury-card:hover::before{
    left: 100%;
}

/* HOVER EFFECT */

.luxury-card:hover{
    transform: translateY(-15px);
    border-color: #C89B3C;
    box-shadow: 0 20px 40px rgba(200,155,60,0.15);
}

/* ICON */

.icon-box{
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg,#C89B3C,#F4D58D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: floatIcon 3s ease-in-out infinite;
}

.icon-box i{
    color: #000;
    font-size: 32px;
}

@keyframes floatIcon{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* TITLE */

.luxury-card h3{
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: cinzel;
}

/* TEXT */

.luxury-card p{
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* BUTTON */

.luxury-card a{
    color: #C89B3C;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

.luxury-card a::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #C89B3C;
    left: 0;
    bottom: -5px;
    transition: 0.4s;
}

.luxury-card a:hover::after{
    width: 100%;
}

/* RESPONSIVE */

@media(max-width:991px){

    .service-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .section-heading h2{
        font-size: 40px;
    }
}

@media(max-width:767px){

    .service-grid{
        grid-template-columns: 1fr;
    }

    .section-heading h2{
        font-size: 34px;
    }

    .luxury-service-section{
        padding: 80px 0;
    }
}
                /*///////////////*/
                /* =========================   SERVICES SECTION ========================= */

.services-section{
    position: relative;
    padding: 100px 0;
    background: #082A47;
    overflow: hidden;
}

/* Background Glow */
.services-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0, 183, 255, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    filter: blur(50px);
}

.services-section .container{
    position: relative;
    z-index: 2;
}

/* =========================
   SECTION HEADER
========================= */

.section-header{
    margin-bottom: 60px;
}

.section-header .sub-title{
    color: #00b7ff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    /*text-transform: uppercase;*/
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2{
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p{
    color: #cbd5e1;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    font-size: 16px;
}

/* =========================
   GRID
========================= */

.services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================
   CARD
========================= */

.service-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.service-card:hover{
    transform: translateY(-12px);
    border-color: #00b7ff;
    box-shadow: 0 20px 50px rgba(0,183,255,0.25);
}

/* =========================
   IMAGE
========================= */

.service-img{
    overflow: hidden;
    height: 260px;
}

.service-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover .service-img img{
    transform: scale(1.1);
}

/* =========================
   CONTENT
========================= */

.service-content{
    padding: 30px;
    position: relative;
}

.service-icon{
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg,#00b7ff,#0077ff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0,183,255,0.35);
}

.service-content h3{
    color: #fff;
    font-size: 26px;
    margin: 25px 0 15px;
    font-weight: 700;
}

.service-content p{
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* =========================
   BUTTON
========================= */

.service-btn{
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid #00b7ff;
    color: #00b7ff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.service-btn:hover{
    background: #00b7ff;
    color: #fff;
    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .services-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .section-header h2{
        font-size: 38px;
    }
}

@media(max-width:767px){

    .services-grid{
        grid-template-columns: 1fr;
    }

    .section-header h2{
        font-size: 32px;
    }

    .services-section{
        padding: 70px 0;
    }
}
                /*///////////*/
                /*//////////////////*/
                .f-st{
                 /* Main Menu Style */
                 font-family:  cinzel;
                 color:#616161 !important;
                     font-weight: 600 !important;
                }
.site-navigation .menu ul.dropdown1 > li > a {
    position: relative;
    color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    height: 50%;
}

/* Animated Background */
.site-navigation .menu ul.dropdown1 > li > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #c89b63, #f5d29c);
    transition: all 0.5s ease;
    z-index: -1;
    border-radius: 50px;
}

/* Stylish Underline Effect */
.site-navigation .menu ul.dropdown1 > li > a::after {
    content: "";
    position: absolute;
    /*left: 50%;*/
    bottom: 6px;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

/* Hover Effects */
.site-navigation .menu ul.dropdown1 > li > a:hover {
    color: #081b33;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 155, 99, 0.35);
}

/* Background Slide Animation */
.site-navigation .menu ul.dropdown1 > li > a:hover::before {
    left: 0;
}

/* Underline Animation */
.site-navigation .menu ul.dropdown1 > li > a:hover::after {
    width: 60%;
}

/* Active Menu Item */
.site-navigation .menu ul.dropdown1 > li.active > a {
    background: linear-gradient(135deg, #c89b63, #f5d29c);
    color: #081b33;
    box-shadow: 0 8px 20px rgba(200, 155, 99, 0.35);
}

/* Dropdown Menu Style */
.site-navigation .menu ul.dropdown1 li ul {
    border-radius: 15px;
    overflow: hidden;
    background: #081b33;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Dropdown Item Hover */
.site-navigation .menu ul.dropdown1 li ul li a {
    transition: all 0.3s ease;
}

.site-navigation .menu ul.dropdown1 li ul li a:hover {
    background: linear-gradient(135deg, #c89b63, #f5d29c);
    color: #081b33;
    padding-left: 28px;
}
                /*////////////////*/
           
            
                /* ------------------------------      GLOBAL ANIMATION SETTINGS  --------------------------------*/
            

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Smooth hover zoom for all images */
img:hover {
    transform: scale(1.05);
    transition: .4s ease-in-out;
}

/* ------------------------------
   SECTION TITLE ANIMATION
--------------------------------*/
.section-title .title {
    position: relative;
    display: inline-block;
    animation: slideTitle 1.2s ease forwards;
}

@keyframes slideTitle {
    from { letter-spacing: -2px; opacity: 0; transform: translateY(20px); }
    to   { letter-spacing: 1px; opacity: 1; transform: translateY(0); }
}

/* ------------------------------
   FEATURED CARDS HOVER EFFECT
--------------------------------*/
.featured-imagebox {
    overflow: hidden;
    border-radius: 12px;
    transition: all .35s ease;
}

.featured-imagebox:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Thumbnail zoom */
.featured-thumbnail img {
    transition: 0.5s ease;
}
.featured-imagebox:hover .featured-thumbnail img {
    transform: scale(1.12);
}

/* ------------------------------
   ICON FLOAT EFFECT
--------------------------------*/
.featured-icon i {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

/* ------------------------------
   COUNTER NUMBERS ANIMATION
--------------------------------*/
.ttm-fid h4 span {
    display: inline-block;
    animation: counterGlow 1.5s ease-in-out infinite alternate;
}

@keyframes counterGlow {
    0%   { text-shadow: 0 0 4px rgba(255,255,255,0.3); }
    100% { text-shadow: 0 0 12px rgba(255,255,255,0.8); }
}


/* ------------------------------
   CLIENT LOGO HOVER EFFECT
--------------------------------*/
.ttm-client img {
    transition: .4s;
    filter: grayscale(100%);
}

.ttm-client:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

            </style>