
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

.subheading {
    font-family: "Archivo Narrow", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

    .btn.btn-primary:hover {
        background: var(--bs-secondary);
        border: 1px solid var(--bs-secondary);
    }

.btn.btn-secondary {
    color: var(--bs-white);
}

    .btn.btn-secondary:hover {
        background: var(--bs-primary);
        border: 1px solid var(--bs-primary);
    }

.btn.btn-light {
    color: var(--bs-primary);
}

    .btn.btn-light:hover {
        color: var(--bs-white);
        background: var(--bs-primary);
        border: 1px solid var(--bs-primary);
    }

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }

    25% {
        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
    }

    50% {
        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
    }

    75% {
        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
    }

    100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}
/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 90px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 60px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 8px !important;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 600px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

    .carousel-indicators [data-bs-target].active {
        background-color: var(--bs-primary);
    }

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}
/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

    .bg-breadcrumb .breadcrumb {
        position: relative;
    }

        .bg-breadcrumb .breadcrumb .breadcrumb-item a {
            color: var(--bs-white);
        }
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

    .about .about-item .about-item-inner .about-icon {
        width: 90px;
        height: 90px;
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bs-secondary);
        background: var(--bs-primary);
        animation-name: icon-animat;
        animation-duration: 5s;
        animation-delay: 1s;
        animation-direction: alternate;
        animation-iteration-count: infinite;
        transition: 0.5s;
    }

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .about .about-img .img-1 {
        margin-right: 50px;
    }

    .about .about-img .img-2 {
        position: relative;
        width: 100%;
        padding-left: 50px;
        border-radius: 15px;
    }

    .about .about-img::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 98%;
        top: 0;
        right: 0;
        border-radius: 10px;
        background: var(--bs-primary);
        z-index: -1;
    }

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

    .about .about-item .text-item::after {
        content: "";
        position: absolute;
        width: 5px;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 10px;
        background: var(--bs-secondary);
    }
/*** About End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

    .categories .categories-item:hover {
        border: 1px solid var(--bs-primary);
    }

    .categories .categories-item .categories-item-inner {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        transition: 0.5s;
    }

        .categories .categories-item .categories-item-inner:hover {
            box-shadow: 0 0 50px rgba(234, 0, 30, .3);
        }

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

    .categories-carousel .owl-nav .owl-prev:hover,
    .categories-carousel .owl-nav .owl-next:hover {
        background: var(--bs-secondary);
        color: var(--bs-white);
    }
/*** Cars Categories End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

    .blog .blog-item:hover {
        box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    }

    .blog .blog-item .blog-img {
        position: relative;
        overflow: hidden;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

        .blog .blog-item .blog-img::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 0;
            bottom: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.3);
            transition: 0.5s;
        }

    .blog .blog-item:hover .blog-img::after {
        height: 100%;
    }

    .blog .blog-item .blog-img img {
        transition: 0.5s;
    }

    .blog .blog-item:hover .blog-img img {
        transform: scale(1.2);
    }

    .blog .blog-item .blog-content {
        position: relative;
        background: var(--bs-light);
    }

        .blog .blog-item .blog-content .blog-date {
            position: absolute;
            top: 0;
            left: 25px;
            transform: translateY(-50%);
            padding: 12px 25px;
            border-radius: 10px;
            color: var(--bs-white);
            background: var(--bs-primary);
        }

        .blog .blog-item .blog-content .blog-comment {
            display: flex;
            justify-content: space-between;
        }
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

    .team .team-item::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0;
        bottom: 0;
        left: 0;
        border-radius: 10px;
        background: var(--bs-secondary);
        z-index: 2;
        transition: 0.5s;
    }

    .team .team-item:hover::after {
        height: 100%;
    }

    .team .team-item .team-content {
        position: relative;
        z-index: 5;
    }

        .team .team-item .team-content h4,
        .team .team-item .team-content p {
            transition: 0.5s;
        }

    .team .team-item:hover .team-content h4 {
        color: var(--bs-white);
    }

    .team .team-item:hover .team-content p {
        color: var(--bs-white);
    }

    .team .team-item .team-img {
        position: relative;
        overflow: hidden;
        top: -100px;
        margin-bottom: -100px;
        border-radius: 10px;
        z-index: 3;
    }

        .team .team-item .team-img img {
            transition: 0.5s;
        }

    .team .team-item:hover .team-img img {
        transform: scale(1.1);
    }

    .team .team-item .team-img::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        border-radius: 10px;
        background: rgba(255, 255, 255, .3);
        z-index: 4;
        transition: 0.5s;
    }

    .team .team-item:hover .team-img::after {
        height: 100%;
    }
/*** Team End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

    .contact .contact-add-item .contact-icon {
        width: 90px;
        height: 90px;
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bs-secondary);
        background: var(--bs-primary);
        animation-name: icon-animat;
        animation-duration: 5s;
        animation-delay: 1s;
        animation-direction: alternate;
        animation-iteration-count: infinite;
        transition: 0.5s;
    }

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

    .footer .footer-item a {
        line-height: 35px;
        color: var(--bs-body);
        transition: 0.5s;
    }

    .footer .footer-item p {
        line-height: 35px;
    }

    .footer .footer-item a:hover {
        letter-spacing: 1px;
        color: var(--bs-primary);
    }

    .footer .footer-item .footer-btn a,
    .footer .footer-item .footer-btn a i {
        transition: 0.5s;
    }

        .footer .footer-item .footer-btn a:hover {
            background: var(--bs-white);
        }

            .footer .footer-item .footer-btn a:hover i {
                color: var(--bs-primary) !important;
            }
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

.stockara-topbar-wrapper {
    width: 100%;
    background: linear-gradient(90deg,#7a103c 0%, #6a1b9a 50%, #2455ff 100%);
    padding: 15px 20px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.stockara-topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stockara-topbar-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.stockara-topbar-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 40px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}

@media (max-width: 768px) {

    .stockara-topbar-title {
        font-size: 18px;
    }

    .stockara-topbar-badge {
        font-size: 13px;
        padding: 12px 18px;
        white-space: normal;
        text-align: center;
    }
}

/* Ultra Premium Hero Banner */
.carousel-caption {
    background: radial-gradient(circle at 85% 20%, rgba(80, 60, 255, .35), transparent 30%), linear-gradient(90deg, rgba(0,0,0,.90), rgba(4,10,35,.82), rgba(8,25,90,.55)) !important;
}

    /* Left Content Premium Padding */
    .carousel-caption .text-start {
        padding: 42px 48px;
        border-radius: 28px;
        background: linear-gradient(135deg, rgba(5,10,30,.62), rgba(30,20,80,.35));
        border: 1px solid rgba(255,255,255,.10);
        backdrop-filter: blur(10px);
        box-shadow: 0 25px 70px rgba(0,0,0,.38);
    }

        /* Heading */
        .carousel-caption .text-start h1 {
            font-size: 36px !important;
            font-weight: 900;
            line-height: 1.12;
            letter-spacing: -1.2px;
        }

        /* Subtitle */
        .carousel-caption .text-start h4 {
            font-size: 25px !important;
            font-weight: 800;
            line-height: 1.4;
        }

        /* Feature Small Boxes */
        .carousel-caption .text-start ul {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding-left: 0 !important;
            margin: 22px 0 !important;
        }

            .carousel-caption .text-start ul li {
                background: rgba(255,255,255,.09);
                border: 1px solid rgba(255,255,255,.12);
                border-radius: 14px;
                padding: 12px 14px;
                color: #fff !important;
                font-size: 16px;
                font-weight: 700;
            }

/* Form Premium Glow */
.stk-hero-form {
    padding: 42px !important;
    border-radius: 28px !important;
    background: radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 28%), linear-gradient(145deg, #3b0f83, #2731c9 55%, #0057ff) !important;
    box-shadow: 0 30px 90px rgba(0,0,0,.48), 0 0 85px rgba(73,80,255,.38);
}

    .stk-hero-form h4 {
        font-size: 20px !important;
        font-weight: 900 !important;
    }

    .stk-hero-form .form-control,
    .stk-hero-form .form-select {
        height: 50px;
    }

    .stk-hero-form button {
        height: 54px;
        border-radius: 14px !important;
        font-size: 19px;
    }
/* Premium About Section - Purple Blue */
/* ==========================
   PREMIUM ABOUT SECTION
========================== */
.about {
    position: relative;
    overflow: hidden;
}
/* Premium About Section - Purple Blue */

.about {
    background: radial-gradient(circle at 15% 20%, rgba(123,44,255,.10), transparent 30%), radial-gradient(circle at 85% 35%, rgba(36,85,255,.12), transparent 35%), linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
}

    /* Main Content Box */
    .about .about-item {
        padding: 35px;
        border-radius: 30px;
        background: rgba(255,255,255,.80);
        border: 1px solid rgba(255,255,255,.75);
        backdrop-filter: blur(15px);
        box-shadow: 0 25px 70px rgba(36,85,255,.10), 0 10px 35px rgba(123,44,255,.08);
    }

        /* Heading */
        .about .about-item h1 {
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -1px;
        }

            .about .about-item h1 span {
                background: linear-gradient( 90deg, #7b2cff, #2455ff );
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

    /* Vision Mission Cards */
    .about .about-item-inner {
        min-height: 250px;
        border: none !important;
        border-radius: 22px !important;
        background: rgba(255,255,255,.95) !important;
        box-shadow: 0 20px 45px rgba(36,85,255,.10);
        transition: .35s;
    }

        .about .about-item-inner:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(123,44,255,.20);
        }

        /* Icon Circle */

        .about .about-item-inner .about-icon {
            background: linear-gradient( 135deg, #7b2cff, #2455ff ) !important;
            box-shadow: 0 15px 40px rgba(123,44,255,.30);
        }

    /* Description Box */

    .about .text-item {
        background: #fff;
        border-radius: 18px;
        padding: 18px 24px !important;
        box-shadow: 0 10px 30px rgba(36,85,255,.08);
    }

    /* Computer Section */

    .about .about-img .img-1 {
        padding: 30px;
        border-radius: 28px;
        background: linear-gradient( 135deg, rgba(255,255,255,.90), rgba(235,240,255,.80) );
        box-shadow: 0 30px 80px rgba(36,85,255,.15);
    }

    /* Image Glow */

    .about .about-img img {
        filter: drop-shadow(0 20px 35px rgba(36,85,255,.20));
    }

    /* Experience Box */

    .about .bg-secondary {
        background: linear-gradient( 135deg, #35106f, #2455ff ) !important;
        border-radius: 22px !important;
        box-shadow: 0 20px 50px rgba(53,16,111,.25);
    }

        .about .bg-secondary h1,
        .about .bg-secondary h5 {
            color: #fff !important;
        }

    /* Check List */

    .about .fa-check-circle {
        color: #7b2cff !important;
    }

    /* Request Callback Button */

    .about .stk-btn-open {
        background: linear-gradient( 90deg, #7b2cff, #2455ff ) !important;
        border: none !important;
        box-shadow: 0 15px 40px rgba(123,44,255,.30);
        font-weight: 700;
    }

        .about .stk-btn-open:hover {
            transform: translateY(-4px);
            background: linear-gradient( 90deg, #2455ff, #00c6ff ) !important;
        }

    .about::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        top: -200px;
        right: -150px;
        border-radius: 50%;
        background: rgba(123,44,255,.08);
        filter: blur(80px);
    }

    .about::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        bottom: -150px;
        left: -100px;
        border-radius: 50%;
        background: rgba(36,85,255,.08);
        filter: blur(80px);
    }

/* ===========================
   PREMIUM TOP HEADER
=========================== */

.topbar {
    background: #071a44 !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .topbar a,
    .topbar span {
        color: #ffffff !important;
        font-size: 15px;
        font-weight: 500;
    }

    .topbar i {
        color: #700F43 !important;
        font-size: 16px;
    }

    /* Social Icons */

    .topbar .btn-square {
        width: 42px;
        height: 42px;
        border-radius: 50% !important;
        background: #ffffff !important;
        color: #700F43 !important;
        border: none;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

        .topbar .btn-square:hover {
            background: #5B4DEB !important;
            color: #fff !important;
            transform: translateY(-3px);
        }

/* ===========================
   PREMIUM NAVBAR
=========================== */

.nav-bar {
    background: #ffffff !important;
    box-shadow: 0 8px 35px rgba(0,0,0,.08);
    border-bottom: 1px solid #eef2f8;
}

/* Logo */

.navbar-brand {
    padding: 8px 15px !important;
    border-radius: 16px;
    background: #ffffff;
}

    .navbar-brand img {
        max-height: 75px !important;
    }

/* Menu */

.navbar-light .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 700;
    color: #071a44 !important;
    margin: 0 8px;
    padding: 30px 0 !important;
    position: relative;
}

    /* Underline Animation */

    .navbar-light .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 0;
        height: 3px;
        border-radius: 10px;
        background: #700F43;
        transition: .3s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 100%;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #700F43 !important;
    }

/* Call Button */

.nav-call-btn {
    background: #700F43;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    border: none;
    box-shadow: 0 12px 30px rgba(112,15,67,.25);
}

    .nav-call-btn:hover {
        background: #5B4DEB;
        color: #fff !important;
        transform: translateY(-3px);
    }

/* Sticky Navbar */

.sticky-top {
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 20px 0 !important;
    }

    .sticky-top .navbar-brand img {
        max-height: 60px !important;
    }



/* ===========================
   PREMIUM FOOTER
=========================== */

.footer {
    background: #04132d !important;
    position: relative;
    overflow: hidden;
    padding-top: 80px !important;
}

    /* Top Border */
    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #700F43;
    }

    /* Footer Titles */
    .footer h4 {
        color: #ffffff !important;
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 28px;
        position: relative;
    }

        .footer h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 45px;
            height: 3px;
            background: #5B4DEB;
            border-radius: 10px;
        }

    /* Links */
    .footer .footer-item a {
        color: #b7c3d8 !important;
        font-size: 16px;
        transition: .3s;
    }

        .footer .footer-item a:hover {
            color: #ffffff !important;
            padding-left: 8px;
        }

    /* Text */
    .footer p,
    .footer li {
        color: #b7c3d8 !important;
        font-size: 15px;
        line-height: 1.9;
    }

    /* Checkmarks */
    .footer .fa-check,
    .footer .fa-check-circle {
        color: #5B4DEB !important;
    }

    /* Contact Icons */
    .footer .fa-map-marker-alt,
    .footer .fa-phone-alt,
    .footer .fa-envelope,
    .footer .fa-location-dot {
        color: #700F43 !important;
        width: 22px;
    }

    /* Contact Rows */
    .footer .d-flex {
        margin-bottom: 12px;
    }

    /* Keywords */
    .footer .footer-tags a {
        display: inline-block;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.08);
        padding: 8px 14px;
        border-radius: 50px;
        margin: 4px;
        color: #d7deea !important;
    }

        .footer .footer-tags a:hover {
            background: #5B4DEB;
            color: #fff !important;
        }

    /* Footer Columns */
    .footer .footer-item {
        padding: 10px 15px;
    }

/* Copyright */
/* ==========================
   PREMIUM COPYRIGHT BAR
========================== */

.copyright {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 90deg, #7a103c 0%, #6a1b9a 50%, #2455ff 100% ) !important;
    border-top: 1px solid rgba(255,255,255,0.12) !important;
    padding: 22px 0;
}

    /* Glass Overlay */
    .copyright::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.04);
        backdrop-filter: blur(10px);
    }

    /* Left & Right Text */
    .copyright p,
    .copyright span,
    .copyright a {
        position: relative;
        z-index: 2;
        color: rgba(255,255,255,0.92) !important;
        font-size: 16px;
        font-weight: 500;
    }

    /* Highlight Brand */
    .copyright a {
        font-weight: 800;
        color: #ffffff !important;
        text-decoration: none;
        transition: .3s;
    }

        .copyright a:hover {
            color: #ffd6ff !important;
        }

    /* Divider Line */
    .copyright .container {
        position: relative;
        z-index: 2;
    }

    /* Optional Glow */
    .copyright::after {
        content: "";
        position: absolute;
        top: -80px;
        right: -50px;
        width: 250px;
        height: 250px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        filter: blur(80px);
    }

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 60px;
    background: #ff003c;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.15);
    box-shadow: 0 10px 30px rgba(255,0,60,.35), inset 0 1px 0 rgba(255,255,255,.25);
    transition: all .3s ease;
}

    .call-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255,0,60,.45), inset 0 1px 0 rgba(255,255,255,.3);
    }

