/********** Template CSS **********/

:root {
    --primary: rgb(103 40 111);
    --secondary: #692a71;
    --light: #F6F7FC;
    --dark: #15233C;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/

.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: #692a71;
    border-color: #692a71;
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    /* max-height: 60px; */
}

.navbar .navbar-nav .nav-link {
    margin-left: 40px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        /* max-height: 45px; */
    }
    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../NEWIMAGES/heroportfolio.jpg) center center no-repeat;
    background-size: cover;
    height: 300px;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: white;
}

/*** Facts ***/

@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }
    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
    .container.facts .facts-counter {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
    .container.facts .facts-counter {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*** Service ***/

.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

/*** Appointment ***/

.appointment {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

/*** Team ***/

.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

/*** Testimonial ***/

.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

/*** Footer ***/

.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #a153ab;
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

/* New Changes Made By BS */

.navbar-brand .logoheader {
    width: 80px;
}

/* Hero Start */

/* Transition effects */

.textchange,
.imgchange,
.btn-transition {
    transition: all 1s ease-in-out;
}

/* Button base styles */

.btn-transition {
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 5px;
}

/* Image styling */

/* .imgchange {
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  } */

/* Button color variations */

.btn-style-1 {
    background-color: #682970;
    /* Blue */
}

.btn-style-2 {
    background-color: #000000;
    /* Green */
}

.btn-style-3 {
    background-color: #682970;
    /* Teal */
}

.btn-style-4 {
    background-color: #000000;
    /* Amber */
}

.coltext {
    font-size: 40px;
    color: #682970;
    margin: 12px 0px;
}

.disflexdomain1 {
    /* display: flex; */
    /* justify-content: space-around; */
    /* align-items: center; */
    background-color: rgb(255, 255, 255);
    padding: 6px 0px;
}

.disflexdomain1 input {
    border: none;
}

.disflexdomain1 input:focus {
    box-shadow: none;
}

.domainherobg1 {
    background: linear-gradient(103.84deg, rgb(223, 212, 255) 0%, rgb(239, 236, 245) 47%, rgb(152, 179, 254) 99.28%);
}

.domainbox1 {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
    padding: 10px;
    background-color: #692a71;
    border: 2px solid #ffffff;
}

.domainbox1:hover {
    background-color: #872993e3;
}

.domainbox1 .paradomain1 {
    font-weight: 800;
    color: white;
    font-size: 18px;
}

.domainbox1 .paradomain2 {
    font-weight: 100;
    color: white;
    font-size: 15px;
    text-decoration: line-through;
}

.domainbox1 p {
    margin-bottom: 5px;
}

.bghero1 {
    background: linear-gradient(103.84deg, rgb(223, 212, 255) 0%, rgb(239, 236, 245) 47%, rgb(152, 179, 254) 99.28%);
}

/* Hero ENd */

/* Services Start */

.domainnew1 {
    text-decoration: line-through;
    font-size: 12px;
}

.domainnew12 {
    padding: 7px 10px;
    background: linear-gradient(45deg, #692a71d1, #89578fa3);
    border-radius: 15px;
    color: white;
}

.domainnew2 {
    font-size: 18px;
}

.domainnew22 {
    font-size: 43px;
    font-weight: 900;
}

.populardomainimg1 {
    width: 140px;
    margin-bottom: 10px;
}

.domainboxnew1 .btn.btn-primary {
    background: linear-gradient(45deg, #692a71, #692a71);
    border-color: #692a71;
}

.domainboxnew1 {
    border: 1px solid #692a71;
    border-radius: 10px;
    height: 100%;
}

.domainboxnew1:hover {
    box-shadow: 0 0 10px 1px #692a71;
}

/* Services End */

/* Button Animation Start */

.btnanimationnew a {
    position: relative;
    /* padding: 30px 60px; */
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    /* letter-spacing: 4px; */
    /* font: 700 30px consolas; */
    overflow: hidden;
}

.btnanimationnew a:hover {
    color: white;
}

.btnanimationnew a:hover span:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #171618, #ffffff);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.btnanimationnew a:hover span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #171618, #ffffff);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.btnanimationnew a:hover span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, #171618, #ffffff);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.btnanimationnew a:hover span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to top, #171618, #ffffff);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* Button ANimation ENd */

.text-white {
    color: white;
}

/* Portfolio Start */

/* .body22 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #682970f0, #68297075);
}

.image-slider {
    display: flex;
    flex-flow: column;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
    container-type: inline-size;
    contain: content;
    background-color: #0006;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px, rgba(0, 0, 0, 0.3) 0px 2px 4px,
        rgba(0, 0, 0, 0.25) 0px 4px 8px, rgba(0, 0, 0, 0.2) 0px 8px 16px,
        rgba(0, 0, 0, 0.15) 0px 16px 32px;
}

.slider__content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}

.slider-control--button {
    border: 0;
    background: 0;
    outline: 0;
    cursor: pointer;
    place-content: center;
    padding-inline: 3vw;
    z-index: 1;
    display: grid;
}

.icon {
    height: 2rem;
    width: 2rem;
    fill: var(--icon-default);
    border-radius: 50%;
}

.slider-control--button:where(:hover) {
    background-image: linear-gradient(
        to var(--position),
        #0000 0%,
        #0002,
        80%,
        #0006 100%
    );
    .icon {
        fill: var(--icon-accent);
        background: #0001;
    }
}

.slider-control--button:active {
    outline: 0.2em solid hsl(204 100 53);
    outline-offset: -0.5em;
}

.prev-button {
    --position: left;
}
.next-button {
    --position: right;
}

.image-display {
    position: fixed;
    inset: 0;
}

.slider-navigation {
    z-index: 10;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-columns: 100%;
    gap: 1.25rem;
    padding: 1rem;
    place-content: center;
    background-color: var(--navigation-color);
    backdrop-filter: blur(6px);
}

.nav-button {
    display: grid;
    width: 100%;
    height: 100%;
    border-radius: 0.5em;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border: 0;
    aspect-ratio: 16 / 9;
    transition: filter 150ms linear, scale 266ms ease;
}

.thumbnail {
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.nav-button[aria-selected="true"] {
    scale: 1.1;
}

.nav-button[aria-selected="true"],
.nav-button:focus-visible {
    outline: 0.2em solid var(--active-color);
    outline-offset: 0.2em;
}

.nav-button[aria-selected="false"] {
    filter: opacity(0.7);
}

.nav-button[aria-selected="false"]:where(:hover, :focus-visible) {
    filter: opacity(1);
}

@container (max-width: 660px) {
    .nav-button:not(:has(img)) {
        background-color: rgb(241, 235, 232);
    }

    .slider-navigation {
        display: flex;
        justify-content: center;
        padding-block: 1.5em;
    }

    .nav-button {
        inline-size: 0.625rem;
        aspect-ratio: 1;
        border-radius: 50%;
    }

    .nav-button > .thumbnail {
        display: none;
    }

    .nav-button[aria-selected="true"] {
        background-color: black;
        scale: 1.5;
    }
} */

.item-slick.slick-slide.slick-current.slick-active {
    outline: none !important;
}

.slider-for {
    margin-bottom: 15px;
}

.slider-for img {
    width: 100%;
    min-height: 100%;
}

.slider-nav {
    margin: auto;
}

.slider-nav .item-slick {
    max-width: 240px;
    margin-right: 15px;
    outline: none !important;
    cursor: pointer;
}

.slider-nav .item-slick img {
    max-width: 100%;
    background-size: cover;
    background-position: center;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 50;
    margin-top: -12px;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slider-for {
    margin-bottom: 15px;
}

.slider-for img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slider-nav .item-slick {
    max-width: 120px;
    margin-right: 10px;
    cursor: pointer;
}

.slider-nav .item-slick img {
    width: 100%;
    display: block;
    height: 100px;
    object-fit: cover;
}

.slider-nav {
    display: flex;
    justify-content: center;
}

/* Portfolio ENd */

.bg-black {
    background-color: #000000;
}

.logofooter {
    width: 100px;
    margin-bottom: 15px;
}

.whatsapp-float img {
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index: 1;
}

/*  */

.left-side-bar h4,
.right-side-bar h4 {
    font-size: 19px;
    font-weight: 700;
    color: black;
}

.blog-card {
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.blog-card:hover {
    transform: scale(1.05);
}

.card img {
    height: 200px;
    object-fit: cover;
}

/*  */

.blog-image {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.related-blog {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.related-blog:hover {
    transform: scale(1.02);
}

.related-blog img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.related-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.page-header h1 {
    color: white;
}

.containernew1 {
    max-width: 814px;
    margin: auto;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #692a71 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Popup Design Start */

/* Popup Background */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup Box */

.popup-content {
    background: #000000;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 25px rgb(104 41 112 / 74%);
    animation: popupSlide 0.4s ease-in-out;
    border: 2px solid #682970;
}

/* Popup Animation */

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close Button */

.close-btn {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

/* Form Styles */

.popup-content form {
    display: flex;
    flex-direction: column;
}

.popup-content input,
.popup-content textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s ease;
}

.popup-content input:focus,
.popup-content textarea:focus {
    border-color: #682970;
    outline: none;
}

.submit-btn {
    background: #682970;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #682970;
}

/* Popup Design End */

.heinew1 {
    height: 101px;
    object-fit: cover;
}

.disflexnew1 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media(max-width:768px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 10px;
    }
}

/* NEWWWWWW */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    font-size: 14px;
    background: black;
    color: white;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    /* background: #fff; */
    background: linear-gradient(to right, rgb(0, 0, 0), rgba(233, 229, 229, 0.65) 100%);
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-logo img {
    width: 152px;
    margin-top: -20px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    /* color: #fc0; */
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    color: white;
    /* color: var(--gold-col); */
}

#footer .footer-top h4 {
    font-size: 20px;
    font-weight: bold;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    /* color: #47b2e4; */
    color: white;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    /* display: flex; */
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: white;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--gold-col);
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--gold-col);
    /* color:var(--maroon); */
    color: black;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

/* #footer .footer-top .social-links a i{
  color: black;
} */

#footer .footer-top .social-links a:hover {
    background: black;
    color: var(--gold-col);
    padding: 5px;
    /* border-radius: 50%; */
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    padding: 8px 0;
    /* margin-right: 4px; */
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: var(--gold-col);
}

#footer .copyright {
    /* float: left; */
    /* text-align: center; */
}

#footer .copyright a {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--gold-col);
    /* text-shadow: #C07F00; */
    text-decoration: none;
    /* background: #c080008e; */
    padding: 5px;
}

#footer .credits {
    /* float: right; */
    font-size: 13px;
}

#footer .credits a {
    transition: 0.3s;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }
    #footer .credits {
        padding-top: 4px;
    }
    #particles-js {
        position: static;
    }
}

.footer-links .strong-footer {
    line-height: 23px;
}

/* .footer-links{
  border-right: 1px solid #d0d0ce;
} */

.disflex22 {
    display: flex;
    column-gap: 10px;
}

.disflex22 img {
    width: 33%;
}

.footer-middle-menu {
    border-top: 1px solid #d0d0ce;
    margin-top: 30px;
    text-align: center;
}

.footer-middle-menu ul {
    padding-top: 20px;
}

.footer-middle-menu ul li a {
    border-right: 1px solid #d0d0ce;
    padding: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-family: Oxanium, sans-serif;
}

.footer-middle-menu ul li {
    display: inline-block;
}

.credits p {
    color: white;
    margin-top: 8px;
    text-align: justify;
    font-size: 13px;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: .3s;
    display: inline-block;
    line-height: 21.2px;
    font-family: Oxanium, sans-serif;
    text-decoration: none;
    font-size: 13px;
}

body {
    font-family: Oxanium, sans-serif;
}

#footer .copyright,
#footer .footer-top .footer-contact p,
#footer .footer-top h4,
.btn .btn-primary,
.footer-links p,
.pricing-card .features li,
.pricing-card .heading p {
    font-family: Oxanium, sans-serif;
}

#footer .footer-top .footer-logo img {
    width: 152px;
    margin-top: -20px;
}

/* Social Media Start */

.Social-media {
    display: flex;
    justify-content: center;
}

.Social-media a {
    display: flex;
    background: #fff;
    height: 39px;
    width: 35px;
    margin: 15px 9px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0, 124, 196, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 124, 196, 0);
    transition: transform 0.5s;
    padding: 0px 8px;
}

.Social-media a i {
    font-size: 22px;
    color: #692a71;
    transition: transform 0.5s;
}

.Social-media a:hover {
    box-shadow: inset 4px 4px 6px -2px rgba(0, 0, 0, 0.2), inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7), -0.5px -0.5px 0px -1px rgba(255, 255, 255, 1), 0.5px 0.5px 0px rgba(0, 0, 0, 0.15), 0px 12px 10px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 124, 196, 0.1);
    transform: translateY(2px);
}

.Social-media a:hover i {
    transform: scale(0.90);
}

.Social-media a:hover .fa-facebook {
    color: #3b5998;
}

.Social-media a:hover .fa-twitter {
    color: #00acee;
}

.Social-media a:hover .fa-whatsapp {
    color: #4fce5d;
}

.Social-media a:hover .fa-instagram {
    color: #f14843;
}

.Social-media a:hover .fa-youtube {
    color: #f00;
}

/* Social Media End */

#footer .footer-bottom {
    color: #692a71;
}

/* SocialMediaIcons Section CSS Start Here */

.SocialMediaIcons-container {
    padding: 0px;
    margin: 0px;
    position: fixed;
    right: -130px;
    top: 130px;
    width: 210px;
    z-index: 1100;
}

.SocialMediaIcons-container .container-menu li {
    list-style-type: none;
    background-color: #e9b545;
    color: #fff;
    height: 43px;
    padding: 0px;
    margin: 0px 0px 5px 0px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.SocialMediaIcons-container .container-menu li:hover {
    margin-left: -115px;
}

.SocialMediaIcons-container .container-menu li img {
    float: left;
    margin: 5px 12px;
    border-radius: 10px;
    width: auto;
}

.SocialMediaIcons-container .container-menu li:nth-child(1) {
    background-color: rgb(31 23 163);
    border-radius: 5px;
}

.SocialMediaIcons-container .container-menu li:nth-child(2) {
    background: linear-gradient(rgb(0 0 0), rgb(0 0 0), #433939);
    border-radius: 5px;
}

.SocialMediaIcons-container .container-menu li:nth-child(3) {
    background-color: rgb(23, 27, 141);
    border-radius: 5px;
}

.SocialMediaIcons-container .container-menu li:nth-child(4) {
    background-color: rgb(32, 240, 122);
    border-radius: 5px;
}

.SocialMediaIcons-container .container-menu li:nth-child(5) {
    background: linear-gradient(rgb(227, 29, 19), white);
    border-radius: 5px;
}

.SocialMediaIcons-container .container-menu li p {
    padding-top: 5px;
    margin: 0px;
    line-height: 16px;
    font-size: 14px;
    font-family: sans-serif;
}

.SocialMediaIcons-container .container-menu li p a {
    text-decoration: none;
    color: #fff;
}

.SocialMediaIcons-container .container-menu li p a:hover {
    text-decoration: underline !important;
}

/* SocialMediaIcons Section CSS END Here */

/* whatsapp integration css  */

.whatsapp_float {
    position: fixed;
    width: 15%;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.whatsapp_float span {
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-family: sans-serif;
    padding-left: 10px;
}

.whatsapp_float .msg-alrt {
    background-color: red;
    width: 18%;
    height: auto;
    border-radius: 100px;
    text-align: center;
    position: absolute;
    top: -13px;
    right: 0;
}

.whatsapp_float .msg-alrt h4 {
    margin: 0;
    font-size: 1.2rem;
    padding: 5px;
}

/* for mobile */

@media screen and (max-width: 767px) {
    .whatsapp-icon {
        /* margin-top: 10px; */
    }
    .whatsapp_float {
        width: 35%;
        height: 45px;
        bottom: 10px;
        right: 10px;
        font-size: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
        /*margin: 0px 544px 0px 0px;*/
    }
    .whatsapp_float span {
        font-size: 1rem;
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        font-family: sans-serif;
        padding-left: 5px;
    }
}

.bounce-icon {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

a:hover {
    color: white;
}

/* Our Clients Start */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.ourclients .slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

.ourclients .slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.ourclients .slider .slide {
    height: 100px;
    width: 250px;
}

/* .ourclients{
    background: linear-gradient(45deg, #68297040, #ebcaef75);
} */

/* Our Clients End */

.testimonialbg {
    background: linear-gradient(45deg, #68297040, #ebcaef75);
}

.underscorewid {
    font-size: 41px;
    font-weight: 500;
}

@media(max-width:768px) {
    .slider-for img {
        width: 100%;
        height: 100%;
    }
    .slider-nav .item-slick img {
        width: 100%;
        display: block;
        height: auto;
    }
    .Social-media {
        display: flex;
        justify-content: start;
    }
    .disflex22 img {
        width: 20%;
    }
}

/* New ADD */

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.blog-content th,
.blog-content td {
    border: 1px solid #ddd;
    padding: 8px;
}

.blog-content th {
    background-color: #f2f2f2;
    text-align: left;
}