/* Global Resets */
* {
    box-sizing: border-box;
    line-height: 1;
}

/* bootstrap customization  */

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1190px;
    }
}

:root {
    --theme-dark: #190b29;
    --secondary-purple: #6208bc;
    --accent-gray: #89898a;
}


/* **************** Preloader Style **********************  */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    opacity: 1;
    /* transition: opacity 0.5s ease; */
}

.preloader img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

#preloaderText {
    font-weight: bold;
    font-size: 25px;
    color: #6208bc;
    font-family: 'Courier New', Courier, monospace !important;
}

/* Body Styling */
body.dark-mode {
    background: var(--theme-dark) url("../assets/images/bodyBg.webp") top/cover no-repeat;
    font-family: "Gilroy", sans-serif;
}

/* Heading Font Styling */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lexend", sans-serif !important;
}

/* Theme Button */
.theme-btn {
    font-size: 20px;
    font-weight: 600;
    border: 2px solid var(--accent-gray);
    border-radius: 7px;
    padding: 9px 17px;
    background: transparent;
    color: white;
    line-height: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    text-transform: uppercase;
    /* Ensures consistent text case */
}

.theme-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--secondary-purple) 100%);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    /* Consolidate transition properties */
}

.theme-btn:hover::before {
    transform: scaleX(1);
}

.theme-btn:hover {
    color: white;
    animation: bubble 0.6s ease-out;
    /* Apply bubbling animation on hover */
}

/* Bubbling/jiggling animation */
@keyframes bubble {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.button-container {
    text-align: center;
}

.hover-button {
    background-color: transparent;
    color: white;
    border: 2px solid var(--accent-gray);
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hover-button::before {
    content: "→";
    font-size: 24px;
    transition: transform 0.4s ease;
    transform: rotate(335deg);
}

.hover-button:hover {
    background: linear-gradient(90deg,
            transparent 0%,
            var(--secondary-purple) 100%);
    border-radius: 5px;
    width: 150px;
    height: 45px;
    /* Maintain the same height */
}

.hover-button:hover::before {
    transform: translateX(-50px);
}

.hover-button span {
    opacity: 0;
    transition: opacity 0.4s ease;
    position: absolute;
    right: 20px;
}

.hover-button:hover span {
    opacity: 1;
}

/* Text Colors */
.text-accent-gray {
    color: var(--accent-gray);
}

/* Headings */
.sm-heading {
    font-size: 24px;
    line-height: 30px;
}

.secondary-heading {
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    color: white;
}

/* Navbar Styling */

/* Navbar Styling */
.navbar {
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(22, 22, 26, 0.18);
    padding: 15px 0;
    border-bottom: 2px solid var(--accent-gray);
}

a.navbar-brand img {
    width: 100px;
}

.navbar .navbar-nav .nav-link {
    color: var(--accent-gray);
    font-weight: 500;
    font-size: 18px;
    transition: 0.6s;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--secondary-purple);
}

a.nav-link.active {
    color: white !important;
}

.navbar .navbar-brand {
    width: 194px;
}

.phone-icon i.fa.fa-phone {
    background: var(--secondary-purple);
    padding: 5px 8px;
    border-radius: 59%;
    transition: 0.5s;
}

.navbar .nav-contact .theme-btn:hover .phone-icon i.fa.fa-phone {
    background: white !important;
    color: var(--secondary-purple);
}


/* Mega Menu Custom CSS */
.navbar-nav .dropdown-menu {
    position: absolute;
    left: 86%;
    transform: translateX(-49%);
    width: 95vw;
    /* Set width to 90% of viewport width */
    margin-top: 15px;
    /* Adjust as needed */
    border: none;
    border-radius: 5px;
    /* padding: 2rem 0; */
    border: 2px solid var(--accent-gray);
    top: 54px;
    text-align: center;
    background-color: #0a0610;
}


@media (min-width: 200px) {
    .animate {
        animation-duration: 0.5s;
        -webkit-animation-duration: 0.5s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.dropdown-menu .container {
    max-width: 98%;
}

.dropdown-menu .row {
    padding: .5rem 0;
}

.dropdown-menu .col-md-12,
.dropdown-menu .col-md-3 {
    color: #ffffff;
}

.dropdown-menu .col-md-12 h6,
.dropdown-menu .col-md-3 h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.dropdown-menu .col-md-12 ul,
.dropdown-menu .col-md-3 ul {
    list-style: none;
    padding: 0;
}

.dropdown-menu .col-md-12 ul li a,
.dropdown-menu .col-md-3 ul li a {
    color: var(--accent-gray);
    text-decoration: none;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 1rem;
    padding: 11px 2px;
    border: 1px solid var(--accent-gray);
    border-bottom: none !important;
    transition: 0.6s;
}

.dropdown-menu .col-md-12 ul li a:hover,
.dropdown-menu .col-md-3 ul li a:hover {
    background-color: var(--secondary-purple);
    color: white;
}

.dropdown-menu .col-md-12 ul li:last-child a,
.dropdown-menu .col-md-3 ul li:last-child a {
    border-bottom: 1px solid var(--accent-gray) !important;
}

/* Hero Section Styling */
.hero-section {
    background: center/cover no-repeat;
    padding: 8% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 80px;
    line-height: 72px;
    font-weight: bold;
}


.hero-section h1 span.gradient-heading {
    background: linear-gradient(to right,
            white,
            white 10%,
            var(--secondary-purple) 70%,
            var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-section p.hero-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.hero-slider,
.brand-slider,
.service-brand-slider,
.testimonial-slider,
.port-slider,
.slick-slider {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}

.hero-slider.slick-initialized,
.brand-slider.slick-initialized,
.slick-slider.slick-initialized,
.port-slider.slick-initialized,
.testimonial-slider.initialized .service-brand-slider.slick-initialized {
    visibility: visible;
    opacity: 1;
}

.hero-section .slide-heading-2 {
    font-size: 65px;
    line-height: 65px;
}

.hero-section ul.slick-dots {
    display: flex;
    justify-content: flex-end;
    bottom: -44px;
}

.hero-section .slick-dots li.slick-active button:before {
    color: var(--secondary-purple);
}

.slick-dots li button:before {
    font-size: 20px;
    color: white;
    opacity: 1;
}

.hero-section .slick-track {
    display: flex;
    align-items: center;
}

.hero-content {
    opacity: 1;
    /* Ensure the content is visible by default */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content-2 {
    opacity: 0;
    /* Ensure the content is visible by default */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content-2 {
    transform: translateX(-100%);
}

.hero-content.fade-in,
.hero-content-2.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.hero-content.fade-out,
.hero-content-2.fade-out {
    opacity: 0;
    transform: translateX(-100%);
}

/* brand slider stylig  */

.clients-section .slick-list.draggable {
    width: 100%;
}

.clients-section .slick-track {
    width: 100% !important;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.brand-slider img.slick-slide {
    padding: 10px 30px;
}

/* About Us Section Styling */
.about-sec {
    padding: 100px 0px;
}

.about-sec .about-content {
    padding-left: 30px;
}

/* Service Section Styling */
.service-section {
    color: white;
    padding: 50px 0;
}

.service-bg {
    border-radius: 10px;
    border: 2px solid #49454e;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

.service-bg.bg-1 {
    background-image: url("../assets/images/service-bg-1.webp");
    background-position: left top;
}

.service-bg.bg-2 {
    background-image: url("../assets/images/service-bg-2.webp");
    background-position: bottom right;
}

.service-bg.bg-3 {
    background-image: url("../assets/images/service-bg-3.webp");
    background-position: bottom left;
}

.service-bg.bg-4 {
    background-image: url("../assets/images/service-bg-4.webp");
    background-position: bottom center;
}

.service-bg.bg-5 {
    background-image: url("../assets/images/service-bg-5.webp");
    background-position: top right;
}

.service-bg.bg-6 {
    background-image: url("../assets/images/service-bg-6.webp");
    background-position: bottom right;
}

.service-bg.bg-7 {
    background-image: url("../assets/images/service-bg-3.webp");
    /* background-position: bottom right; */
    background-position-x: 100px !important;
    background-position-y: 90px;
}

.service-section h2 {
    margin-bottom: 20px;
}

.service-section p {
    margin-bottom: 30px;
}

.service-box {
    padding: 20px;
    border-radius: 10px;
}

.service-box li a {
    color: var(--accent-gray);
    text-decoration: none;
    transition: 0.6s;
}

.service-box li:hover a {
    color: var(--secondary-purple);
}

.service-box:hover {
    background: linear-gradient(to top, #21073c 0%, transparent 40%);
}

.service-box h4 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

.service-box ul {
    list-style: none;
    padding: 0;
}

.service-box ul li {
    margin-bottom: 10px;
    color: var(--accent-gray);
    position: relative;
    padding-left: 25px;
}

.service-box ul li::before {
    content: "";
    position: absolute;
    left: -2px;
    color: #fff;
    transition: 0.6s;
    top: -4px;
    width: 25px;
    height: 25px;
    background-image: url("../assets/images/Logicracks-Icon-White.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-box ul li:hover::before {
    color: var(--secondary-purple);
}

/* Why Us Section Styling */
.why-us-sec {
    padding: 100px 0 50px 0;
}

.counter-sec .counter-box {
    padding: 20px 7px 7px 10px;
    border-radius: 10px;
    border: 2px solid #49454e;
    height: 100%;
}

.counter-sec .counter {
    font-size: 60px;
    line-height: 60px;
    font-weight: bold;
    background: linear-gradient(to right,
            white,
            white 3%,
            var(--secondary-purple) 50%,
            var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    color: transparent;
    font-family: "Montserrat", sans-serif !important;
}

.counter-sec .counter-title {
    font-size: 20px;
    font-family: "Montserrat", sans-serif !important;
    line-height: 25px;
}

/* Testimonial Section Styling */
.testimonials .testimonial-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid gray;
    transition: transform 0.3s ease;
}

.testimonials .testimonial-card .testimonial-content-box {
    padding: 30px;
    transition: opacity 0.3s ease;
}

.testimonials .testi-box {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.testimonials .testimonial-name,
.testimonials .testimonial-role {
    font-size: 18px;
    font-family: "Montserrat", sans-serif !important;
}

.testimonials .testimonial-name {
    font-weight: bold;
    color: white;
    line-height: 18px;
    margin-bottom: 7px;
}

.testimonials .testimonial-role,
.testimonials .testimonial-quote {
    color: var(--accent-gray);
}

.testimonials .testimonial-quote {
    line-height: 28px;
    margin-top: 15px;
}

.testimonials .testimonial-card.purple-testi {
    background-color: var(--secondary-purple);
}

.testimonials .testimonial-card.purple-testi * {
    color: white !important;
}

/* Video Box Styling */

div#videoModal {
    backdrop-filter: blur(5px);
}

.testimonials .video-box {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../assets/images/video-thumb.png") no-repeat center center;
    background-size: cover;
    transition: right 0.5s ease;
}

.testimonials .video-box .play-button {
    font-size: 50px;
    color: white;
    cursor: pointer;
}

.testimonials .testimonial-card:hover .testimonial-content-box {
    opacity: 0;
}

.testimonials .testimonial-card:hover .video-box {
    right: 0;
}

/* Loader Styling */
.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid var(--secondary-purple);
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

/* Keyframes for spinning effect */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hide loader by default */
#videoLoader {
    display: none;
}

/* Loader Container Styling */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    /* Optional: darken background for better visibility */
}

/* Modal Styling */
.modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 1rem);
}

.ratio.ratio-16x9 {
    position: relative;
    width: 100%;
    background: #000;
}

.ratio.ratio-16x9 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#videoModal .modal-content {
    background: linear-gradient(to bottom, #21073c 30%, var(--theme-dark) 40%);
}

/* Change the modal close button color to white */
.modal .btn-close {
    background-color: transparent;
    border: none;
    position: relative;
}

.modal .btn-close:focus {
    box-shadow: none;
    border: none;
}

.modal .btn-close::before,
.modal .btn-close::after {
    content: "";
    position: absolute;
    width: 1.2rem;
    height: 2px;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Projects Section Styling */
.slick-prev {
    left: -5%;
}

.slick-next {
    right: -5%;
}

.slick-prev,
.slick-next {
    top: 59% !important;
    width: 70px;
    height: 70px;
}

.project-sec .slick-slider .slick-slide {
    padding: 20px;
}

.slick-next:before,
.slick-prev:before {
    font-size: 35px;
}

.project-sec {
    padding: 80px 0;
}

.proj-card {
    position: relative;
    background-color: var(--accent-gray);
    text-align: center;
    padding: 2px;
    border-radius: 10px;
    clip-path: polygon(0 0, 80% 0%, 100% 25%, 100% 100%, 0 100%, 0% 50%);
    -webkit-clip-path: polygon(0 0, 80% 0%, 107% 24%, 100% 100%, 0 100%, 0% 53%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.border-span {
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    clip-path: polygon(0 0, 80% 0%, 100% 25%, 100% 100%, 0 100%, 0% 50%);
    -webkit-clip-path: polygon(0 0, 80% 0%, 107% 24%, 100% 100%, 0 100%, 0% 53%);
    background-color: var(--theme-dark);
    z-index: -1;
    border-radius: 10px;
}

.proj-card:hover .border-span {
    background: linear-gradient(to top, #21073c 0%, var(--theme-dark) 40%);
}

.project-sec .proj-card .card-body {
    padding: 15px 0 8px 0;
}

.project-sec .proj-card .card-title {
    font-size: 22px;
    line-height: 28px;
    font-family: "Gilroy", sans-serif;
}

.project-sec .proj-card .card-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--accent-gray);
}

/* Appointment Section Styling */
.appoint-sec .bg-wrapper {
    padding: 6% 0;
    background: center/cover no-repeat url("../assets/images/contact-bg.webp");
}

.appoint-sec .brand-heading {
    font-size: 80px;
    font-family: "Montserrat", sans-serif !important;
    color: var(--theme-dark);
}

/* Footer Section Styling */
.footer-sec .footer-links .footer-title {
    font-size: 24px;
    font-family: "Gilroy", sans-serif !important;
    font-weight: 600;
}

.footer-sec .footer-links ul {
    margin-top: 24px;
}

.footer-sec .footer-links ul li {
    color: var(--accent-gray);
    margin-bottom: 10px;
}

.footer-sec .footer-links ul li a {
    color: var(--accent-gray);
    text-decoration: none;
    transition: 0.5s;
}

.footer-sec .location-sec h3 {
    font-size: 20px;
    font-family: "Gilroy", sans-serif !important;
}

.footer-sec .location-sec p {
    font-size: 18px;
    color: var(--accent-gray);
    line-height: 28px;
}

.footer-links ul li a:hover {
    color: var(--secondary-purple);
}

/* Copyright Section Styling */
.copyright-sec {
    padding: 18px 0;
    background-color: var(--secondary-purple);
    color: white;
    font-size: 18px;
}

/* ************************** Service Page Styling ******************************* */

/* servcice hero styling  */

.service-hero {
    padding: 14% 0 6% 0;
}

h1.service-heading {
    font-size: 50px;
    font-weight: bold;
    color: white;
    line-height: 50px;
}

p.service-para {
    font-size: 22px;
    line-height: 28px;
}

/* service hiring styling  */

.hiring-sec {
    padding: 100px 0;
}

.hiring-sec .col-lg-5.vertical-service-card {
    padding-left: 77px;
}

.hiring-accordion {
    padding: 45px 50px 130px 50px;
    border: 2px solid var(--accent-gray);
    border-radius: 10px;
    background: linear-gradient(to top left, #21073c 0%, transparent 40%);
}

.hiring-accordion .accordion-item {
    background: transparent;
    border: none;
}

.hiring-accordion button.accordion-button {
    background: transparent !important;
    color: white !important;
    font-size: 18px;
    padding: 12px;
    border: none !important;
}

.hiring-accordion * {
    box-shadow: none !important;
}

.hiring-accordion .accordian-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--accent-gray);
}

/* Custom style for the accordion button arrow */
.hiring-accordion button.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 fill%3D%22%236208BC%22 class%3D%22bi bi-chevron-down%22 viewBox%3D%220 0 16 16%22%3E%3Cpath fill-rule%3D%22evenodd%22 d%3D%22M1.5 4.5a.5.5 0 0 1 .707 0L8 10.293 13.793 4.5a.5.5 0 0 1 .707.707l-6 6a.5.5 0 0 1-.707 0l-6-6a.5.5 0 0 1 0-.707z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

/* service brand slider stylign  */

.service-brand-section .slick-list.draggable {
    width: 100%;
}

.service-brand-section .slick-track {
    width: 100% !important;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.service-brand-section img.slick-slide {
    padding: 10px 30px;
}

/* service faq section */
.service-faqs {
    padding: 70px 0;
}

.service-faqs .accordion-item {
    background-color: var(--secondary-purple);
}

.service-faqs .accordion-item * {
    color: white;
}

.service-faqs button.accordion-button {
    background: var(--secondary-purple);
    border-bottom: 0px !important;
}

.service-faqs .accordion-button:not(.collapsed),
.service-faqs .accordion-button:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
}

.service-faqs .accordion-button::after {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background-color: var(--theme-dark);
    background-image: none !important;
}

.service-faqs .accordion-button.collapsed::after {
    background-color: var(--bs-gray-300);
}

/* pricing card section  */

.pricing-section {
    padding: 60px;
}

.price-card {
    border: 2px solid var(--accent-gray);
    border-radius: 10px;
    padding: 35px 30px 30px 30px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.price-card h2 {
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.price-card h3 {
    font-size: 55px;
    line-height: 55px;
    font-weight: bold;
    color: var(--secondary-purple);
    margin-bottom: 20px;
    font-family: "Gilroy", sans-serif !important;
}

.price-card ul {
    list-style: disc;
    margin-bottom: 20px;
}

.price-card ul li {
    margin-bottom: 10px;
    color: var(--accent-gray);
    font-size: 20px;
    line-height: 25px;
    padding-left: 10px !important;
}

.price-card {}

li.check,
li.cross {
    position: relative;
    list-style: none;
}

li.check::before,
li.cross::before {
    font-family: FontAwesome;
    position: absolute !important;
    top: 1px;
    left: -29px;
    font-size: 25px !important;
    text-align: center;
    width: 30px;
    height: 30px;
}


li.check::before {
    color: var(--secondary-purple);
    content: "\f00c";
}

li.cross::before {
    content: "\f00d";
    color: rgb(167, 0, 0);
}


.select-plan {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 55px;
}

.select-plan input[type="radio"] {
    margin-right: 10px;
    border: 0px;
    width: 1.5em;
    height: 1.5em;
    accent-color: #7e3af2;
    /* For modern browsers to style the radio button */
}

.select-plan label {
    color: white;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

section.pricing-section .container {
    padding: 49px;
}

/* service contact form styling  */

.contact-form-sec {
    width: 100%;
    padding: 50px 0;
    background-image: url("../assets/images/contact-form-bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-form .form-group,
.pricing-form .form-group {
    margin-bottom: 5px;
}

.contact-form .form-group input,
.pricing-form .form-group input,
.contact-form .form-group textarea,
.pricing-form .form-group textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form .form-group input[type="tel"],
.pricing-form .form-group input[type="tel"] {
    padding-left: 50px;
    /* Adjust padding for the flag icon */
}

.contact-form .form-group textarea,
.pricing-form .form-group textarea {
    resize: none;
    height: 100px;
}

.contact-form .form-row,
.pricing-form .form-row {
    display: flex;
    gap: 15px;
}

.contact-form .form-row .form-group,
.pricing-form .form-row .form-group {
    flex: 1;
}

.contact-form .iti.iti--allow-dropdown,
.pricing-form .iti.iti--allow-dropdown {
    width: 100%;
}

/* ************************ About Page Styling **********************  */

body.about-page .hiring-sec {
    padding: 30px 0;
}

body.about-page .counter-sec .counter-box {
    border-radius: 0px;
    border: none;
    height: 100%;
}

body.about-page .counter-sec .counter {
    font-size: 45px;
    line-height: 45px;
}

body.about-page .counter-sec .counter-title {
    font-size: 15px;
    line-height: 21px;
}

body.about-page .counter-sec {
    border: 2px solid var(--accent-gray);
    margin-top: 50px !important;
    border-radius: 10px;
    background: #ffffff05;
    transition: 0.6s;
}

body.about-page .counter-sec:hover {
    background: #ffffff12;
}

/* our missons sec styling  */

.our-misson-sec {
    padding: 70px 0;
}

.our-misson-sec .about-info-card {
    height: 100%;
    padding: 40px;
    background-color: var(--secondary-purple);
    border-radius: 10px;
    border: 2px solid var(--accent-gray);
    color: white;
}

.our-misson-sec .about-info-card h4 {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin: 25px 0;
}

.our-misson-sec .about-info-card p {
    font-size: 22px;
    line-height: 28px;
    color: whtie;
}

/* about page testimonial section styling  */

body.about-page section.testimonials .slick-slide {
    padding: 0px 10px;
}

body.about-page li.slick-active button::before {
    color: var(--secondary-purple) !important;
}

/* about page contact form styling  */

body.about-page .contact-form-sec {
    background: transparent !important;
}

body.about-page .contact-form-sec #contactForm {
    padding: 15px !important;
    background-color: var(--secondary-purple) !important;
    border-radius: 10px;
}

/************************ contact apge styling  ********************************/

/* conteact hero section  */

.inner-page-hero {
    margin-top: 103px;
    padding: 11% 0 18% 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* contact info section  */

.contact-info {
    margin-top: -70px;
}

.contact-info-card {
    padding: 70px 40px;
    border-radius: 10px;
    border: 2px solid var(--accent-gray);
    background-color: #ffffff09;
    height: 100%;
    text-align: center;
}

.contact-info-card h3 {
    font-size: 30px;
    color: white;
    line-height: 30px;
    margin: 13px 0;
}

.contact-info-card p {
    color: var(--accent-gray);
}

/* *********************** Project Page Styling Start ******************************  */

.about-project-sec {
    padding: 60px 0;
}

.other-proj-sec {
    padding: 50px 50px 80px 50px;
    border-radius: 10px;
    border: 2px solid var(--accent-gray);
}

.other-proj-sec .proj-card {
    margin-bottom: 40px !important;
}

.other-proj-sec h3 {
    font-size: 30px;
    line-height: 30px;
    color: white;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.proj-gallery-sec .slick-next {
    right: 0px !important;
}

/* ********************* Blog Page Styling Start *********************** */

.blog-hero-bg {
    background-image: linear-gradient(rgba(18, 4, 32, 0.9), rgba(0, 0, 0, 0.8)),
        url("../assets/images/blog-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-post-sec {
    padding-bottom: 50px;
}

.blog-post-sec .secondary-heading {
    margin: 50px 0 !important;
    padding-top: 30px !important;
}

.blog-post-sec .blog-card {
    position: relative;
    width: 100%;
    display: block;
    height: 300px;
    border: 2px solid gray;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.blog-post-sec .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
    z-index: 0;
}

.blog-post-sec .blog-card:hover .image-container {
    transform: scale(1.1);
}

.blog-post-sec .blog-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 20%,
            rgba(75, 0, 130, 0.9) 100%);
    transition: background 0.5s ease-in-out;
    z-index: 1;
}

.blog-post-sec .blog-card:hover::after {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 20%,
            rgba(75, 0, 130, 1) 100%);
}

.blog-post-sec .blog-title {
    position: absolute;
    bottom: 20px;
    padding: 0 20px;
    color: white;
    font-weight: 600;
    line-height: 30px;
    font-size: 24px;
    z-index: 2;
    transition: bottom 0.5s ease-in-out;
}

.blog-post-sec .blog-card:hover .blog-title {
    bottom: 40px;
}

/* ********************* Portfolio Section **************************  */

.portfolio-sec {
    margin: 50px 0;
    padding: 70px 0;
    background-color: var(--secondary-purple);
}

/* Slider Styling */
.sliders .port-slider {
    display: none;
    /* Initially hide all sliders */
}

.port-slider img {
    width: 100%;
    border-radius: 10px;
}

/* Slick Slider Customization */
.portfolio-sec .slick-slide {
    padding: 0 10px;
    /* Small gaps between slides */
}

.portfolio-sec .slick-dots li button:before {
    font-size: 13px !important;
    margin-top: 30px;
}

.portfolio .nav.nav-tabs {
    border: 1px solid transparent;
    margin-bottom: 29px;
}

.portfolio .nav.nav-tabs .nav-link {
    border-radius: 7px !important;
    font-size: 18px;
    background-color: white !important;
    color: var(--theme-dark);
    font-weight: 600;
}

.portfolio .nav.nav-tabs .nav-link:hover {
    border: 1px solid transparent;
}

.portfolio .nav.nav-tabs .nav-link.active {
    background-color: var(--theme-dark) !important;
    color: white;
    border: 1px solid transparent;
}

.portfolio-sec li.nav-item {
    margin: 0px 8px;
}


/* pricing form section  */

.pricing-form-sec {
    padding: 60px 0;
}

.pricing-form input,
.pricing-form textarea {
    background-color: transparent;
    color: white;
}

/* Responsive Styling start  */

@media screen and (max-width: 1680px) {}

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1400px) {}

@media screen and (min-width: 1366px) {
    .hero-section {
        background: center / cover no-repeat;
        padding: 7% 0 3% 0;
    }
}

@media screen and (max-width: 1280px) {

    .dropdown-menu .col-md-12 ul li a,
    .dropdown-menu .col-md-3 ul li a {
        font-size: 12px;
        padding: 8px 2px;
    }
}

@media screen and (max-width: 1024px) {
    .hero-section h1 {
        font-size: 65px;
        line-height: 65px;
    }

    .hero-section p.hero-title {
        font-size: 22px;
    }

    .sm-heading {
        font-size: 20px;
        line-height: 26px;
    }

    .secondary-heading {
        font-size: 30px;
        line-height: 35px;
    }

    .slick-prev,
    .slick-next {
        width: 50px;
        height: 50px;
    }

    .slick-prev {
        left: 0%;
    }

    .slick-next {
        right: 0%;
    }

    h1.service-heading {
        font-size: 45px;
        line-height: 45px;
    }

    p.service-para {
        font-size: 18px;
        line-height: 24px;
    }

    .hiring-accordion h3 {
        font-size: 22px !important;
    }

    .col-lg-5.vertical-service-card {
        padding-left: 10px !important;
    }

    .hiring-accordion button.accordion-button {
        font-size: 16px;
    }

    section.pricing-section .container {
        padding: 10px;
    }

    .price-card h2 {
        font-size: 22px;
    }

    .price-card h3 {
        font-size: 40px;
        line-height: 40px;
    }

    body.about-page .counter-sec .counter {
        font-size: 36px;
        line-height: 37px;
    }

    body.about-page .counter-sec .counter-title {
        font-size: 12px;
        line-height: 18px;
    }

    button#mode-toggle {
        padding: 0;
        border: none;
        background: transparent;
        position: absolute;
        top: 15px;
        right: -25px !important;
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 10px;
    }

    .dropdown-menu .col-md-12 ul li a,
    .dropdown-menu .col-md-3 ul li a {
        font-size: 14px;
        padding: 11px 2px;
    }

    .navbar-nav li {
        text-align: center;
        /* background-color: var(--secondary-purple); */
        border-radius: 8px;
        border-bottom: 2px solid var(--secondary-purple);
    }

    .navbar-nav li a {
        color: white !important;
    }

    body.light-mode .navbar-nav li a {
        color: #424242 !important;
    }

    .nav-contact {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .navbar-nav .dropdown-menu {
        position: absolute;
        left: 0;
        transform: translateX(0%);
        width: 100%;
        /* Set width to 90% of viewport width */
        margin-top: 15px;
        /* Adjust as needed */
        border: none;
        border-radius: 5px;
        padding: 2rem 0;
        border: 2px solid var(--accent-gray);
        top: 24px;
        text-align: center;
        background-color: #0a0610;
        height: 600px;
        overflow-y: scroll !important;
    }

    .navbar-nav .dropdown-menu .col-md-12 {
        margin-bottom: 30px;
    }

    .navbar-nav .dropdown-menu ul li {
        border-radius: 0 !important;
        border: none !important;
    }

    .hero-section {
        padding: 4% 0 4% 0;
    }

    .about-sec {
        padding: 76px 0px;
    }

    .about-img img {
        width: 100%;
    }

    .about-sec .about-content {
        padding-left: 0px;
        margin-top: 30px;
    }

    section.service-section .text-lg-left {
        margin-bottom: 27px;
    }

    .row.mt-4 {
        margin-top: 0px !important;
    }

    section.service-section .col-lg-3 {
        margin-bottom: 32px;
    }

    .why-us-sec {
        padding: 20px 0 20px 0;
    }

    .why-content {
        margin-bottom: 30px;
    }

    .counter-sec .col-lg-3 {
        margin-bottom: 30px !important;
    }

    .appoint-sec .brand-heading {
        font-size: 43px;
    }

    .footer-links {
        margin-top: 30px;
    }

    .location-sec {
        margin-top: 30px;
    }

    .copyright-sec {
        font-size: 15px;
    }

    .slick-prev {
        left: -6%;
    }

    .slick-next {
        right: -6%;
    }

    .hero-section .slide-heading-2 {
        font-size: 45px;
        line-height: 45px;
    }

    .hero-img {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }

    .service-hero img {
        display: block;
        margin-bottom: 30px;
    }

    .col-lg-5.vertical-service-card {
        padding-left: 0;
        margin-top: 20px;
    }

    .price-card {
        margin-bottom: 20px;
    }

    img.img-fluid.brand-img {
        width: 200px;
    }

    section.service-hero img {
        width: 100%;
    }

    body.about-page .card.proj-card {
        margin-bottom: 35px;
    }

    .our-misson-sec .about-info-card p {
        font-size: 20px;
        line-height: 26px;
        color: white;
    }

    .our-misson-sec .about-info-card {
        margin-bottom: 30px;
    }

    section.contact-info .col-lg-4 {
        margin-bottom: 35px;
    }

    .inner-page-hero {
        margin-top: 92px;
    }

    .proj-gallery-sec {
        margin-bottom: 50px;
    }

    .blog-post-sec .blog-card {
        margin-bottom: 35px;
    }

    button#mode-toggle {
        position: absolute;
        top: 25px;
        left: 50%;
        z-index: 9999;
        transform: translateX(-50%);
    }

    section.about-sec {
        padding-bottom: 20px;
    }

    section.service-section div.button-container {
        margin-bottom: 30px !important;
    }

    .service-hero+.hiring-sec {
        padding-top: 20px !important;
    }

    section.pricing-section .col-lg-4 {
        margin-bottom: 25px;
    }

}

@media screen and (max-width: 800px) {
    .hero-section h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .hero-section p.hero-title {
        font-size: 20px;
    }

    .inner-page-hero {
        padding: 11% 0 25% 0;
    }
}

@media screen and (max-width: 768px) {
    .brand-images {
        justify-content: center !important;
        gap: 31px !important;
    }

    .slick-prev {
        left: -2%;
    }

    .slick-next {
        right: -2%;
    }

    .hero-section {
        padding: 10% 0;
    }
}

@media screen and (max-width: 690px) {
    body {
        background-position: right !important;
    }

    .navbar-brand img {
        width: 66px;
    }

    .bg-wrapper {
        padding: 12% 0 !important;
    }

    .counter-sec .counter {
        font-size: 55px;
        line-height: 55px;
    }

    .copyright-content {
        flex-direction: column;
        gap: 10px;
    }

    img.brand-img {
        width: 280px;
    }

    .slick-prev {
        left: -8%;
    }

    .slick-next {
        right: -8%;
    }

    .hero-section .slide-heading-2 {
        font-size: 40px;
        line-height: 40px;
    }

    .hero-img {
        margin-top: 0px !important;
    }

    .service-hero {
        padding: 23% 0 6% 0;
    }

    .portfolio .nav.nav-tabs {
        display: block;
    }

    .portfolio .nav.nav-tabs li {
        margin-bottom: 8px;
    }

    .portfolio-sec .service-para {
        font-size: 12px;
        line-height: 18px;
        padding: 0px 14px;
    }

    .slider-logos img {
        width: 30px !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-section h1 {
        font-size: 60px;
        line-height: 60px;
    }

    .hero-section p.hero-title {
        font-size: 18px;
    }

    .secondary-heading {
        font-size: 26px;
        line-height: 31px;
    }

    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }

    .project-sec .project-sec .slick-slider .slick-slide {
        padding: 0 63px;
    }

    .project-sec .proj-card .card-title {
        font-size: 20px;
        line-height: 26px;
    }

    .project-sec .proj-card .card-text {
        font-size: 18px;
        line-height: 25px;
    }

    .theme-btn {
        font-size: 15px;
        padding: 6px 15px;
    }

    .secondary-heading {
        font-size: 22px;
        line-height: 31px;
    }

    .hero-section {
        min-height: 85vh;
    }

    .appoint-sec .bg-wrapper {
        background-position-x: -300px;
    }

    .hero-content {
        margin-bottom: 65px;
    }

    .service-hero {
        padding: 33% 0 6% 0;
    }

    .inner-page-hero {
        padding: 15% 0 30% 0;
    }

    .navbar-nav .dropdown-menu {
        height: 400px;
    }

    .hero-content {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 414px) {
    .hero-section h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .hero-section p.hero-title {
        font-size: 17px;
    }

    .project-sec .proj-card .card-text {
        font-size: 16px;
        line-height: 22px;
    }

    .theme-btn {
        font-size: 15px;
        padding: 6px 15px;
    }

    h1.service-heading {
        font-size: 35px;
        line-height: 35px;
    }

    .pricing-section {
        padding: 30px;
    }

    .inner-page-hero {
        padding: 19% 0 35% 0;
    }

    .other-proj-sec {
        padding: 35px 19px 62px 19px;
    }
}

@media screen and (max-width: 375px) {
    .project-sec .proj-card .card-text {
        font-size: 14px;
        line-height: 20px;
    }

    .copyright-sec {
        font-size: 14px;
    }
}

@media screen and (max-width: 360px) {
    .project-sec .slick-slider .slick-slide {
        padding: 0 56px;
    }
}


/* Dark mode light mode styling  */


body.light-mode {
    --theme-dark: #190b29;
    /* Light mode background color */
    --secondary-purple: #6208bc;
    /* Light mode secondary color */
    --accent-gray: #333333;
    font-family: "Gilroy", sans-serif !important;
}

body.light-mode .text-white {
    color: #424242 !important;
}

body.light-mode .text-secondary {
    color: #424242 !important;
}

body.light-mode {
    /* background-image: url("../assets//images/light-body-bg.png") !important; */
    background: #EBE2F3 url("../assets/images/light-background.png") top/cover no-repeat !important;
}


body.light-mode .hero-section h1 span.gradient-heading {
    background: linear-gradient(to right,
            #424242,
            #424242 10%,
            var(--secondary-purple) 70%,
            var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    color: transparent;
}

body.light-mode .theme-btn {
    color: #424242;
}

body.light-mode .theme-btn i {
    color: white;
}

body.light-mode .theme-btn:hover {
    color: white;
}

body.light-mode .slick-dots li button:before {
    color: #424242;
}

body.light-mode .secondary-heading {
    color: var(--secondary-purple);
}

body.light-mode .hover-button {
    background-color: var(--secondary-purple);
    color: white;
}

body.light-mode .service-box h4 {
    color: var(--secondary-purple);
}

body.light-mode .service-box ul li::before {
    color: #190b29;
}

body.light-mode .service-box:hover {
    background: linear-gradient(to top, #b388ff 0%, transparent 40%);
}

body.light-mode .counter-sec .counter {
    background: linear-gradient(to right,
            rgb(66, 66, 66),
            rgb(66, 66, 66) 3%,
            var(--secondary-purple) 50%,
            var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    color: transparent;
}

body.light-mode .service-box ul li::before {
    background-image: url("../assets/images/Logicracks-Icon.png");
}

body.light-mode .testimonials .testimonial-name {
    color: #424242;
}

body.light-mode .proj-card .text-white {
    color: white !important;
}

body.light-mode .proj-card .theme-btn {
    color: white;
    border-color: white !important;
}

body.light-mode section.appoint-sec h2.brand-heading {
    color: #e6ceff !important;
}

body.light-mode section.appoint-sec h2,
body.light-mode section.appoint-sec .sm-heading {
    color: white !important;
}

body.light-mode section.appoint-sec .theme-btn {
    color: white !important;
}

body.light-mode .footer-sec .text-white {
    color: var(--secondary-purple) !important;
}

body.light-mode section.copyright-sec .container div p a.text-white {
    color: white !important;
}

body.light-mode a.nav-link.active {
    color: var(--secondary-purple) !important;
}

body.light-mode .navbar-nav .dropdown-menu {
    background: white;
}

body.light-mode .navbar-nav .dropdown-menu h6 {
    color: var(--secondary-purple);
}

body.light-mode h1.service-heading {
    color: var(--secondary-purple);
}

body.light-mode .contact-form button.theme-btn {
    color: white !important;
}

body.light-mode .hiring-accordion button.accordion-button {
    color: #424242 !important;
}

body.light-mode .hiring-accordion {
    background: linear-gradient(to top left, #b388ff 0%, transparent 40%);
}

body.light-mode .contact-info-card {
    background: linear-gradient(80deg, #DDCDEE, #EBE3F3);
}

body.light-mode .contact-info-card h3 {
    color: #424242;
}

body.contact-page.light-mode section.hiring-sec .hiring-content .contact-form button.theme-btn {
    color: #424242 !important;
}

body.contact-page.light-mode section.hiring-sec .hiring-content .contact-form button.theme-btn:hover {
    color: white !important;
}

body.light-mode .portfolio-sec h2.secondary-heading {
    color: white;
}

body.light-mode .portfolio-sec p.service-para.text-white {
    color: white !important;
}

body.light-mode .portfolio-sec .portfolio .nav.nav-tabs .nav-link.active {
    color: white !important;
}

body.light-mode .price-card h2 {
    color: #424242;
}

body.light-mode .select-plan label {
    color: #424242;
}

body.light-mode .portfolio-sec .slick-dots li button:before {
    color: white !important;
}

body.light-mode .contact-form-sec h2,
body.light-mode .contact-form-sec p {
    color: white !important;
}

body.light-mode .contact-form-sec .contact-form form button.theme-btn {
    border-color: white !important;
}

body.light-mode .pricing-form form button.theme-btn {
    border-color: #424242 !important;
}

body.light-mode.about-page .contact-form-sec h2,
body.light-mode.about-page .contact-form-sec p {
    color: var(--secondary-purple) !important;
}

button#mode-toggle {
    padding: 0;
    border: none;
    background: transparent;
    position: absolute;
    top: 15px;
    right: -40px;
    z-index: 9999;
}

button#mode-toggle i {
    font-size: 23px;
    font-weight: bold;
}

body.light-mode button#mode-toggle i {
    color: #6208bc;
}

body.dark-mode button#mode-toggle i {
    color: #fff;
}

body.light-mode button.navbar-toggler {
    background-color: var(--secondary-purple);
}

body.light-mode .project-sec .proj-card .card-text {
    color: lightgray !important;
}