@font-face {
    font-family: 'Mundial';
    src: url('assets/fonts/MundialRegular.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'Mundial';
    src: url('assets/fonts/MundialBold.otf') format('opentype');
    font-weight: bold;
}

@font-face {
    font-family: 'TrajanPro';
    src: url('assets/fonts/TrajanPro-Regular.ttf') format('truetype');
    font-weight: normal;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 'TrajanPro', serif;
}




:root {
    --black: black;
    --white: white;
    --gray: gray;
    --charcoal-black: #2C2C2C;
    --granite-grey: #3B3B3B;
    --marble-white: #F5F5F5;
    --silver-grey: #C0C0C0;
    --sand-beige: #D9C7B5;
    --action-color: #C8A951;
    --action-color2: #2E8B57;
    --heading: 'Mundial', sans-serif;
    --sub-heading: 'TrajanPro', serif;
    --content: 'Lora', serif;
}

.bg {
    background: var(--sand-beige);
}

.bg1 {
    background: url('../../img/bg/marble-bg.jpg');
}

h1,
h2,
h3 {
    font-family: 'TrajanPro', serif;
}

a {
    text-decoration: none;
    color: var(--action-color)
}

li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--sub-heading);
    font-size: 16px;
    line-height: 20px;
    /* text-align: justify; */
    word-break: break-word;
    margin-top: 10px;
}

body {
    /* font-family: 'Mundial', sans-serif; */
    font-size: 15px;
    font-weight: 400;
}

/* ================== class ================= */


/* text color  */

section {
    padding: 0;
    margin: 0;
}

.container-fluid {
    position: relative;
    padding: 0;
    margin: 0;
}

.section-item {
    position: relative;
    padding: 70px clamp(15px, 6vw, 60px);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    position: relative;
}

.align-item {
    display: flex;
    align-items: center;
}


/* -------------- button ------------- */

.button {
    padding: 10px 20px;
    background-color: var(--action-color);
    color: var(--marble-white);
    font-family: var(--heading) !important;
    font-weight: 500;
    font-size: large;
    width: fit-content;
}

.button:hover {
    background-color: var(--marble-white);
    color: var(--action-color);
}


/* ============================================== */
/* HEADING */
/* ============================================== */

.heading-body {
    display: flex;
    flex-direction: column;
}

.heading-body .small-heading {
    color: var(--secondary);
    font-family: var(--sub-heading);
    font-style: italic;
    font-size: 17px;
    position: relative;
    width: fit-content;
    color: black;
    text-transform: capitalize;
    line-height: 1;
}

.heading-body .small-heading::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 1px;
    top: 11px;
    right: -28px;
    background: var(--primary-color);
}

.heading-body .small-heading::before {
    position: absolute;
    content: '';
    width: 35px;
    height: 1px;
    top: 16px;
    right: -43px;
    background: var(--primary-color);
}


.heading-body .big-heading {
    font-size: clamp(25px, 3.5vw, 50px);
    font-weight: 700;
    font-family: var(--heading);
    color: var(--primary-color);
    line-height: 1;
}

.heading-body .big-heading span {
    color: var(--action-color);
    font-weight: bold;
    font-family: var(--heading);
}

.heading-body .content-heading {
    width: 80%;
}

.center {
    align-items: center;
}

.start {
    align-items: start;
}

.end {
    align-items: end;
}




/* =============== Preloader ================== */

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: #2C2C2C;
    display: flex;
    justify-content: center;
    align-items: center;

}

.logo-back {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 5;
}

.logo-back img {
    width: 100%;
    border-radius: 50%;
    transition: all 0.4s;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #C8A951;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
    overflow: hidden;
}

.loader img {
    width: 100%;
    cursor: pointer;
}

.logo-back:hover img {
    filter: invert(1);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/* =================== Navbar ================== */
.navbar {
    background: url("../../img/bg/navbar-bg.jpg");
    padding: 10px 0;
    background-size: cover;
}



.logo {
    height: 50px;

}

.logo img {
    height: 100%;
}

.nav-item {
    padding: 10px 20px !important;
    /*background-color: #534a4a;*/

}

.nav-item .nav-link {
    color: var(--white);
    font-size: 17px;
    font-family: var(--heading);
    padding: 0px 00px !important;
    position: relative;
}

.nav-item .nav-link::before {
    position: absolute;
    width: 100%;
    height: 2px;
    content: '';
    bottom: 0;
    left: 0;
    background: var(--action-color);
    border-radius: 60px;
    transform: scaleX(0);
    transition: all linear 0.3s;
}

.nav-link::after {
    display: none;
}


.dropdown-toggle.show {

    color: var(--action-color) !important;

}

.nav-link i {
    transition: 0.4s linear;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-item:hover .nav-link {
    color: var(--action-color);
}

.nav-item:hover .nav-link::before {
    transform: scaleX(1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    padding: 10px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 350% !important;
    background: var(--charcoal-black);


}

.dropdown-menu .dropdown-item {
    padding: 5px 20px;
    margin: 7px;
    background-color: white;
    width: 95%;
    font-size: 14px;
    height: 50px;
    text-wrap: wrap;
    display: flex;
    align-items: center;
    font-weight: 500;
    /* font-size: 1; */

}

.dropdown-menu .dropdown-item i {
    font-size: 12px;
    margin-right: 5px;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--action-color);
    color: white;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.get {
    background-color: var(--action-color2);
}


/* Hide default Bootstrap icon */
.navbar-toggler-icon {
    display: none;
}

/* Custom toggler */
.custom-toggler {
    border: none;
    outline: none;
    padding: 0.5rem;
}

.custom-toggler:focus {
    box-shadow: none;
    outline: none;
    border: none;
}

/* Hamburger lines */
.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    border-radius: 2px;

    transition: all 0.3s ease-in-out;
}

.custom-toggler:hover .toggler-icon {
    background-color: var(--action-color);
}

/* Animation when expanded */
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}



/* ==================== Slider Banner =================== */

.mybanner {
    width: 100%;
    height: auto;
}

.mybanner .banner-item {
    width: 100%;
    overflow: hidden;
}

.mybanner .banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Custom-btn::after {
    display: none;
}

.mybanner .Custom-btn {
    font-size: 20px;
    font-weight: bolder;
    width: 30px;
    height: 30px;
    background-color: #c8a851c9;
    border-radius: 50%;
    color: var(--white);
}

.mybanner .swiper-button-next {
    left: auto;
    right: 10%;
}

.mybanner .swiper-button-prev {
    right: auto;
    left: 10%;
}

.mybanner .Custom-btn:hover {
    background-color: var(--action-color);
    color: var(--charcoal-black);
}

.marquee-body {
    position: relative;
    width: 100%;
    padding: 30px 0;
    /* margin-top: 20px; */
    overflow: hidden;
}

.marquee-body .marquee-1 {
    height: 110px;
    width: 130%;
    position: absolute;
    top: 25px;
    left: -5%;



    background: var(--action-color);
    transform: rotate(-2deg);
}

.mymarquee {
    width: 100%;
    background-color: var(--charcoal-black);
    padding: 5px;

}

.mymarquee .swiper-wrapper {
    transition-timing-function: linear !important;
    margin: 0;
    padding: 0;
}


.mymarquee .mar-item {
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px 10px; */
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1;
    font-weight: 600;
    position: relative;
}

.mymarquee .mar-item .mask-text {
    position: absolute;
    display: inline-block;
    width: 100%;
    opacity: 0;
    -webkit-mask-image: url('../../img/bg/brush-stroke.png');
    /* for Chrome, Safari */
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image: url('../../img/bg/brush-stroke.png');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    overflow: hidden;
    transition: all ease-in 0.4s;
}

.mymarquee .mar-item .mask-text img {
    display: block;
    width: 100%;
    height: auto;
    transform: translateX(0);
}

.mar-item .name {
    position: relative;
    z-index: 5;
    color: var(--marble-white);

}

.mymarquee .mar-item:hover .mask-text {
    opacity: 1;
}

.mymarquee .mar-item:hover .name {
    /* color: var(--charcoal-black); */
    text-shadow: 5px 8px 8px rgb(0, 0, 0);
}


/* ============ ========== About us =================== */

.about-body {
    background: url('../../img/bg/marble-bg.jpg');
    background-position: center;
    background-size: cover;
}

.guru {
    position: absolute;
    width: 100px;
    left: 30px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guru-item {
    width: 100%;
    position: absolute;

}

.guru-item img {
    width: 100%;
    animation: rotate linear 10s infinite;
}

.guru .logo-icon {
    width: 60%;
    border-radius: 50%;
    filter: invert(1);
}

.about-us-img {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    padding-right: 2vw;
}

.about-us-img img {
    width: 100%;
}

.img-content {
    width: 85%;
    background-color: var(--action-color);
    padding: 2vw;
    transform: translateY(-30px);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;

}


.readmore {
    background-color: var(--action-color);
    color: black;
    padding: 15px 25px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;


}

.readmore i {
    transform: rotate(-45deg);
    transition: all linear 0.3s;
}

.readmore:hover {
    background-color: black;
    color: var(--action-color);
    font-family: var(--heading);
    font-weight: 400;

}

.readmore:hover i {
    transform: rotate(-0deg) translateY(3px);
}


/* ================ All Product ================== */

.myproduct {
    margin-top: 40px;
}

.myproduct .Custom-btn {
    width: 30px;
    height: 30px;
    background-color: #c8a851cc;
    font-size: 20px;
    font-weight: bolder;
    color: black;
}

.myproduct .Custom-btn:hover {
    background-color: var(--action-color);
}

.myproduct .swiper-wrapper {
    padding-bottom: 50px;
}

.myproduct .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}


.myproduct .swiper-pagination-bullet-active {
    background: var(--charcoal-black);
    width: 30px;
    border-radius: 10px;
}


.myproduct s.swiper-pagination-bullet-active-main {
    transform: scale(1.2);
    background: var(--charcoal-black);
}


.product-body {
    background: url('../../img/bg/pathar.png');
    background-size: cover;
}

.product-card {
    width: 100%;
    padding: 10px;
}

.product-card .product-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-card .product-img .back-product {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transition: all ease-in 0.4s;
    left: -100%;
}

.product-card .product-img .back-product img {
    height: 100%;
    width: 100%;
}

.product-card .product-img img {
    width: 100%;
}

.product-card .product-name {
    text-align: center;
    padding: 15px 10px;
    background-color: var(--charcoal-black);
    color: var(--action-color);
    font-size: 20px;
    font-family: var(--sub-heading);
    position: relative;
    overflow: hidden;

}

.product-card .product-name span {
    position: relative;
    z-index: 5;
    transition: all ease-in 0.4s;

    /* color: black; */
}

.product-card .product-name::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 100%;
    top: 0;
    left: 5px;
    background-color: var(--action-color);
    z-index: 1;
    transition: all ease-in 0.4s;

}

.product-card .product-name::after {
    position: absolute;
    content: '';
    width: 5px;
    height: 100%;
    top: 0;
    right: 2%;
    background-color: var(--action-color);
    z-index: 1;
    transition: all ease-in 0.4s;

}

.product-card:hover .back-product {
    left: 0;
}

.product-card:hover .product-name::after {
    right: 0;
    width: 100%;
}

.product-card:hover .product-name::before {
    left: 0;
    width: 100%;
}

.product-card:hover .product-name span {
    color: black;
}

.product-card .product-name:hover {
    text-decoration: underline;
    text-decoration-color: var(--charcoal-black);
}

.bg-img {
    position: absolute;
    left: -50px;
    top: 10px;
    width: 200px;
}

.bg-img img {
    filter: invert(1);
    animation: rotate linear 10s infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}


.whyimg {
    width: 100%;
    height: 630px;
    overflow: hidden;
}

.whyimg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.why-item {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-top: 20px;
    background-color: #e6c87670;
}

.why-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px !important;
    height: 80px;
    font-size: 30px;
    background: #e6c87670;
    color: black;
}

.why-item .icon img {
    width: 80%;
}

.why-item .content {
    width: 70%;
}

.why-item .content .name {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal-black);
}

.why-item .content p {
    margin: 0;
    color: black;
}

.why-item:hover {
    background: var(--action-color);
}

.why-body {
    overflow: hidden;
    position: relative;
}

.banner-bg {
    width: 100%;
    height: auto;
    background: url('../../img/bg/we.jpg');
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}



.we-card {
    padding: 1.5vw;
    background: var(--charcoal-black);
    background: url('../../img/bg/card.png'), linear-gradient(var(--charcoal-black), var(--charcoal-black));
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 30px;
}

.we-card .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    border-radius: 50%;
    font-size: 35px;
    color: var(--action-color);
}

.we-card .name {
    font-size: 25px;
    font-weight: 600;
    margin: 5px 0;
    color: var(--action-color);
}

.we-card .des {
    text-align: center;
    color: whitesmoke;

}


/* =============== Our Gallery ================== */

.gallery-card {
    padding: 20px;
    background-color: var(--silver-grey);
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    position: relative;
    margin-bottom: 30px;

}

.gallery-img {
    width: 100%;
    position: relative;
    z-index: 3;
}

.gallery-img img {
    width: 100%;
}

.gallery-card .name {
    padding: 20px 0 0px 0;
    text-align: center;
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
    font-family: var(--heading);
    position: relative;
    z-index: 3;
}

.gallery-item:hover .gallery-card {
    transform: rotateX(180deg);

}

.gallery-back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--silver-grey);
    z-index: 0;
    transition: transform 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
    transform: rotateX(180deg);

}

.gallery-back .gallery-line {
    font-size: 25px;
    font-weight: 700;
}

.gallery-back .readmore {
    font-size: 15px;
    padding: 5px auto;

}

.gallery-item:hover .gallery-back {
    z-index: 5;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;

}

/* ================= Vision imission and value ============ */

.vision-bg {
    background: linear-gradient(to left, var(--silver-grey), #cccccc81), url('../../img/bg/marble-bg.jpg');
}

.vision-body {
    width: 100%;
    /* height: 100%; */
    position: relative;

}

.vision-body::after {
    width: 80%;
    height: 100%;
    position: absolute;
    content: '';
    right: 10%;
    bottom: -10%;
    background: url('../../img/bg/granite.jpg');
    z-index: 1;
}

.vision-body img {
    width: 80%;
    height: 80%;
    position: relative;
    z-index: 4;
}

.vision-card {
    padding: 0px;
}

.vision-card .title {
    font-size: 35px;
    color: var(--charcoal-black);
}

.vision-card:hover .title {
    color: black;
}

/* ================= Client Counter ============ */

.counter-section {
    background:
        /* linear-gradient(#2c2c2c79, #2c2c2c86), */
        url('../../img/bg/counter.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    /*animation: bg-zoom ease-in 0.3s;*/

}

/*@keyframes bg-zoom{*/
/*    0% ,100%{*/
/*        transform: scale(1);*/
/*    }*/
/*    50%{*/
/*         transform: scale(1.6);*/
/*    }*/
/*}*/

.counter-body {
    width: 80%;
    margin: auto;
    padding: 20px 0;
}

.number-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 230px;
    background-color: var(--action-color);
    margin: auto;
    margin-bottom: 20px;
    border: 2px dashed var(--black);
    border-radius: 10px;

}

.number-body .num {
    font-size: 50px;
    font-weight: bold;
}

.number-body .name {
    font-size: 30px;
    color: var(--charcoal-black);
    text-align: center;

}


/* ================= Testimonials ============ */


.test-img {
    width: 100%;
    height: 100%;
}

.test-img img {
    width: 100%;
    height: 100%;

}





.test-body {
    width: 100%;
}

.mytestimonial .swiper-slide {
    padding: 10px;
}


.testimonial-card {
    background: var(--marble-white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: auto;
    text-align: center;
    color: black;

    transition: transform 0.3s ease;

}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.testimonial-header p {
    align-items: center;

}

.review-logo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.stars {
    color: #f2a900;
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-footer .test-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-footer span {
    font-size: 13px;
    color: #777;
}

/* ================= Client logo Form ============ */
.client-logo-section {
    margin-top: 80px;

}

.client-logo-body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;

}

.client-logo-body .logo-img {
    min-width: 70px;
    width: 127px;

}

.client-logo-body .logo-img img {
    width: 100%;
}

.client-img {
    width: 100%;
    height: 100%;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-logo-body .logo-img:hover {
    filter: grayscale(100%);
}


/* ================= Contact Form ============ */

.contact-section {
    background: linear-gradient(135deg, #001f80, #0048d0);
    width: 100%;
    margin: auto;
    border-radius: 20px;
    padding: 50px 20px;

}

.contact-line {
    font-family: var(--sub-heading);
}

.input-group {
    border: 1px solid gray;
    border-radius: 15px;
    overflow: hidden;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;

}

.input-group .form-control:focus {
    transform: none;
    box-shadow: none;
    border: none !important;

}

.input-group .form-select:focus {
    transform: none;
    box-shadow: none;
    border: none !important;
}

.input-group-text {
    border-right: none;
    border-radius: 10px 0 0 10px;
}

.btn-primary {
    background: #0048d0;
    border: none;
}

.btn-primary:hover {
    background: #0033a0;
}

.social-link a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.social-link a:hover {
    background-color: var(--charcoal-black);
}



/* ================= FAQ ============ */



.faq-section {
    background: linear-gradient(#2c2c2c5d, #2c2c2c65), url('../../img/bg/faq.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.faq-body {
    /* padding-top: 30px; */
    width: 100%;
    /* margin: auto ; */
}

.faq-body .heading-body .big-heading {
    line-height: 1;
    color: var(--marble-white);
    text-shadow: 5px 5px 5px rgb(46, 45, 45);
}

.accordion {
    border-radius: 0 !important;
}

.accordion-item {
    padding: 0;
    border: 0;
    margin-bottom: 9px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.accordion-collapse {
    background-color: var(--charcoal-black);
    color: var(--action-color);
    border-top: 1px solid #c8a8519a;

}

.accordion-button:not(.collapsed) {
    background-color: var(--charcoal-black);
    color: var(--action-color);
    border: none !important;
    box-shadow: none;

}

.accordion-button::after {
    background-image: none !important;
    transform: rotate(90deg);
    content: "\276F";
    font-size: 16px;
    color: black;
    bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button:not(.collapsed)::after {
    content: "\276F";
    color: #f2a900;
    transform: rotate(-90deg);

}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-header:hover button {
    background-color: var(--charcoal-black);
    color: var(--action-color);
}






.footer-body {
    background: linear-gradient(135deg, #2c2c2ce7, #2C2C2C), url('../../img/bg/footer-bg.jpg');
    position: relative;
}

.f-guru {

    position: absolute;
    width: 100px;
    left: auto;
    bottom: 0%;
    top: auto;
    right: 0%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.f-guru img {
    filter: invert(1);
}



.f-heading {
    text-transform: uppercase;
    font-size: 20px;
    font-family: var(--heading);
    color: white;
}

.f-item .des {
    color: whitesmoke;
}

.f-item .f-logo {
    width:100%;
    margin-top: 30px;
    background-color: white;
    padding: 14px;
}

.f-item .f-logo img {
    width: 100%;
    filter: invert(1);
}

.f-item li a {
    font-size: 16px;
    transition: all ease-in 0.3s;
    position: relative;
}

.f-item li a i {
    font-size: 12px;
}

.f-item li a::before {
    width: 0%;
    height: 1px;
    background-color: var(--action-color);
    content: '';
    left: 0;
    bottom: 0;
    position: absolute;
    transition: all ease-in 0.3s;

}

.f-item ul {
    height: 250px;
    overflow-y: auto;
}

.f-item ul::-webkit-scrollbar {
    width: 8px;
    background-color: white;
}

.f-item ul::-webkit-scrollbar-thumb {
    background: var(--action-color);
}

.f-item li {
    margin: 10px;
}

.f-item li a:hover {
    letter-spacing: 1px;
}

.f-item li b {
    color: white
}

.f-item li a:hover::before {
    width: 100%;
}

.f-social-link {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-social-link .f-social {

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
}

.f-social-link .f-social a {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    background-color: var(--action-color);
    color: black;
    border-radius: 50%;

}
.f-contact li a:hover {
    letter-spacing: 0px;
}


.copyright {
    background: var(--action-color);
    padding: 0;
    margin: 0;
}

.copyright p {
    padding: 20px;
    text-align: center;
}

.copyright p a {
    color: white;
}

.copyright p a:hover {
    color: black;
}



.whatsapp-body {
    position: fixed;
    left: 20px;
    bottom: 20px;
    min-width: 30px;
    width: 60px;
    z-index: 100;
}

.whatsapp-body img {
    width: 100%;
}



/* ============================================= */
/* About us page  */
/* ============================================= */


.breadcrumb-section {
    background: linear-gradient(rgba(0, 0, 0, 0.568), rgba(0, 0, 0, 0.589)), url('../../img/bg/bg-breadcrumb.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.breadcrumb-body {
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.breadcrumb-body .main-heading {

    font-size: clamp(25px, 3.5vw, 70px);
    font-weight: 700;
    font-family: var(--heading);
    color: var(--white);
    line-height: 1;
}

.breadcrumb-item {
    color: white;
}

.breadcrumb-item a {
    color: var(--action-color);
}

.breadcrumb-item a:hover {
    color: black;
}

.page-img {
    width: 45%;
    float: left;
    padding-right: 20px;
    padding-bottom: 0px;
}

.page-img img {
    width: 100%;
}

.contact-card {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: black;
    background: linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.801)), url('../../img/bg/footer-bg.jpg');
    border-radius: 30px;
    gap: 10px;
    padding: 20px;
    transition: all ease-in 0.3s;
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--action-color);
    font-size: 25px;
    border-radius: 50%;
}

.contact-card .title {
    color: white;
    font-size: 20px;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}


.all-product-card {
    padding: 20px;
    background: var(--silver-grey);
    margin: 15px 0px;
}

.all-product-card .all-prod-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.all-product-card .all-prod-img img {
    width: 100%;
    height: 100%;
    transition: all ease-in 0.3s;
}

.all-product-card .name {
    margin-top: 15px;
    /* padding: 10px; */
    text-align: center;
    font-family: var(--heading);
    font-size: 20px;
    font-weight: 600;
}

.all-product-card:hover .all-prod-img img {
    transform: scale(1.2);
}

.btn-body::after {
    position: absolute;
    width: 0%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    background: #2c2c2caf;
    transition: all ease-out 0.3s;
}

.btn-body {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 18px 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: url('../../img/bg/footer-bg.jpg');
    background-size: cover;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
    background-color: #C8A951;

}

.btn-body span {
    position: relative;
    z-index: 10;
}

.btn-body:hover::after {
    width: 100%;
    background-blend-mode: difference;
}

.btn-body:hover {
    transform: translateY(-3px);
    color: var(--action-colors);
}