@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");

body {
    font-family: "Lato", sans-serif;
    font-style: normal;
    /* background: #643D0C;
    background-color: #1B140D;
    background-color: #352613;
    background-color: var(--old-brown); */


    background:
        radial-gradient(circle at top left,
            rgba(212, 175, 55, .12),
            transparent 35%),

        radial-gradient(circle at top right,
            rgba(255, 255, 255, .04),
            transparent 30%),

        radial-gradient(circle at bottom left,
            rgba(212, 175, 55, .08),
            transparent 40%),

        radial-gradient(circle at bottom right,
            rgba(255, 255, 255, .03),
            transparent 35%),

        linear-gradient(135deg,
            #200305 0%,
            #2b0508 30%,
            #170203 65%,
            #200305 100%);

    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;

    color: var(--white);
}

* {
    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;

}

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

}

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

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

    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: 20px;
    }

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

    .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: 50px 0px;
}

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

/* footer css */


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





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

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

    background: var(--old-brown);


}

.navbar .logo {
    width: 80px;
}

.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-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: 70px;
        height: 60px;
    }

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

/* .dropdown .dropdown-menu {
    display: block;
    position: absolute;
    border: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
} */


/* Dropdown width */
/* .dropdown-menu {
    min-width: 100px;
    width: 180px;
} */

/* Dropdown items */
/* .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: wrap;

}


.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown .dropdown-menu li {
    font-size: 14px;
    padding: 10px 5px;
    transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li a {
    color: var(--black);
    transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li:hover {
    background: var(--pink);
}

.dropdown .dropdown-menu li:hover a {
    color: var(--white);
}

.dropdown .dropdown-menu .dropdown-item {
    background: none;
}




@media screen and (max-width: 1400px) {
    .dropdown .dropdown-menu li {
        font-size: 14px;
        padding: 5px 2px;
    }

    .dropdown .dropdown-menu .dropdown-item {
        padding: 5px 10px;
    }


}

@media screen and (max-width: 991px) {
    .dropdown .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        min-width: 100px;
        width: 160px;
    }


    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown .dropdown-menu li {
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown .dropdown-menu li {
        font-size: 16px;
        padding: 5px 2px;
        transition: 0.2s ease-in-out;
    }
} */

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



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

.hero-section {
    padding: 50px 0px;
    color: var(--white);
}

.banner-content {
    display: flex;
    justify-content: center;
    height: 100%;
}

.banner-content .hero-subtitle {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 12px;
}

.banner-content .hero-title {
    font-size: 52px;
    margin-bottom: 30px;
}



.hero-title span {
    background: linear-gradient(90deg,
            #ff3b30,
            #007bff,
            #FFD700,
            #00c853,
            #9c27b0,
            #ff3b30);
    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    animation: gradientText 5s linear infinite;
}

@keyframes gradientText {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}





.banner-content .hero-text {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.banner-btn a {
    padding: 15px 30px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(212, 175, 55, 0.774);
}



.banner-video {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 450px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: auto;

    /* Soft depth */
    box-shadow:
        inset 0 8px 20px rgba(255, 255, 255, .15),
        inset 0 -15px 25px rgba(0, 0, 0, .12),
        0 15px 40px rgba(0, 0, 0, .12);
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}





/* responsive css */

@media screen and (max-width: 1200px) {
    .banner-video {
        width: 440px;
        height: 460px;
    }
}


@media screen and (max-width: 991px) {
    .banner-video {
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 767px) {
    .hero-section {
        padding: 20px 0px;
    }

    .banner-content .hero-subtitle {
        margin-bottom: 10px;
    }

    .banner-content .hero-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .banner-content .hero-text {
        margin-bottom: 20px;
    }

    .banner-btn a {
        padding: 10px 20px;
    }

    .banner-video {
        width: 360px;
        height: 360px;
    }
}



@media screen and (max-width: 420px) {
    .banner-video {

        width: 280px;
        height: 320px;
    }
}

/* responsive css */



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





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

.sub-banner {
    position: relative;
    padding: 50px 0px;
    overflow: hidden;


}



.sub-banner-tag {

    display: inline-block;

    padding: 10px 28px;

    border-radius: 50px;

    color: #FFD700;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    border: 1px solid rgba(212, 175, 55, .30);

    background: rgba(255, 255, 255, .05);

    backdrop-filter: blur(10px);

    margin-bottom: 25px;
}

.sub-banner-title {

    font-size: 72px;

    font-weight: 700;

    line-height: 1.1;

    color: #fff;

    margin-bottom: 25px;

}

.sub-banner-title span {

    background: linear-gradient(90deg,
            #ffffff 0%,
            #FFF8DC 20%,
            #FFD700 40%,
            #FFF4C2 60%,
            #FFD700 80%,
            #ffffff 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}



.sub-banner-text {

    max-width: 760px;

    margin: auto;

    color: rgba(255, 255, 255, .82);

    line-height: 1.9;

    font-size: 17px;

    margin-bottom: 40px;
}


.breadcrumb-box {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 14px 28px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .05);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(212, 175, 55, .25);

}

.breadcrumb-box a {

    color: #FFD700;

    text-decoration: none;

    transition: .35s;

}

.breadcrumb-box a:hover {

    color: #fff;

}

.breadcrumb-box span {

    color: #d5d5d5;

}

/* responsive sub banner */


@media screen and (max-width:991px) {
    .sub-banner-title {
        font-size: 42px;
    }
}

@media screen and (max-width:767px) {
    .sub-banner {
        padding: 30px 0px;
    }

    .sub-banner-tag {
        font-size: 10px;
        padding: 6px 20px;
    }

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

    .breadcrumb-box {
        padding: 10px 20px;
        font-size: 14px;
    }

    .sub-banner-text {
        font-size: 12px;
    }
}


/* responsive sub banner */


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






/* ------------ about us css start here ------------ */

.about-us {
    color: var(--white);
}

.about-us .about-content {
    padding: 10px 20px;
    border-radius: 30px;
    border-top: 1px solid rgba(189, 188, 188, 0.322);
    border-bottom: 1px solid rgba(255, 255, 255, .2);

    box-shadow:
        0 -2px 5px rgba(255, 255, 255, .12),
        0 2px 5px rgba(255, 255, 255, .08);
}

.about-us .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-us .about-text h2 {
    font-size: 48px;
    margin-bottom: 40px;
}

.about-us .about-text p {
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 40px;
}


/* responsive css start */

@media screen and (max-width: 1200px) {
    .about-video {
        width: 420px;
        height: 460px;
    }
}

@media screen and (max-width: 991px) {
    .banner-video {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .about-us .about-content {
        padding: 10px 10px;
    }

    .about-us .about-text h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

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


    .about-video {

        width: 320px;
        height: 360px;
    }

}

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

    .about-video {

        width: 260px;
        height: 320px;
    }
}

/* responsive css ends */


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





/* ------------ why us css start here ------------ */


.section-subtitle {
    display: inline-block;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 46px;
    font-weight: 700;
    color: var(--light-brown);
    margin-bottom: 20px;
}

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

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: auto;
    color: var(--white);
    line-height: 1.8;
}


/* Card */
.choose-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    transition: .4s ease-in-out;
}

.choose-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;

    background: linear-gradient(90deg,
            #ff4d4d,
            #FFD700,
            #00C853,
            #007BFF,
            #9C27B0,
            #FFD700);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    background-size: 300% 300%;
    animation: borderMove 6s linear infinite;
}

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

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}


/* Icon */

.icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, .4);
    transition: .4s;
}

.icon-box i {
    font-size: 30px;
    color: #C89B3C;
}

.choose-card:hover .icon-box {
    transform: rotateY(180deg);
    border-color: #D4AF37;
    box-shadow: 0 0 18px rgba(212, 175, 55, .2);
}

/* Content */

.choose-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.choose-card p {
    color: var(--white);
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}


/* Responsive */

@media(max-width:991px) {

    .section-subtitle {

        font-size: 12px;
        font-weight: 400;

        margin-bottom: 10px;
    }

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

}

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




/* ----------- detail section css start here ----------- */

.detail .detail-card {
    margin: 20px 0px;
    position: relative;
    overflow: hidden;

    padding: 22px 18px;
    border-radius: 20px;

    background: rgba(255, 255, 255, .02);

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

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 8px 20px rgba(0, 0, 0, .18);

    transition: all .4s ease;
}

/* Top Border Glow */

.detail .detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .7),
            transparent);

    opacity: .8;
}

/* Gold Hover Line */

.detail .detail-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 0%;
    height: 2px;

    background: linear-gradient(90deg,
            #FFD700,
            #FFF8DC,
            #FFD700);

    transition: .45s;
}

/* Hover */

.detail .detail-card:hover {

    transform: translateY(-8px);

    border-color: rgba(212, 175, 55, .45);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .10),
        0 18px 35px rgba(0, 0, 0, .30),
        0 0 25px rgba(212, 175, 55, .10);

}

.detail .detail-card:hover::after {
    width: 100%;
}

.detail .detail-card .detail-head img {
    width: 40px;
}

.detail .detail-card .detail-head {
    gap: 20px;
    margin-bottom: 30px;
}

.detail .detail-card .detail-head h3 {
    font-size: 16px;
    letter-spacing: 2px;
}

.detail .detail-card .detail-body .price {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}


/* responsive css start */



/* responsive css ends */

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




/* ------------ faq section css start here ------------ */


.faq-content {
    padding: 20px 20px;
    padding-bottom: 10px;
    border-radius: 30px;
    border-top: 1px solid rgba(189, 188, 188, 0.322);
    border-bottom: 1px solid rgba(255, 255, 255, .2);

    box-shadow:
        0 -2px 5px rgba(255, 255, 255, .12),
        0 2px 5px rgba(255, 255, 255, .08);
}



/* Left Side */

.faq-subtitle {
    display: inline-block;
    color: #C89B3C;

    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;

    background: linear-gradient(90deg,
            #ffffff 0%,
            #FFF9E3 15%,
            #FFE9A8 35%,
            #FFD700 50%,
            #FFF4C2 65%,
            #ffffff 85%,
            #FFE082 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    text-shadow:
        0 2px 8px rgba(255, 215, 0, .15),
        0 0 20px rgba(255, 248, 220, .12);
}




.faq-text {
    color: var(--white);
    line-height: 1.8;
    font-weight: 300;
}

/* Accordion Item */

.aura-faq .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 18px;
}

/* Accordion Button */

.aura-faq .accordion-button {
    position: relative;
    background: rgba(255, 255, 255, 0.192) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: var(--white);
    font-size: 18px;
    font-weight: 600;

    border: 1px solid rgba(212, 175, 55, 0.322);
    border-radius: 18px !important;

    padding: 22px 60px 22px 25px;

    box-shadow: none;
    transition: .35s ease;
}

/* Hover */

.aura-faq .accordion-button:hover {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, .14) !important;
}

/* Active */

.aura-faq .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, .12) !important;
    color: #C89B3C !important;
    border-color: #D4AF37;
    border-radius: 18px 18px 0 0 !important;
}

/* Bootstrap Blue */

.aura-faq .accordion-button:focus {
    box-shadow: none;
}

/* Default Arrow */

.aura-faq .accordion-button::after {
    display: none;
}



.aura-faq .accordion-button::before {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

    width: 30px;
    height: 30px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.644);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #c59d1a;
    font-size: 22px;
    font-weight: 600;

    transition: .35s;
}



.aura-faq .accordion-button:not(.collapsed)::before {
    content: "−";
    background: #c59d1a;
    color: #fff;
    border-color: #c59d1a;
}



.aura-faq .accordion-body {

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: var(--white);
    line-height: 1.9;
    font-weight: 300;

    padding: 22px 25px;

    border-left: 1px solid rgba(212, 175, 55, .20);
    border-right: 1px solid rgba(212, 175, 55, .20);
    border-bottom: 1px solid rgba(212, 175, 55, .20);

    border-radius: 0 0 18px 18px;
}


/* responsive css start */

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


    .faq-title {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .faq-text {
        margin-bottom: 30px;
    }
}


@media screen and (max-width:767px) {
    .faq-content {
        padding: 20px 10px;
        padding-bottom: 5px;
    }


    .faq-subtitle {
        font-weight: 500;
        margin-bottom: 10px;
    }

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




    .aura-faq .accordion-item {

        margin-bottom: 10px;
    }

    /* Accordion Button */

    .aura-faq .accordion-button {

        font-size: 14px;

        border-radius: 10px !important;

        padding: 10px 60px 10px 10px;

    }



    .aura-faq .accordion-button::before {
        right: 10px;
        width: 20px;
        height: 20px;
        font-size: 16px;
    }


    .aura-faq .accordion-body {
        font-size: 12px;
        line-height: 1.2;
        padding: 10px 10px;
    }

}


/* responsive css end */


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



/* --------------- footer css start here --------------- */
.footer-area {
    position: relative;
    padding: 50px 0 0;
    background: var(--old-brown);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFF8DC, #FFD700, transparent);
}

.footer-area::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(212, 175, 55, .08);
    border-radius: 50%;
    filter: blur(120px);
}

.footer-area .footer-logo .logo {
    width: 100px;
    margin-bottom: 25px;
}

.footer-widget p {
    color: #d5d5d5;
    line-height: 1.9;
    font-size: 15px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 35px;
    position: relative;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 55px;
    height: 3px;
    border-radius: 5px;
    background: linear-gradient(90deg, #FFD700, #FFF8DC, #FFD700);
}

.footer-widget ul li {
    margin-bottom: 15px;
}

.footer-widget ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: .35s;
    position: relative;
}

.footer-widget ul li a::before {
    content: "➜";
    color: #D4AF37;
    margin-right: 10px;
    transition: .35s;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-widget ul li a:hover::before {
    opacity: 1;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact i {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(212, 175, 55, .25);
    color: #FFD700;
    transition: .4s;
}

.footer-contact li:hover i {
    background: linear-gradient(135deg, #FFF8DC, #FFD700, #B8860B);
    color: #2b1d0f;
    transform: rotate(-10deg) scale(1.08);
    box-shadow: 0 10px 25px rgba(212, 175, 55, .35);
}


.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 35px;
}

.footer-social a {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: .45s;
}

/* Gradient Border */

.footer-social a::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff, #FFD700, #FFF8DC, #B8860B, #ffffff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Icon */

.footer-social a i {
    position: relative;
    font-size: 20px;
    color: #FFD700;
    transition: .45s;
    z-index: 2;
}

/* Hover */

.footer-social a:hover {
    transform: translateY(-8px) rotate(-8deg);
    box-shadow: 0 18px 35px rgba(212, 175, 55, .28);
}

.footer-social a:hover i {
    color: var(--black);
    transform: scale(1.15);
}

/* Gold Fill Animation */

.footer-social a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            #FFF8DC,
            #FFD700,
            #B8860B);
    transition: .45s;
    z-index: 1;
}

.footer-social a:hover::after {
    bottom: 0;
}


/* footer bottom */

.footer-bottom {

    margin-top: 70px;

    padding: 25px 0;

    border-top: 1px solid rgba(255, 255, 255, .08);

}

.footer-bottom .bottom-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom .bottom-text p {
    font-size: 14px;
    text-align: center;
    color: #bdbdbd;
}

.footer-bottom span a {
    color: #FFD700;
    font-weight: 600;
}

/* -- responsive -- */

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

    .footer-bottom {

        margin-top: 30px;
    }

    .footer-bottom .bottom-text {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .footer-social {
        margin-top: 20px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }

    .footer-social a i {
        font-size: 16px;
    }

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

@media(max-width:576px) {
    .footer-widget h4::after {
        left: 8%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width:420px) {
    .footer-widget h4::after {
        left: 10%;
    }
}

/* --------------- footer css ends here  --------------- */



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

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






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

/*=========================================
        MISSION & VISION
=========================================*/

.mission-vision {

    position: relative;
    overflow: hidden;
    padding: 100px 0;

}

.section-subtitle {

    color: #FFD700;
    letter-spacing: 3px;
    font-size: 14px;
    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 {

    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);

    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;

    margin: 0;

}

/* 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;

    }

}

@media(max-width:576px) {

    .section-title {

        font-size: 30px;

    }

    .mv-card {

        padding: 30px 22px;

    }

    .mv-icon {

        width: 70px;
        height: 70px;

    }

    .mv-icon i {

        font-size: 28px;

    }

}

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



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



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

/* ========================== contact page css start here ==================== */

/*=========================================
        CONTACT INFO SECTION
=========================================*/

.contact-info {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -150px;
    left: -150px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .10);
    filter: blur(100px);
}

.contact-info::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -120px;
    right: -120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    filter: blur(100px);
}


/*=========================================
            CARD
=========================================*/

.contact-card {

    position: relative;

    height: 100%;

    padding: 45px 30px;

    border-radius: 22px;

    text-align: center;

    overflow: hidden;

    background: rgba(255, 255, 255, .03);

    backdrop-filter: blur(12px);

    transition: .45s;

}

/* Animated Border */

.contact-card::before {

    content: "";

    position: absolute;

    inset: 0;

    padding: 1.5px;

    border-radius: 22px;

    background: linear-gradient(90deg,
            #FFD700,
            #FFF8DC,
            #ffffff,
            #B8860B,
            #FFD700,
            #FFF8DC,
            #FFD700);

    background-size: 300% 300%;

    animation: borderMove 6s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

}

/* Glow */

.contact-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    top: -80px;
    right: -80px;

    background: rgba(212, 175, 55, .10);

    filter: blur(70px);

}

/* Hover */

.contact-card:hover {

    transform: translateY(-12px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .35),
        0 0 35px rgba(212, 175, 55, .15);

}


/*=========================================
            ICON
=========================================*/

.contact-icon {

    position: relative;

    width: 90px;
    height: 90px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #220405;

    z-index: 2;

}

/* Rotating Ring */

.contact-icon::before {

    content: "";

    position: absolute;

    inset: -4px;

    border-radius: 50%;

    background: linear-gradient(45deg,
            #FFD700,
            #FFF8DC,
            #ffffff,
            #B8860B,
            #FFD700);

    background-size: 300% 300%;

    animation: ringRotate 5s linear infinite;

    z-index: -2;

}

/* Inner Circle */

.contact-icon::after {

    content: "";

    position: absolute;

    inset: 4px;

    border-radius: 50%;

    background: #2d0709;

    z-index: -1;

}

.contact-icon i {

    font-size: 34px;

    color: #FFD700;

    transition: .4s;

}

/* Hover Icon */

.contact-card:hover .contact-icon {

    animation: float 1.6s ease-in-out infinite;

}

.contact-card:hover .contact-icon i {

    color: #fff;

    transform: scale(1.15);

}


/*=========================================
            HEADING
=========================================*/

.contact-card h4 {

    color: #fff;

    font-size: 28px;

    margin-bottom: 20px;

    font-weight: 600;

}


/*=========================================
            TEXT
=========================================*/

.contact-card p {

    color: #d5d5d5;

    line-height: 1.9;

    margin: 0;

    font-size: 15px;

}

.contact-card a {

    display: block;

    color: #d5d5d5;

    text-decoration: none;

    margin-bottom: 12px;

    transition: .35s;

}

.contact-card a:hover {

    color: #FFD700;

    letter-spacing: .5px;

}


/*=========================================
            ANIMATIONS
=========================================*/

@keyframes borderMove {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }

}

@keyframes ringRotate {

    100% {
        transform: rotate(360deg);
    }

}

@keyframes float {

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

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

}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .contact-card {

        margin-bottom: 20px;

    }

}

@media(max-width:767px) {

    .contact-info {

        padding: 70px 0;

    }

    .contact-card {

        padding: 35px 22px;

    }

    .contact-card h4 {

        font-size: 24px;

    }

    .contact-icon {

        width: 75px;
        height: 75px;

    }

    .contact-icon i {

        font-size: 28px;

    }

}


/* ========================== end of contact page css here ==================== */



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

/* map location css */

.map-location,
.map-location iframe {
    width: 100%;
    height: 100%;
    height: 400px;
    background: linear-gradient(135deg, #FFF8DC, #FFD700, #B8860B, #FFF8DC);

    box-shadow:
        0 10px 25px rgba(212, 175, 55, .18),
        0 0 20px rgba(212, 175, 55, .08);
}

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

    .map-location,
    .map-location iframe {
        height: 200px;
    }
}

/* map location css */



/* form css start */

.contact-us .contact-form {
    position: relative;
    padding: 45px;
    border-radius: 25px;

    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(18px);

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

    box-shadow: 0 20px 40px rgba(0, 0, 0, .28);

    overflow: hidden;
}

/* Top Gold Line */

.contact-us .contact-form::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(90deg,
            transparent,
            #FFF8DC,
            #FFD700,
            #B8860B,
            #FFD700,
            transparent);
}

/* Soft Glow */

.contact-us .contact-form::after {
    content: "";
    position: absolute;

    width: 250px;
    height: 250px;

    right: -120px;
    top: -120px;

    border-radius: 50%;

    background: rgba(212, 175, 55, .08);

    filter: blur(80px);
}


.contact-us .contact-form .form-control {

    background: rgba(255, 255, 255, .04);

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

    color: #fff;

    border-radius: 15px;

    transition: .35s;

    box-shadow: none;

}

.contact-us .contact-form textarea.form-control {

    min-height: 150px;

    resize: none;

}

.contact-us .form-floating>label {

    color: #d4d4d4;

    padding: 15px 18px;

}

.contact-us .form-floating>.form-control:focus~label,
.contact-us .form-floating>.form-control:not(:placeholder-shown)~label {

    color: #FFD700;

}


.contact-us .contact-form .form-control:focus {

    background: rgba(255, 255, 255, .06);

    border-color: #FFD700;

    color: #fff;

    box-shadow: 0 0 0 3px rgba(212, 175, 55, .10), 0 0 18px rgba(212, 175, 55, .12);

}


/* captcha css start */

.contact-us #captchaCode {

    background: rgba(255, 255, 255, .05);

    color: #FFD700;

    border: 1px solid rgba(212, 175, 55, .30) !important;

    border-radius: 12px;

    font-size: 22px;

    letter-spacing: 5px;

}

.contact-us #refreshCaptcha {

    border-radius: 12px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(212, 175, 55, .25) !important;

    color: #FFD700;

    transition: .35s;

}

.contact-us #refreshCaptcha:hover {

    background: #D4AF37;

    color: #200305;

    transform: translateY(-2px);

}



.contact-us .send {

    position: relative;

    overflow: hidden;

    border: none !important;

    border-radius: 50px;

    padding: 15px;

    font-size: 17px;

    font-weight: 700;

    color: #200305;

    background: linear-gradient(135deg,
            #FFF8DC,
            #FFD700,
            #B8860B);

    transition: .4s;

}

/* Shine Effect */

.contact-us .send::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 50%;
    height: 100%;

    background: rgba(255, 255, 255, .55);

    transform: skewX(-30deg);

    transition: .7s;

}

.contact-us .send:hover::before {

    left: 140%;

}

.contact-us .send:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(212, 175, 55, .30);

}



.contact-us .help-block {

    font-size: 13px;

    margin-top: 6px;

}

/* captcha css start */


/* responsive css */

@media(max-width:767px) {

    .contact-us .contact-form {
        padding: 15px 10px;
    }
}

/* responsive css */

/* form css ends */



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

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


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

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

/* about overview */

.about-overview {
    position: relative;
    overflow: hidden;
}

/* Background Glow */

.about-overview::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(212, 175, 55, .08);
    border-radius: 50%;
    top: -180px;
    left: -180px;
    filter: blur(120px);
}

.about-overview::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%;
    right: -150px;
    bottom: -150px;
    filter: blur(100px);
}

/* Heading */



.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0;
    line-height: 1.25;
}

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

.section-desc {
    color: #d8d8d8;
    line-height: 1.9;
    max-width: 900px;
    margin: auto;
}

/* card */

.about-card {
    position: relative;
    height: 100%;
    padding: 45px 28px 30px;
    border-radius: 22px;
    overflow: hidden;

    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(15px);

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

    transition: .45s ease;
}



/* Animated Top Border */

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            #FFF8DC,
            #FFD700,
            #B8860B,
            #FFD700,
            #FFF8DC);
    background-size: 250%;
    animation: borderMove 5s linear infinite;
}


/* Golden Glow */

.about-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    top: -70px;
    right: -70px;
    background: rgba(212, 175, 55, .08);
    filter: blur(35px);
    transition: .4s;
}

.about-card:hover {

    transform: translateY(-12px);

    border-color: rgba(212, 175, 55, .35);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .35),
        0 0 30px rgba(212, 175, 55, .12);
}

.about-card:hover::after {

    transform: scale(1.4);

    background: rgba(212, 175, 55, .15);

}


/* Large Number */

.card-count {

    display: block;

    font-size: 54px;

    font-weight: 800;

    line-height: 1;

    margin-bottom: 25px;

    color: transparent;

    -webkit-text-stroke: 1px rgba(212, 175, 55, .45);

    transition: .4s;

}

.about-card:hover .card-count {

    -webkit-text-stroke: 1px #FFD700;

    transform: translateX(8px);

}

/* Heading */

.about-card h4 {

    color: #fff;

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 18px;

    line-height: 1.4;

}

/* Text */

.about-card p {

    color: #cfcfcf;

    line-height: 1.8;

    margin: 0;

}





/* Animation */

@keyframes borderMove {

    from {
        background-position: 0%;
    }

    to {
        background-position: 250%;
    }

}




/* responsive css */

@media(max-width:991px) {

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

    .about-card {
        padding: 35px 24px;
    }

    .card-count {
        font-size: 46px;
    }

}

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

@media(max-width:576px) {

    .about-card {
        padding: 28px 22px;
    }

}

/* responsive css */

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



/* =================== video section css start here =================== */

.video-section {

    position: relative;

}

.video-wrapper {

    position: relative;

    overflow: hidden;

}

.video-wrapper video {

    width: 100%;

    height: 750px;

    object-fit: cover;

    display: block;

}

/* Dark Overlay */

.video-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to right,
            rgba(32, 3, 5, .90) 15%,
            rgba(32, 3, 5, 0.783) 80%,
            rgba(32, 3, 5, 0.782) 100%);

}

/* content */

.video-content {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 100%;

    max-width: 850px;

    text-align: center;

    z-index: 5;

    padding: 0 20px;

}

.video-subtitle {

    display: inline-block;

    color: #FFD700;

    letter-spacing: 4px;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 20px;

    text-transform: uppercase;

}

.video-content h2 {

    font-size: 58px;

    color: #fff;

    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 25px;

}

.video-content h2 span {

    background: linear-gradient(90deg,
            #FFF8DC,
            #FFD700,
            #B8860B,
            #FFF8DC);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.video-content p {

    max-width: 750px;

    margin: auto;

    color: #ececec;

    font-size: 18px;

    line-height: 1.9;

}

/* features */

.video-features {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 40px;

}

.video-features span {

    padding: 12px 24px;

    border-radius: 40px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 215, 0, .25);

    color: #fff;

    font-size: 15px;

    transition: .4s;

}

.video-features span:hover {

    transform: translateY(-5px);

    border-color: #FFD700;

    box-shadow: 0 10px 25px rgba(212, 175, 55, .25);

}

/* responsive css */

@media(max-width:991px) {

    .video-wrapper video {

        height: 550px;

    }

    .video-content h2 {

        font-size: 32px;

    }

    .video-content p {

        font-size: 16px;

    }

}

@media(max-width:767px) {

    .video-wrapper video {
        height: 400px;
    }

    .video-subtitle {

        letter-spacing: 2px;

        font-size: 12px;

        font-weight: 600;

    }


    .video-content h2 {

        font-size: 22px;

    }

    .video-content p {

        font-size: 12px;

        line-height: 1.7;

    }

    .video-features {

        gap: 10px;

    }

    .video-features span {

        font-size: 12px;

        padding: 5px 10px;

    }

}

@media screen and (max-width: 575px) {
    .video-wrapper video {
        height: 600px;
    }
}

/* =================== video section css start here =================== */

/* ============================ about page css end ============================ */