@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");



html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}


body {
    font-family: "Lato", sans-serif;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}

p {
    text-align: justify;
    margin-bottom: 0px;
}

h1 {
    margin-bottom: 0px;
}

h2,
h3,
h4 {
    margin-bottom: 0px;
}

:root {

    --old-brown: #200305;
    --brown: #352613;
    --light-brown: #f3d172;
    --black: #000;
    --white: #fff;
    --red: #ba0001;
    --green: #70a430;
    --pink: #ee19c0;
    --blue: #072066;
}



/* pre loader css start here */


/* pre loader css */

#preloader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #072066;
    z-index: 999999;
    transition: .8s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* wrapper */

.loader-wrapper {
    position: relative;
    width: 320px;
    height: 360px;
}

/* glow */

.loader-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 240px;
    height: 240px;
    transform: translate(-50%, -60%);
    border-radius: 50%;
    background: rgba(255, 210, 90, .15);
    filter: blur(45px);
}

/* rotatinng ring */

.loader-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 240px;
    height: 240px;
    transform: translate(-50%, -60%);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .10);
    border-top: 3px solid #FFD15C;
    border-right: 3px solid #FFD15C;
    animation: ringRotate 2s linear infinite;
    box-shadow: 0 0 18px rgba(255, 210, 90, .35), inset 0 0 12px rgba(255, 210, 90, .18);
}

/* logo */

.loader-logo {
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 160px;
    transform: translate(-50%, -60%);
    z-index: 5;
    animation: logoFloat 2.2s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 220, 120, .45));
}

/* loading text */

.loading-text {
    position: absolute;
    left: 50%;
    top: 82%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #FFD15C;
    text-transform: uppercase;
    white-space: nowrap;
}

.loading-text span {
    animation: blink 1.3s infinite;
}

.loading-text span:nth-child(2) {
    animation-delay: .2s;
}

.loading-text span:nth-child(3) {
    animation-delay: .4s;
}

/* animations */

@keyframes ringRotate {
    from {
        transform: translate(-50%, -60%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -60%) rotate(360deg);
    }

}

@keyframes logoFloat {

    0%,
    100% {
        transform: translate(-50%, -60%) translateY(0);
    }

    50% {
        transform: translate(-50%, -60%) translateY(-8px);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: .2;
    }

    50% {
        opacity: 1;
    }
}

/* mobile */

@media(max-width:576px) {
    .loader-wrapper {
        width: 260px;
        height: 300px;
    }

    .loader-ring {
        width: 190px;
        height: 190px;
    }

    .loader-logo {
        width: 130px;
    }

    .loading-text {
        top: 80%;
        font-size: 16px;
    }
}


/* pre loader css ends here */




/* body background css */



html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    background: #072066;
    position: relative;
}

/* Fixed Left Image */

.fixed-bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url("/assets/img/banner/banner-bg-img.png") no-repeat;
    background-position: left center;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
    opacity: .95;
}

/* Dark Fade */

.fixed-bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 32, 102, 0.57) 0%, rgba(7, 32, 102, 0.511) 35%, rgba(7, 32, 102, 0.649) 70%, #072066a3 100%);
}

/* Keep all sections transparent */

.banner,
main,
section,
footer,
nav {
    background: transparent;
    position: relative;
    z-index: 2;
}

/* body background css */


/* section css */
section {
    padding: 50px 0px;

}

.section-head {
    text-align: center;
    margin-bottom: 70px;
}

.section-head .heading {
    font-size: 36px;
    font-weight: 600;
    position: relative;
    color: var(--blue);

    position: relative;
}

.section-head .heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 45%;
    height: 3px;
    width: 10%;
    background-color: var(--light-brown);
}

@media screen and (max-width: 767px) {
    p {
        font-size: 12px;
    }

    section {
        padding: 20px 0px;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .section-head .heading {
        font-size: 28px;
    }

    .section-head .heading::after {
        left: 40%;
        height: 2px;
        width: 20%;
        bottom: -10px;
    }
}

@media screen and (max-width: 575px) {
    .section-head .heading {
        font-size: 20px;
    }
}

/* section css */

/* footer css */
.footer {
    padding: 100px 0px;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 50px 0px;
    }
}

/* footer css */







/* custom css start --------------------- */



/* ----------- navbar css start here ----------- */

.navbar {
    padding: 5px;
    background: var(--white);
    box-shadow: rgba(243, 242, 242, 0.35) 0px 5px 15px;

    background: var(--blue);


}

.navbar .logo {
    border-radius: 50%;
    width: 120px;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--white);
    font-size: 20px;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--light-brown);
}

.navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--light-brown);
}

.navbar .navbar-nav .nav-item {
    position: relative;
}


.navbar .navbar-nav .nav-item::after {
    content: "";
    position: absolute;
    width: 0%;
    left: 0;
    bottom: 0%;
    height: 2px;
    background: var(--light-brown);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
    opacity: 1;
    width: 100%;
    transition: 0.5s ease-in-out;
}

.navbar-light .navbar-toggler {
    font-size: 1rem;
    border-color: var(--light-brown);
}

.navbar-light .navbar-toggler:focus {
    border: 1px solid var(--light-brown);
    box-shadow: none;
}


/* navbar login btn css */

.nav-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.nav-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
    background: #3c3b3b;
    transition: all .35s ease;
}

/* Animated Border */
.nav-btn a::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    background: conic-gradient(#ff0000,
            #ff7300,
            #ffd700,
            #00ff00,
            #00e5ff,
            #004cff,
            #7a00ff,
            #ff008c,
            #ffffff,
            #ff0000);
    animation: rotateBorder 3s linear infinite;
    z-index: -2;
}

/* Inner Background */
.nav-btn a::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #111;
    border-radius: 46px;
    z-index: -1;
}

/* Hover */
.nav-btn a:hover {
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .35),
        0 0 20px rgba(255, 215, 0, .4);
}

.nav-btn a:hover::before {
    animation-duration: 1s;
}

/* Border Rotation */
@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* navbar login btn css ends */


/* responsive navbar */

@media screen and (max-width: 1400px) {
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .navbar .navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }

    .navbar .satyamev-logo {
        display: none;
    }



    .nav-btn {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .navbar .logo {
        width: 100px;
        height: 80px;
    }

    .navbar .navbar-nav {
        display: flex;
        flex-direction: column;
        justify-content: start;
        margin-top: 20px;
    }

    .nav-btns {
        display: flex;
        align-items: start;
        justify-content: start;
        flex-direction: column;
    }
}



/* --------------- end of navbar css here ------------- */


/* ---------------- banner css start here -------------- */


.banner {
    position: relative;

    overflow: hidden;

    min-height: 100vh;
    /* background:var(--blue); */
    color: var(--white);
}

.banner .container {
    height: 100vh;
}

.banner .banner-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical Center */
    align-items: center;
    /* Horizontal Center */
    text-align: center;
}

.banner .banner-heading h2 {
    font-size: 82px;
    font-weight: 800;
    margin-bottom: 30px;
}

.banner .banner-text p {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.social-icons a {
    font-size: 40px;
    color: var(--white);
}

.banner .banner-btn {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.banner .banner-btn a {
    display: inline-block;
    background: var(--white);
    border: 2px solid var(--white);
    padding: 10px 30px;
    border-radius: 10px;
    color: var(--brown);
    font-size: 22px;
    font-weight: 600;
    transition: .4s ease-in-out;
}

.banner .banner-btn a:hover {
    background: none;
    color: var(--white);
}



#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}



@media screen and (max-width: 991px) {
    .banner .banner-heading h2 {
        font-size: 38px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .banner .banner-text p {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .social-icons {
        gap: 25px;
    }

    .social-icons a {
        font-size: 26px;
    }

    .banner .banner-btn {
        margin-top: 25px;
    }

    .banner .banner-btn a {
        padding: 5px 20px;
        font-size: 20px;
    }
}




@media screen and (max-width: 767px) {
    .banner .banner-heading h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .banner .banner-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icons a {
        font-size: 20px;
    }

    .banner .banner-btn {
        margin-top: 20px;
    }

    .banner .banner-btn a {
        padding: 5px 20px;
        font-size: 18px;
    }
}


/* marque css */

.hero-marquee {
    width: 100%;
    overflow: hidden;
    margin-bottom: 45px;
    position: relative;
    padding: 18px 0;
    border-top: 1px solid rgba(212, 175, 55, .15);
    border-bottom: 1px solid rgba(212, 175, 55, .15);
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(15px);
}

/* Left Fade */

.hero-marquee::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, #200305 15%, transparent);
    z-index: 5;
}

/* Right Fade */

.hero-marquee::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to left, #200305 15%, transparent);
    z-index: 5;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marqueeMove 30s linear infinite;
}

.hero-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    white-space: nowrap;
    margin: 0 22px;
    letter-spacing: .5px;
    transition: .35s;
}

.marquee-track span:hover {
    color: #FFD700;
}

/* Gold Dot */

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFD700;
    box-shadow: 0 0 12px #FFD700;
    margin: 0 10px;
    flex: none;
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {

    .marquee-track span {
        font-size: 16px;
        margin: 0 16px;
    }

    .hero-marquee {
        padding: 14px 0;
    }

    .hero-marquee::before,
    .hero-marquee::after {
        width: 60px;
    }
}

/* marque css */



/* ---------------- end of banner css here ------------- */




/* ------------------ sub banner css start here ------------------ */

.team-banner {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: transparent;
}

.banner-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    color: #FFD700;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, .35);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
}

.banner-title {
    margin-top: 25px;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.banner-title span {
    background: linear-gradient(90deg, #FFF5CC, #FFD700, #D4AF37, #A86D00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-text {
    max-width: 760px;
    margin: 30px auto;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .78);
}

/* Breadcrumb */

.breadcrumb {
    margin-top: 35px;
}

.breadcrumb-item {
    font-size: 17px;
}

.breadcrumb-item a {
    color: #FFD700;
    text-decoration: none;
    transition: .3s;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

/* Decorative Shapes */

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
}

.shape-1 {
    width: 260px;
    height: 260px;
    background: rgba(212, 175, 55, .18);
    top: -80px;
    left: -80px;
    animation: floatShape 7s ease-in-out infinite;

}

.shape-2 {

    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, .08);
    bottom: -70px;
    right: -70px;
    animation: floatShape 9s ease-in-out infinite reverse;

}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

}

/* responsive sub banner css */

@media screen and (max-width: 1200px) {
     .team-banner {
        padding: 50px 0 50px;
    }

    .banner-title {
        font-size: 42px;
    }

}

@media screen and (max-width: 991px) {

    
    .banner-title {
        font-size: 32px;
    }

    .banner-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {

   

    .banner-title {
        font-size: 22px;
        margin-top: 15px;
    }

    .banner-tag {
        font-size: 12px;
        padding: 5px 15px;
    }

    .banner-text {
        font-size: 14px;
        margin: 10px 0px 15px;
    }

    .breadcrumb {
    margin-top: 15px;
}

.breadcrumb-item {
    font-size: 12px;
}

}
/* responsive sub banner css */



/* ------------------ sub banner css ends here ------------------ */




/* ------------------- services css start here ------------------- */

.services {
    background: var(--white);
}

.services .service-card {
    
    box-shadow: 0 0 5px rgba(26, 25, 25, 0.12), 0 0 10px rgba(212, 175, 55, 0.562);
    padding: 20px 30px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
    min-height: 350px;
    transition: all .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 5px 8px rgba(43, 42, 42, 0.15), 0 6px 18px rgba(212, 175, 55, 0.507);
}

.services .service-card .service-icon {
    font-size: 60px;
    margin-bottom: 30px;
    color: var(--blue);
}

.services .service-card h3 {
    font-size: 32px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 30px;
}

.services .service-card p {
    text-align: center;
    font-size: 18px;
}


@media screen and (max-width: 991px) {
    .services .service-card {

        padding: 20px 20px;

        min-height: 290px;
    }

    .services .service-card .service-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .services .service-card h3 {
        font-size: 24px;

        margin-bottom: 20px;
    }

    .services .service-card p {
        font-size: 16px;
    }
}


@media screen and (max-width: 767px) {
    .services .service-card {
        padding: 15px 10px;
        min-height: auto;
    }

    .services .service-card .service-icon {
        margin-bottom: 15px;
    }

    .services .service-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .services .service-card p {
        font-size: 14px;
    }
}

/* ------------------- end of services css here ------------------- */





/* ----------------------- footer css start here -------------------- */

.footer {
    color: var(--white);
}

.footer .footer-logo {
    width: 120px;
    margin-bottom: 30px;
}
.footer .footer-logo img{
    border-radius: 50%;
}

.footer .footer-icons {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}



/* Footer Social Icons */

.footer .footer-icons a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;

    /* Luxury dark glass background */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));

    /* Gold border */
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--white);
    font-size: 24px;
    /* Premium shadow */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Gold shine effect */
.footer .footer-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 211, 101, 0.45), transparent);
    transition: left 0.8s ease;
}

/* Hover Effect */
.footer .footer-icons a:hover {
    transform: translateY(-6px) scale(1.05);
    /* Rich gold gradient */
    background: linear-gradient(145deg, #f6d365, #d4af37, #b8860b);
    color: var(--black);
    border-color: #f6d365;
    /* Luxury glow */
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45), 0 0 20px rgba(246, 211, 101, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Animate shine on hover */
.footer .footer-icons a:hover::before {
    left: 130%;
}

/* Icon itself */
.footer .footer-icons a i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Slight icon pop */
.footer .footer-icons a:hover i {
    transform: scale(1.12);
}

.footer .part-1 .footer-text p {
    font-size: 18px;
    letter-spacing: 1px;
}



.footer .part-2 {
    padding-left: 50px;
}

.footer .footer-head {
    margin-bottom: 40px;
    position: relative;
}

.footer .footer-head h2 {
    position: relative;
    font-size: 32px;
    font-weight: 600;
}

.footer .footer-head h2::after {
    content: " ";
    position: absolute;
    left: 0;
    top: 120%;
    height: 4px;
    width: 20%;
    background: var(--light-brown);
    border-radius: 2px;

}


.footer .quick-links li {
    margin-bottom: 20px;
}

.footer .quick-links li a {
    color: var(--white);
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
    transition: .35s;
}

/* link hover effect */

.footer .quick-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #b8860b, #f6d365, #d4af37);
    transition: .35s;
}

.footer .quick-links li a:hover {
    color: #f6d365;
    padding-left: 12px;
}

.footer .quick-links li a:hover::after {
    width: 100%;
}

/* link hover effect */


.footer .connect {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer .connect i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.283);
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 16px;
    color: var(--black);
    text-shadow: 0 1px 1px rgba(255, 255, 255, .35);
}


/* contact icons start */

.footer .contact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;

    /* Gold Background */
    background: linear-gradient(135deg, #7b5b10 0%, #c89b2a 25%, #f6d365 50%, #d4af37 75%, #8b6914 100%);

    border: 1px solid rgba(255, 255, 255, .15);

    box-shadow: 0 10px 25px rgba(212, 175, 55, .35), inset 0 2px 3px rgba(255, 255, 255, .35), inset 0 -3px 6px rgba(0, 0, 0, .25);
}

/* contact icons end */


.footer .connect h3 {
    color: var(--light-brown);
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 18px;
}

.footer .connect p {
    font-size: 18px;
}



.footer-widget {
    color: var(--white);
    padding: 20px;
    border-top: 2px solid #fff;
}

.footer-widget p {
    text-align: center;
}


/* responsive footer */


@media screen and (max-width:991px) {
    .footer .part {
        margin-bottom: 50px;
    }
}

@media screen and (max-width:767px) {
    .footer .footer-logo {
        width: 100px;
        margin-bottom: 20px;
    }

    .footer .part-1 .footer-text p {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .footer .footer-icons {
        margin-top: 20px;
    }

    .footer .footer-icons a {
        font-size: 20px;
        width: 40px;
        height: 40px;
    }

    .footer .part {
        margin-bottom: 40px;
    }

    .footer .part-2 {
        padding-left: 0px;
    }

    .footer .footer-head {
        margin-bottom: 30px;
    }

    .footer .footer-head h2 {
        font-size: 24px;
    }

    .footer .quick-links li {
        margin-bottom: 10px;
    }

    .footer .quick-links li a {
        font-size: 14px;
    }


    .footer .connect i {
        font-size: 20px;
        width: 30px;
        height: 35px;
    }

    .footer .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }


    .footer .connect h3 {
        margin-bottom: 2px;
        font-size: 14px;
    }

    .footer .connect p {
        font-size: 14px;
    }

}


/* responsive footer */


/* ---------------- end of footer css here ---------------- */




/* ---------------- about us css start here --------------- */
.about-us {
    background: var(--white);
}

.about-us .about-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-us .read-more {
    margin-top: 30px;
}

.about-us .read-more a {
    display: inline-block;
    background: var(--blue);
    border: 1px solid var(--blue);
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    transition: .5s ease-in-out;

}

.about-us .read-more a:hover {
    background: none;
    color: var(--blue);
}



.about-us .about-img {

    padding: 12px;

    border-radius: 25px;

    border: 2px solid rgba(212, 175, 55, .35);

    box-shadow:
        0 0 8px rgba(212, 175, 55, .12),
        0 8px 20px rgba(0, 0, 0, .08);

    background: #fff;

}

.about-us .about-img img {
    border-radius: 18px;
}

.extra-about {
    padding: 100px 0px;
}

.extra-about .about-extra-img img {
    height: 600px;
}


/* responsive css */

@media screen and (max-width:991px) {
    .about-us .about-img {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {

    .about-us .about-text p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .about-us .read-more {
        margin-top: 20px;
    }

    .about-us .read-more a {

        padding: 6px 15px;
        font-size: 16px;
    }

    .extra-about {
        padding: 50px 0px;
    }

    .extra-about .about-extra-img img {
        height: auto;
    }

}

/* responsive css */

/* --------------- end of about us css here --------------- */


/* ----------------- testimonial css start here --------------- */

.testimonial-area {
    padding: 100px 0px;
}

.testimonial-area .shadow-text {
    position: absolute;
    left: 50%;
    bottom: 5%;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 20px;
    transform: translateX(-50%);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px var(--white);
    opacity: 0.5;
}

.testimonial-single {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 200px;
    padding: 20px;
    position: relative;
    z-index: 1;
    min-height: 350px;
}

.testimonial-single .count {
    position: absolute;
    right: 100px;
    bottom: 10px;
    font-size: 120px;
    line-height: 120px;
    font-weight: 800;
    color: var(--brown);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 3px var(--blue);
    opacity: 0.1;
    z-index: -1;
}

.testimonial-quote p {
    color: var(--black);
    font-size: 18px;
}

.testimonial-author-img {
    position: relative;
    width: 220px;
    height: 220px;
    padding: 15px;
}

.testimonial-author-img::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border: 4px solid #dfb02e;
    border-top-color: var(--white);
    border-right-color: var(--white);
    border-radius: 200px;
    transition: 0.5s ease-in-out;
}

.testimonial-single:hover .testimonial-author-img::before {
    transform: rotate(45deg);
}

.testimonial-author-img img {
    border-radius: 50%;
}

.testimonial-author-info h4 {
    font-size: 22px;
    color: var(--black);
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: var(--blue);
    font-weight: 500;
}

.testimonial-quote-icon {
    position: absolute;
    right: 15%;
    top: 8%;
    width: 40px;
}

.testimonial-rate {
    color: #dfb02e;
    margin-top: 10px;
}

.testimonial-slider.owl-theme .owl-nav {
    margin-top: 0px;
}

.testimonial-slider.owl-theme .owl-nav button {
    color: var(--white);
    font-size: 25px;
    margin: 0;
    margin-top: -10px;
    padding: 0;
    background: var(--brown);
    display: inline-block;
    cursor: pointer;
    height: 45px;
    width: 45px;
    border-radius: 50px;
    line-height: 45px;
    text-align: center;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.testimonial-slider.owl-theme .owl-nav button:hover {
    background: #f3d172;
}

.testimonial-slider.owl-theme .owl-nav .owl-prev {
    left: -4%;
    top: 55%;
}

.testimonial-slider.owl-theme .owl-nav .owl-next {
    right: -4%;
    top: 55%;
}

.testimonial-area .owl-dots {
    text-align: center;
}

@media screen and (max-width: 1400px) {
    .testimonial-author-img {
        height: 100px;
        width: 100px;
        padding: 10px;
    }

    .testimonial-area .shadow-text {
        font-size: 26px;
        letter-spacing: 15px;
    }

    .testimonial-quote-icon {
        width: 40px;
        right: 10%;
        top: 5%;
    }

    .testimonial-author-info h4 {
        font-size: 18px;
    }

    .testimonial-quote p {
        font-size: 12px;
    }

    .testimonial-slider.owl-theme .owl-nav .owl-prev {
        left: -3%;
    }

    .testimonial-slider.owl-theme .owl-nav .owl-next {
        right: -3%;
    }

    .testimonial-slider.owl-theme .owl-nav button {
        font-size: 24px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
}

@media screen and (max-width: 1200px) {
    .testimonial-slider.owl-theme .owl-nav .owl-prev {
        left: -2%;
    }

    .testimonial-slider.owl-theme .owl-nav .owl-next {
        right: -2%;
    }

    .testimonial-slider.owl-theme .owl-nav button {
        font-size: 16px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }


    .testimonial-single {
        min-height: 300px;
    }

    .testimonial-quote-icon {
        position: absolute;
        right: 15%;
        top: 8%;
        width: 40px;
    }

}

@media all and (max-width: 991px) {
    .testimonial-area {
        padding: 60px 0px;
    }

    .testimonial-single {
        flex-direction: column;
        text-align: center;
        border-radius: 50px;
    }

    .testimonial-author-img {
        height: 160px;
        width: 160px;
    }

    .testimonial-quote p {
        text-align: center;
    }

    .testimonial-area .shadow-text {
        font-size: 20px;
    }

    .testimonial-slider.owl-theme .owl-nav .owl-prev {
        left: -3%;
        top: 50%;
    }

    .testimonial-slider.owl-theme .owl-nav .owl-next {
        right: -3%;
        top: 50%;
    }

    .testimonial-slider.owl-theme .owl-nav button {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

@media all and (max-width: 767px) {
    .testimonial-area {
        padding: 40px 0px;
    }

    .testimonial .testimonial-area h3 {
        font-size: 16px;
    }

    .testimonial-area .shadow-text {
        font-size: 12px;
        letter-spacing: 5px;
    }

    .testimonial-author-img {
        height: 120px;
        width: 120px;
    }

    .testimonial-quote-icon {
        width: 40px;
    }

    .testimonial-slider.owl-theme .owl-nav .owl-prev {
        left: -2%;
        top: 50%;
    }

    .testimonial-slider.owl-theme .owl-nav .owl-next {
        right: -2%;
        top: 50%;
    }

    .testimonial-slider.owl-theme .owl-nav button {
        font-size: 18px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

/* ----------------- end of testimonial css here --------------------- */



/* ------------------ contact us css start here ---------------------- */

.contact-section {
    background: #fff;
    padding: 100px 0;
}

.contact-tag {
    display: inline-block;
    color: #C79A1B;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-heading {
    font-size: 50px;
    font-weight: 700;
    color: #222;
}

.contact-heading span {
    background: linear-gradient(90deg, #FFE9A6, #D4AF37, #A86D00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.contact-text {
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
    line-height: 1.8;
}



.contact-box {
    position: relative;
    background: #fff;
    padding: 55px 35px 40px;
    border-radius: 24px;
    overflow: hidden;
    transition: .45s;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    min-height: 320px;
}


/* Left Gradient Strip */

.contact-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #FFD700, #D4AF37, #B8860B);
    transition: .45s;
}

.contact-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, .15);
}

.contact-box:hover::before {
    width: 100%;
    opacity: .04;
}

.icon-wrap {
    width: 85px;
    height: 85px;
    border-radius: 22px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #FFF8DC, #FFD700, #D4AF37);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .5s;
}


/* Pulsing Ring */

.icon-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    border: 2px solid rgba(231, 184, 30, 0.641);
    animation: pulseRing 2s infinite;
}


.contact-box:hover .icon-wrap {
    transform: rotate(-12deg) scale(1.08);
}


.icon-wrap i {
    font-size: 34px;
    color: #5E3D00;
    transition: .4s;
}

.contact-box:hover .icon-wrap i {
    transform: scale(1.2);
}




.contact-box h4 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.contact-box p {
    color: #666;
    line-height: 1.9;
    margin: 0;
}


/* animation */

@keyframes pulseRing {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }

}



@media(max-width:991px) {

    .contact-heading {
        font-size: 38px;
    }
}

@media screen and (max-width: 767px) {
    .contact-box {
        padding: 30px 25px;
        min-height: auto;
    }


    .icon-wrap {
        width: 55px;
        height: 55px;
    }

    .icon-wrap i {
        font-size: 22px;
    }

}

@media(max-width:576px) {
    .contact-heading {
        font-size: 30px;
    }
}

/* ------------------ end of contact us css here ---------------------- */



/* ------------------ our clients css start here ---------------------- */

.our-clients {
    background: var(--white);
}

.our-clients .brand-img {
    margin: 20px 0px;
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    overflow: hidden;
    transition: .4s ease;
    position: relative;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .05), 0 0 0 1px rgba(212, 175, 55, .08);
}

/* Top Gradient Line */

.our-clients .brand-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #D4AF37, #B8860B);
    transition: .45s ease;
}

/* Hover */

.our-clients .brand-img:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, .4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08), 0 0 18px rgba(212, 175, 55, .18);
}

.our-clients .brand-img:hover::before {
    width: 100%;
}

/* Image */

.our-clients .brand-img img {
    transition: .4s ease;
}

.our-clients .brand-img:hover img {
    transform: scale(1.05);
}

/* ----------- end of our clients css here -------------- */





/* ----------------- experience section css start here ----------------- */

.experience-section {
    padding: 100px 0;
}

/* image */

.experience-image {
    position: relative;
}

.experience-image img {
    width: 115%;
    margin-left: -60px;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .35));
    animation: float 5s ease-in-out infinite;
}

/* content */

.experience-content {
    color: #fff;
}

.experience-tag {
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.experience-content h2 {
    font-size: 52px;
    font-weight: 700;
    margin: 18px 0;
    line-height: 1.2;
}

.experience-content h2 span {
    background: linear-gradient(90deg, #FFE99A, #FFD700, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-content p {
    color: #d7d7d7;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* counter */

.counter-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    transition: .4s;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.counter-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #D4AF37);
    transform: scaleX(0);
    transition: .4s;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, .18);

}

.counter-box:hover::before {
    transform: scaleX(1);
}

.counter-box h3 {
    font-size: 42px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.counter-box h6 {
    color: #fff;
    font-size: 17px;
    margin: 0;
}

/* button */

.exp-btn a {

    display: inline-block;
    margin-top: 40px;
    padding: 15px 30px;
    font-size: 24px;
    font-weight: 600;
    color: var(--blue);
    background: var(--white);
    border: 1px solid var(--white);
    transition: .4s ease-in-out;

}

.exp-btn a:hover {
    transform: translateY(-4px);
    color: var(--white);
    background: none;
    box-shadow: 0 12px 25px rgba(232, 189, 47, 0.678);

}

/* animation */

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}

/* responsive */

@media(max-width:991px) {

    .experience-image {

        text-align: center;

        margin-bottom: 50px;

    }

    .experience-image img {
        width: 90%;
        margin-left: 0;
    }

    .experience-content {
        text-align: center;

    }

    .experience-content p {
        text-align: center;
    }

    .experience-content h2 {
        font-size: 40px;
    }

}


@media screen and (max-width: 767px) {
    .experience-content h2 {
        font-size: 24px;
    }

    .counter-box {
        padding: 15px 10px;
    }

    .counter-box h3 {
        font-size: 32px;
    }

    .counter-box h6 {
        font-size: 14px;
    }

    .exp-btn a {
        padding: 10px 20px;
        font-size: 18px;
    }
}


/* ----------------- end of experience section css here ----------------- */


/* ========================================================================================= */
/* ========================================================================================= */


/* ===================== team page css start ========================== */

/* ---------------- our team css start here ---------------- */

.our-team {
    background: var(--white);
    padding: 100px 0px;
}

.our-team .member-card {
    text-align: center;
}

.our-team .member-card p {
    text-align: center;
}


.our-team .member-card {
    background: linear-gradient(180deg, #ffffff, #efeeee);
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .45s ease;
    border: 1px solid rgba(212, 175, 55, 0.433);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    margin-bottom: 50px;
}


.our-team .member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}


.our-team .member-img {
    margin: 0 auto 25px;
}

/* Name */

.our-team .member-card h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    transition: .3s;
}

.our-team .member-card:hover h2 {
    color: #B8860B;
}

/* Designation */

.our-team .member-card p {
    font-size: 22px;
    color: #777;
    letter-spacing: .5px;
}

/* Mobile */

@media screen and (max-width: 991px) {
    .our-team {
        padding: 50px 0px;
    }

    .our-team .member-card {
        padding: 20px 10px;
    }

    .our-team .member-card h2 {
        font-size: 18px;
    }

    .our-team .member-card p {
        font-size: 14px;
    }

    .our-team .member-img {
        margin: 0 auto 10px;
    }
}


@media(max-width:767px) {
    .our-team .member-card {
        padding: 25px 15px;
    }

    .our-team .member-card h2 {
        font-size: 22px;
    }

    .our-team .member-card p {
        font-size: 16px;
    }

    .our-team .member-img {
        margin: 0 auto 15px;
    }

}


/* ---------------- our team css ends here ---------------- */


/* ===================== team page css ends ========================== */


/* =========================================================================================== */
/* =========================================================================================== */


/* =========================== about page css start =============================== */


/* --------------- ceo message section css start here --------------- */

.ceo-message {
    background: #fff;
    padding: 100px 0;
}

.section-tag {
    color: #c69a1a;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    color: #111;
    margin-top: 12px;
}

.section-title span {
    color: #c69a1a;
}


.ceo-image {
    text-align: center;
    position: relative;
}

.ceo-image img {
    width: 100%;
    border-radius: 25px;
    border: 5px solid #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.308);
    transition: .5s;

}

.ceo-image:hover img {
    transform: translateY(-10px);
}

.ceo-name {
    margin-top: 25px;
}

.ceo-name h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.ceo-name span {
    color: #c69a1a;
    font-weight: 600;
}


.ceo-content {
    position: relative;
    padding: 60px;
    background: #fafafa;
    border-radius: 25px;
    border-left: 6px solid #c69a1a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 18px 45px rgba(0, 0, 0, 0.08), 0 35px 70px rgba(198, 154, 26, 0.08);
}


.quote-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 70px;
    color: #072066c5;
}

.ceo-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.ceo-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

.signature {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.signature h5 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.signature span {
    color: #c69a1a;
    font-weight: 600;
}

/* responsive css */

@media screen and (max-width:991px) {

    .section-title {
        font-size: 32px;
    }

    .ceo-image img {
        width: 60%;
    }

    .ceo-name {
        margin-bottom: 30px;
    }

    .ceo-name h4 {
        font-size: 24px;
    }

    .ceo-content {
        padding: 20px 15px;
    }


    .ceo-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .quote-icon {
        font-size: 35px;
        top: 15px;
        right: 20px;
    }

    .ceo-content p {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width:767px) {

    .ceo-message {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .ceo-name {
        margin-top: 15px;
    }


    .ceo-content {
        padding: 15px 10px;
    }

    .ceo-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .quote-icon {
        font-size: 30px;
        top: 5px;
    }

    .ceo-content p {
        font-size: 14px;
        margin-bottom: 8px;
    }



    .signature {
        margin-top: 10px;
        padding-top: 10px;

    }

    .signature h5 {
        font-size: 24px;
    }

}

@media screen and (max-width: 575px) {
    .ceo-image img {
        width: 100%;
    }
}

/* responsive css */

/* --------------- ceo message section css start here --------------- */




/* ---------------- about-web css start here ---------------- */

.about-us-section {
    background: #fff;
    padding: 100px 0;
}

/* Left */

.section-tag {
    display: inline-block;
    color: #B8860B;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 55px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content h2 span {
    background: linear-gradient(90deg, #FFD700, #D4AF37, #A86D00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* Feature Card */

.feature-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: .45s;
    border: 1px solid rgba(212, 175, 55, .12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #FFD700, #B8860B);
    transform: scaleY(0);
    transition: .4s;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    transform: translateX(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

/* Number */

.feature-no {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #D4AF37, #B8860B);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(212, 175, 55, .30);
}

/* Text */

.feature-text h4 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.feature-card:hover h4 {
    color: #B8860B;
}

.feature-text p {
    color: #666;
    line-height: 1.8;
}

/* Responsive */

@media(max-width:991px) {

    .about-content {
        margin-bottom: 40px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .feature-card {
        gap: 20px;
        padding: 15px;
        margin-bottom: 20px;
    }

    .feature-no {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }

    .feature-text h4 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 12px;
    }
}

@media(max-width:767px) {
    .about-content {
        margin-bottom: 20px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 14px;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-card {
        gap: 25px;
        padding: 18px;
        margin-bottom: 25px;
    }

    .feature-text h4 {
        font-size: 18px;
    }

    .feature-text p {
        text-align: center;
        font-size: 14px;
    }

}

/* ------------------ end of about-web css here ------------------ */


/* ---------------- mission vision css start here --------------- */

.mission-vision {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.section-subtitle {
    color: #FFD700;
    letter-spacing: 3px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 15px 0;
}

.section-title span {
    background: linear-gradient(90deg, #ffffff, #FFF8DC, #FFD700, #FFF8DC, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 18px;
    color: #d0d0d0;
    max-width: 720px;
    margin: auto;
    line-height: 1.9;
}

/* Cards */

.mv-card {
    position: relative;
    height: 100%;
    padding: 45px 35px;
    border-radius: 25px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-color: #D4AF37;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: .45s;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #FFD700, #FFF8DC, #FFD700);
    transform: scaleX(0);
    transition: .5s;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35), 0 0 30px rgba(212, 175, 55, .18);
}

/* Icon */

.mv-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FFF8DC, #FFD700, #B8860B);
    box-shadow: 0 10px 30px rgba(212, 175, 55, .25);
}

.mv-icon i {
    font-size: 36px;
    color: #200305;
}

/* Heading */

.mv-card h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: 600;
}

/* Text */

.mv-card p {
    color: #d5d5d5;
    line-height: 1.9;
    font-size: 18px;
}

/* Floating Glow */

.mv-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .08);
    top: -80px;
    right: -80px;
    filter: blur(70px);
}

/* Responsive */

@media(max-width:991px) {
    .section-title {
        font-size: 38px;
    }

    .mv-card {
        margin-bottom: 20px;
    }

    .mv-card {
        padding: 15px 10px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
    }

    .mv-icon i {
        font-size: 22px;
    }


    .mv-card h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .mv-card p {
        font-size: 14px;
    }

}


@media screen and (max-width: 767px) {
    .section-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-desc {
        font-size: 14px;
    }

    .mv-card {
        padding: 15px 10px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .mv-icon i {
        font-size: 18px;
    }


    .mv-card h3 {
        font-size: 20px;
    }

}

/* ---------------- mission vision css ends here --------------- */




/* --------------- advantage css start here --------------- */

.advantages-section {
    background: #fff;
    padding: 100px 0;
}

/* Heading */

.section-tag {
    color: #d4af37;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-size: 55px;
    font-weight: 800;
    color: #111;
    margin: 15px 0;
}

.section-title span {
    background: linear-gradient(90deg, #FFD700, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    max-width: 800px;
    color: #666;
    line-height: 1.9;
}

/* Image */

.adv-image {
    position: relative;
}

.adv-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 30px;
    border: 4px solid #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, .25);
    transition: .5s;
}

.adv-image:hover img {
    transform: translateY(-10px);
}

/* Cards */

.advantage-card {
    position: relative;
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, .2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: .5s;
    height: 100%;
}

.advantage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #D4AF37, #B8860B);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, .18);
}

/* Number */

.adv-number {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #D4AF37, #B8860B);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Text */

.advantage-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 18px;
}



/* Responsive */

@media(max-width:991px) {
    .adv-image {
        margin: 30px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .advantage-card {
        padding: 15px;
    }

    /* Number */

    .adv-number {
        width: 45px;
        height: 45px;

        font-size: 16px;

        margin-bottom: 10px;
    }

    /* Text */

    .advantage-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .advantage-card p {
        line-height: 1.6;
        font-size: 12px;
    }

}

@media screen and (max-width:767px) {
    .section-tag {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-desc {
        font-size: 14px;
    }

    .advantage-card h3 {
        font-size: 18px;
    }

    .advantage-card p {
        font-size: 14px;
    }
}

/* --------------- end of advantage css here --------------- */


/* =========================== about page css ends here =============================== */

/* ========================================================================================== */
/* =========================================================================================== */


/* ========================== our services page css start ======================== */

/* ------------ hedge fund css start here ------------ */

.hedge-fund-section {
    background: #fff;
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    color: #C79A22;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    color: #1b1b1b;
    margin-bottom: 15px;
}

.section-title span {
    background: linear-gradient(90deg, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content */

.content-block {
    position: relative;
    height: 100%;
    padding-right: 30px;
}

.content-block h3 {
    font-size: 34px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 18px;
}

.title-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #D4AF37, #B8860B);
    border-radius: 20px;
    margin-bottom: 25px;
}

.content-block p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Vertical Divider */

@media(min-width:992px) {

    .col-lg-6:first-child .content-block {

        border-right: 1px solid rgba(212, 175, 55, .25);
        padding-right: 45px;

    }

    .col-lg-6:last-child .content-block {

        padding-left: 45px;

    }

}

/* Responsive */

@media screen and (max-width:991px) {

    .section-title {
        font-size: 32px;
    }

    .content-block {
        padding: 0;
    }

    .content-block h3 {
        font-size: 28px;
    }

}

@media screen and (max-width:767px) {

    .section-title {
        font-size: 22px;
    }

    .content-block h3 {
        font-size: 22px;
    }

    .content-block p {
        font-size: 14px;
    }

}

/* --------------- end of hedge fund css here ------------------ */


/* --------------- hedge strategy css start here ------------------- */


.hedge-strategy {
    background: #fff;
}

.sub-title {
    display: inline-block;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.heading {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.heading span {
    color: #d4af37;
}

.section-text {
    max-width: 850px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* LEFT */

.traditional-box {
    background: #fafafa;
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, .25);
    position: sticky;
    top: 120px;
    transition: .4s;
}

.traditional-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.traditional-box h3 {
    color: #111;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 700;
}


.traditional-box li {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

/* RIGHT */

.strategy-heading {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 45px;
}

.strategy-wrapper {
    position: relative;
    padding-left: 55px;
}

.strategy-wrapper::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 15px;
    bottom: 15px;
    width: 3px;
    background: linear-gradient(#d4af37, #f5d77b, #d4af37);
}

/* CARD */

.strategy-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    margin-bottom: 40px;
}

.strategy-card:last-child {
    margin-bottom: 0;
}

/* ICON */

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: .45s;
    box-shadow:
        0 10px 30px rgba(212, 175, 55, .35);
}

.strategy-card:hover .icon-box {
    transform: rotateY(180deg) scale(1.08);
}

/* DOT */

.icon-box::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid #d4af37;
    border-radius: 50%;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}

/* CONTENT */

.strategy-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.strategy-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    margin: 0;

}

/* RESPONSIVE */

@media screen and (max-width: 1200px) {
    .traditional-box {
        padding: 10px;
    }
}

@media screen and (max-width:991px) {

    .heading {
        font-size: 26px;
    }

    .traditional-box {
        padding: 20px;
    }

    .strategy-heading {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .strategy-wrapper {
        padding-left: 35px;
    }

    .strategy-wrapper::before {
        left: 22px;
    }

    .icon-box::after {
        left: -24px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

}

@media screen and (max-width:767px) {

    .heading {
        font-size: 22px;
    }

    .strategy-heading {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .traditional-box {
        padding: 15px;
        margin-bottom: 20px;
    }

    .traditional-box h3 {
        font-size: 22px;
    }

    .traditional-box li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .strategy-card {
        gap: 10px;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .strategy-card h4 {
        font-size: 18px;
    }

    .strategy-card p {
        font-size: 14px;
    }

    .section-text {
        font-size: 14px;
    }

}


/* --------------- end of hedge strategy css here ------------------ */




/* ========================== our services page css ends here ========================== */