/* Basic global styles */
body {
    font-family: 'Outfit', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}


/* Custom colors matching the image */
:root {
    --primary-color: #0c1c38;
    --accent-color: #7f2ef8;
    --text-muted: #6c757d;
}

.text-primary-custom {
    color: var(--primary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

.nav-link {
    color: #000000 !important;
    font-size: 18px;
    font-weight: 500;
    margin-left: 30px;
}

.nav-link:hover {
    color: #7c3aed !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Card Hover Effects */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

.hover-up:hover .card-title {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

/* Navbar Sticky */
.navbar-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.card {
    margin-bottom: 80px;
    position: relative
}

.card-body {
    position: absolute;
    bottom: 5px;
    width: 90%;
    background: #fbf8ff;
    left: 5%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid #6e58ff;
    margin-bottom: 24px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    background: #6e58ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
}

.arrow-btn:hover {
    background: #4c3bcf;
}


.stats-section {
    background: #f0f0f0;
}

.stats-item {
    text-align: center;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #6e58ff;
}

.stats-number {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.stats-title {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}


.testimonial-section {
    margin: 0 auto;
    padding: 80px 0px;
    background-color: #7c3aed;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    /* color: #ffffff; */
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    /* color: #ffffff; */
    line-height: 1.2;
    margin: 0;
}

/* Swiper Container */
.testimonials-swiper {
    padding: 20px 0 60px;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #6e58ff;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f3f4f6;
}

.client-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.client-details p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* 
.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.nav-arrow:hover {
    background: #7c3aed;
    color: white;
    transform: scale(1.1);
}

.nav-arrow.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
} */

.testimonial-content {
    flex: 1;
}

.testimonial-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

.Blog-section {
    padding: 80px 0px;
    background-color: #fbf8ff;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star-rating i {
    color: #7c3aed;
    font-size: 18px;
}

.testimonial-date {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #afafaf;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
}


.footer {
    width: 100%;
    padding: 60px 0 0px 0 !important;
    background-color: #7c3aed;
}

/* .footer_box img {
    width: 80%;
} */

.footer_box p {
    font-size: 15px;
    padding: 10px 0 0 0;
    /* width: 75%; */
    color: #ffffff;
}

.footer_icon {
    width: 100%;
    margin: 12px 0;
}

.footer_icon ul {
    display: flex;
    /* justify-content: flex-end; */
    padding: 0;
}

.footer_icon ul li a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0 6px 0 0;
    font-size: 15px;
    color: #ffffff;
    background-color: #000000;
    transition: all 0.5s;
    cursor: pointer;
}

.footer_icon ul li a:hover {
    color: var(--secondary-color);
}

.footer_box h4 {
    display: inline-block;
    font-weight: 500;
    font-size: 24px;
    padding: 0 0 5px 0;
    margin: 0 0 30px 0;
    position: relative;
    color: #ffffff;
}

.footer_box h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 86%;
    height: 2px;
    background-color: #e4f2f2;
}

.footer_links {
    padding: 0;
}

.footer_links li {
    position: relative;
    padding: 0 0 0 10px;
}

.footer_links li::before {
    position: absolute;
    content: "\2B9E";
    left: 0;
    top: 0;
    color: #ffffff;
}

.footer_links li a {
    display: inline-block;
    font-size: 16px;
    margin: 0 0 10px 10px;
    font-weight: 100;
    transition: all 0.5s;
    color: #c5c5c5;
}

.footer_links li a:hover {
    color: var(--primary-color);
}

.footer_contact {
    padding: 0;
}

.footer_contact li {
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    font-size: 14px;
    margin: 0px 0 9px 0;
}

.link-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    display: grid;
    place-items: center;
    font-size: 15px;
    border-radius: 50%;
    color: #fff;
}

.link-text {
    width: 73%;
    margin-left: 20px;
    color: #ffffff;
    font-size: 15px;
}

.link-text span {
    color: #fff;
    font-size: 15px;
}

.link-text a {
    color: #d8d8d8;
    font-size: 16px;
    transition: all 0.5s;
}

.link-text a:hover {
    color: var(--primary-color);
}

.footer-acknowledge {
    width: 100%;
    margin: 30px 0 0 0;
    text-align: center;
}

.footer-acknowledge p {
    font-size: 18px;
    margin: 0 auto 20px auto;
    width: 60%;
}

section.footer_copyright p {
    margin: 0;
    padding: 10px 0px;
    text-align: center;
    font-size: 16px;
    color: #000;
}

section.footer_copyright {
    background: #02376b;
}

section.footer_copyright p {
    color: white;
}

.footer_box img {
    width: 120px;
    margin-bottom: 20px;
}

.footer_box.footer-second {
    margin-left: 80px;
}