@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

body {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* top-header */
.top-header {
    background: #19164d;
    padding: 10px 0;
    font-size: 16px;
    background: linear-gradient(135deg, #061443, #39bffc);
}

.welcome-text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.header-right {
    gap: 18px;
}

.time-text {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-right {
        flex-direction: column;
        gap: 10px;
    }
}
/* top-header end */

/* header */
.custom-navbar {
    background: #f2f2f2;
    padding: 18px 0;
}

.navbar-brand img {
    height: 42px;
}

.navbar-nav {
    gap: 18px;
}

.nav-link {
    color: #222 !important;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #00a6e7 !important;
}

.new-badge {
    background: #ffc107;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    position: absolute;
    top: -8px;
    right: -22px;
}
#navbarContent ul li a {
    font-family: "Roboto Mono", monospace;
    font-weight: 400;
}

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding-top: 15px;
        gap: 10px;
    }

    .new-badge {
        position: static;
        margin-left: 5px;
    }
}
/* header end */

/* hero section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #07042f;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Effect */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0, 170, 255, 0.15),
        transparent 60%
    );
}

/* Bottom Wave Effect */
.hero-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 250px;

    background: url(../images/new-calka.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.hero-top-text {
    color: #fff;
    font-size: 18px;
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    color: white;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .text-size-head {
        font-size: 18px !important;
    }
    .hero-title {
        font-size: 38px;
    }
}
.hero-title span {
    display: block;
    background: linear-gradient(90deg, #8a3ffc, #37d6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 46px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 500px;
}
.phone-frame {
    width: 250px;
    height: 470px;
    background: #fff;
    padding: 12px;
    border-radius: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 4px solid #d9d9d9;
}

.phone-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.video-showcase {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    color: #0d6efd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
}

.video-showcase span {
    color: white;
    font-weight: 600;
}

.hero-image-box {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-image-box video {
    width: 100%;
    border-radius: 15px;
}
/* hero section  end */

/* partner section */
.client-section {
    background: transparent;
}

.client-carousel .item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    height: 100px;
    padding: 20px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* .client-carousel .item img {
    width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
} */
.client-carousel .item img {
    max-width: 70%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* partner section end */

/* why paythough section */
.why-paythrough {
    background: #f2f2f2;
    padding: 40px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-paythrough .text-part {
    font-size: 40px;
    font-weight: 700;
    color: #19164d;
}
.why-paythrough p {
    font-weight: 400;
    font-size: 20px;
    color: #222;
}
.why-paythrough .left-side {
    padding-left: 40px;
}
.why-paythrough::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.45) 0%,
        rgba(59, 130, 246, 0.15) 35%,
        rgba(255, 255, 255, 0) 70%
    );
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

/* why paythough section end */

/* our leader */

/* Container styling */
.leadership-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.45) 0%,
        rgba(59, 130, 246, 0.15) 35%,
        rgba(255, 255, 255, 0) 70%
    );
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

/* Title styling with gradient pill */
.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 2.5rem;
}

/* Glassmorphism Profile Cards */
.profile-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 10px #e1e1e1;
}

.profile-card:hover {
    border-color: #8e44ad; /* Violet accent on hover */
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.15);
}

/* Circular Portrait Frame */
.profile-photo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #19164d;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.profile-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Name Styling */
.profile-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #19164d;
    margin-bottom: 5px;
}

/* Subtitle / Role */
.profile-role {
    font-size: 0.7rem;
    color: #19164d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Links */
.social-links {
    margin-top: auto;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    color: #19164d;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff7eb3; /* Gradient Pink on hover */
}
.leadership-section .text-part {
    font-size: 40px;
    font-weight: 700;
    color: #19164d;
}
/* our leader */

/* counter section */
/* Main Banner Container with the Blue Gradient */
.counter-part {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
/* .counter-part::before {
    content: "";
    position: absolute;
    width: 100%;
    margin: 0;
    top: 0;
    left: 0;
    height: 100%;
    padding: 10px 0;
    background: url(../images/product_bg.jpg) left top repeat-x #f3f3f3;
    background-size: contain;
    background-position: bottom;
} */
.stats-container {
    width: 100%;
    background: linear-gradient(90deg, #19164d 0%, #1140c3 100%);
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(3, 70, 255, 0.2);
}
/* Individual Stat Wrappers */
.stat-item {
    flex: 1;
    text-align: center;
    color: #ffffff;
}

/* Numbers and Suffix Layout */
.counter-wrapper {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
}

/* Label Layout */
.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

/* Thin vertical dividers */
.divider {
    width: 1px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Tweaks for Tablets and Phones */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .divider {
        width: 50px;
        height: 1px;
    }
}
/* counter section */

/* testimonial section */
.testimonials {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.45) 0%,
        rgba(59, 130, 246, 0.15) 35%,
        rgba(255, 255, 255, 0) 70%
    );
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.sub-title {
    color: #18b7b5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonials h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonial-slider .item {
    padding: 15px;
}

.testimonial-card {
    position: relative;
    background: #fff;
    padding: 70px 30px 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 10px;
    transition: 0.3s ease;
    height: 350px;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: -45px;
    left: -45px;
    width: 120px;
    height: 120px;
    background: #19164d;
    border-radius: 50%;
}

.quote-icon {
    position: absolute;
    top: 18px;
    left: 22px;
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    z-index: 2;
}

.testimonial-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.client-info {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-info img {
    width: 75px !important;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-info h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 5px;
}

.client-info span {
    color: #19164d;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* Owl Nav */
.owl-nav {
    margin-top: 30px !important;
}

.owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: #19164d !important;
    color: #fff !important;
    font-size: 20px !important;
    margin: 0 5px;
    transition: 0.3s;
}

.owl-nav button:hover {
    background: #111 !important;
}

.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    background: #18b7b5 !important;
}
.testimonials .text-part {
    font-size: 40px;
    font-weight: 700;
    color: #19164d;
}

/* .testimonial-slider .owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block !important;
} */
/* testimonial section */

/* footer */
/* 1. Main Footer Wrapper with Deep Premium Gradient Backdrop */
.modern-footer {
    background: linear-gradient(135deg, #191853 0%, #142c8b 50%, #113fbf 100%);
    color: #ffffff;
    padding-top: 45px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 2. Top Contact Cards Section (Modern Glassmorphic Cards) */
.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.contact-details h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.contact-details p,
.contact-link {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.5;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Horizontal Line Accent Divider */
.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* 3. Main Split Grid (Asymmetric Layout) */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    padding-bottom: 20px;
}

/* Left Brand Formatting */
.brand-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-cloud-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 580px;
}

/* Trust / Compliance Badges Panel */
.compliance-section {
    margin-top: 15px;
}

.compliance-section h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    margin-bottom: 12px;
}

.badge {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 0.5px;
    user-select: none;
}

/* Custom visual variances matching original visual layout rules */
.card-badge {
    width: 110px;
    height: 60px;
}
.card-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-badge {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Right Side Links Matrix formatting */
.links-column {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.links-title {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

/* Sleek bottom line accent under title */
.links-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ff527b; /* Neon accent highlight color block */
}

.links-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
}

.link-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
    display: inline-block;
}

.link-list a:hover {
    color: #ffffff;
    padding-left: 6px; /* Smooth interactive slide-out micro-interaction */
}

/* 4. Absolute Solid Bottom Copyright Strip */
.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.25);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-bar p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* 5. Fluid Responsive Breakpoints for Tablet & Handsets */
@media (max-width: 992px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .links-split-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
/* footer */

/* Scroll To Top Button */

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: #19164d;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    background: #111;
    transform: translateY(-5px);
}

/* service section */
.services-section {
    background: #f8f9fc;
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 130px;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-content {
    width: 75%;
    z-index: 2;
}

.service-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.9;
}

.service-icon {
    z-index: 2;
}

.service-icon i {
    font-size: 34px;
}

/* Circle Shape */
.service-card::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -25px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.service-card::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: -40px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

/* Gradients */
.purple {
    background: linear-gradient(135deg, #5f2eea, #8b5cf6);
}

.blue {
    background: linear-gradient(135deg, #5b7cff, #55c7ff);
}

.cyan {
    background: linear-gradient(135deg, #4fd1ff, #7ee8fa);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .service-card {
        min-height: 110px;
        padding: 20px;
    }

    .service-content h4 {
        font-size: 20px;
    }

    .service-icon i {
        font-size: 28px;
    }
}
/* service section end */

/* about us */

/* HERO SECTION */

/* Glow Overlay */

/* Decorative Lines */
.hero-banner::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    left: -300px;
    top: -450px;
    transform: rotate(15deg);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT CONTENT */

.mini-title {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: skyblue;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #222;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.hero-content p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #19164d;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: #ff3f67;
}

/* Ratings */
.ratings {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ratings img {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.35));
    object-fit: cover;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-image img {
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 60px 5%;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .mini-title {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-primary {
        padding: 13px 24px;
        font-size: 14px;
    }
}

.trusted-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.trusted-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 50px;
    line-height: 1.2;
}

.trusted-section h2 span {
    color: #2d2a7f;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 25px;
}
#add-logo {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 25px;
}

.logo-box {
    background: #fff;
    border-radius: 18px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.logo-box:hover {
    transform: translateY(-5px);
}

.logo-box img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
}

.btn-area {
    text-align: center;
}

.view-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #2d2a7f;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.view-btn:hover {
    background: #1f1d5f;
    color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
    .trusted-section h2 {
        font-size: 36px;
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .logo-box {
        height: 100px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .trusted-section {
        padding: 60px 0;
    }

    .trusted-section h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .logo-box {
        height: 90px;
        padding: 15px;
        border-radius: 14px;
    }

    .logo-box img {
        max-height: 35px;
    }

    .view-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
/* about us */
.about-success span {
    display: block;
    background: linear-gradient(90deg, #8a3ffc, #37d6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-section {
    padding: 70px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.about-section:before {
    content: "";
    position: absolute;
    bottom: -25%;
    background-image: url(../images/com-prof-trust-texture.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mobile-img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
    height: 400px;
    object-fit: cover;
}

.about-content p {
    font-size: 20px;
    line-height: 2;
    color: #111;
    font-weight: 400;
}

@media (max-width: 991px) {
    .about-content {
        margin-top: 40px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 17px;
        line-height: 1.9;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 15px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* about-us-end */

/* about-next */
.business-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Background Pattern */
.business-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.45) 0%,
        rgba(59, 130, 246, 0.15) 35%,
        rgba(255, 255, 255, 0) 70%
    );
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.business-section .container {
    position: relative;
    z-index: 2;
}

.business-content p {
    font-size: 20px;
    line-height: 2;
    color: #111;
    font-weight: 400;
}

.business-image {
    text-align: center;
}

.business-image img {
    width: 100%;
    max-width: 470px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

/* Tablet */
@media (max-width: 991px) {
    .business-content {
        margin-bottom: 40px;
    }

    .business-content p {
        font-size: 17px;
        line-height: 1.9;
    }

    .business-image img {
        max-width: 380px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .business-section {
        padding: 50px 15px;
    }

    .business-content p {
        font-size: 15px;
        line-height: 1.8;
        text-align: center;
    }

    .business-image img {
        max-width: 300px;
    }
}

/* about-next-end */

/* contact us */
.location-image {
    width: 570px;
    height: 299px;
}
.location-image img {
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
}
.contact_text span {
    display: block;
    background: linear-gradient(90deg, #8a3ffc, #37d6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#contact {
    background-position: center;
    background-repeat: repeat;
    background-size: 10%;
    background-color: #07042f;
    overflow-x: hidden;
    transition: all 200ms linear;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#contact::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.45) 0%,
        rgba(59, 130, 246, 0.15) 35%,
        rgba(255, 255, 255, 0) 70%
    );
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}
#contact .lead_name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
#contact .lead-details {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 20px;
}
#contact .location-image img {
}
/* contact us section */

/* services */
.services-section {
    position: relative;
    padding: 80px 0;
    background-image: url(../images/pat-back.svg);
    background-position: center;
    background-repeat: repeat;
    background-size: 10%;
    background-color: #fff;
    overflow-x: hidden;
    transition: all 200ms linear;
}

.services-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.45) 0%,
        rgba(59, 130, 246, 0.15) 35%,
        rgba(255, 255, 255, 0) 70%
    );
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.subtitle {
    color: #19164d;
    letter-spacing: 3px;
    font-size: 22px;
    font-weight: 600;
}

.main-title {
    font-size: 3.5rem;
    color: #19164d;
    font-weight: 800;
    margin: 20px 0;
}

.description {
    max-width: 700px;
    margin: auto;
    color: #222;
}

.service-card {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    height: 100%;
    transition: 0.4s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25);
}

.large-card {
    min-height: 320px;
}

.wide-card {
    min-height: 250px;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #19164d, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 30px;
    color: #fff;
}

.service-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #fff;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.8;
}

.service-card a {
    text-decoration: none;
    color: #8b5cf6;
    font-weight: 600;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 38px;
    }

    .service-card {
        padding: 25px;
    }
}
/* services end */

/* contact form */
.contact-section {
    background: #f7f9fc;
}

.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Left Side */

.contact-info {
    height: 100%;
    padding: 50px 40px;
    color: #fff;
    background: linear-gradient(135deg, #4f2d9c, #63c7ea);
}

.contact-info h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-box i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 18px;
}

/* Right Side */

.contact-form {
    padding: 50px;
}

.contact-form h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.form-control {
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 15px;
    box-shadow: none !important;
}

textarea.form-control {
    height: auto;
    resize: none;
}

.form-control:focus {
    border-color: #4f2d9c;
}

.btn-submit {
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(90deg, #4f2d9c, #63c7ea);
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
}

/* Mobile */

@media (max-width: 991px) {
    .contact-info,
    .contact-form {
        padding: 35px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-form h3 {
        font-size: 28px;
    }
}

/* contact form end */

/* career part */
#career {
    background-position: center;
    background-repeat: repeat;
    background-size: 10%;
    background-color: #fff;
    overflow: hidden;
    transition: all 200ms linear;
    position: relative;
    background-color: #07042f;
}

#career:before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.45) 0%,
        rgba(59, 130, 246, 0.15) 35%,
        rgba(255, 255, 255, 0) 70%
    );
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.career-section {
    padding: 40px 0;
}

.career-section .section-title {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.career-section .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #d8d8d8;
    z-index: 1;
}

.career-section .section-title span {
    position: relative;
    z-index: 2;
    background: #f3f3f3;
    padding: 10px 20px;
    border: 1px solid #d8d8d8;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    letter-spacing: 1px;
}

.career-section .job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.career-section .job-card {
    background: #ece8df;
    padding: 25px;
    border-top: 3px solid #19164d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    transition: 0.4s;
}

.career-section .job-card:hover {
    transform: translateY(-8px);
}

.career-section .job-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.career-section .job-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.career-section .apply-btn {
    display: block;
    text-align: center;
    background: #19164d;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .career-section .job-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .career-section .job-grid {
        grid-template-columns: 1fr;
    }
}

.career-with-us {
    background-image: url(../images/career_with.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    background-attachment: fixed;
}
.career-with-us .career-content {
    max-width: 500px;
    margin: auto;
    text-align: center;
    background: #19164d;
    color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    border-top: 3px solid #fff;
}
.career-form-section {
    padding: 80px 0;
    background: #fff;
}

.career-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 900px;
    margin: auto;
}

.career-info {
    flex: 1;
}

.career-info img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

.career-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #19164d;
    margin-bottom: 15px;
}

.career-info h4 {
    color: #19164d;
    font-size: 15px;
    font-weight: 700;
}

.career-form {
    flex: 1;
}

.career-form h3 {
    font-size: 14px;
    color: #264d73;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #19164d;
}

.submit-btn {
    background: #19164d;
    color: #fff;
    border: none;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .career-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .career-info,
    .career-form {
        width: 100%;
    }
}
.career-form-section {
    background-image: url(../images/pat-back.svg);
    background-position: center;
    background-repeat: repeat;
    background-size: 10%;
    background-color: #fff;
    overflow: hidden;
    transition: all 200ms linear;
    position: relative;
}
.career-form-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.45) 0%,
        rgba(59, 130, 246, 0.15) 35%,
        rgba(255, 255, 255, 0) 70%
    );
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}
/* custom navbar */
.custom-navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
}

/* service banner */
.service-hero {
    background: #07042f;
    padding: 10px 0;
}
.service-img-part {
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: 12px;
}
.service-img-part img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(91, 92, 240, 0.1);
    color: #5b5cf0;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin: 25px 0;
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(90deg, #8a3ffc, #37d6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 16px;
    color: #fff;
    max-width: 550px;
    line-height: 1.9;
}

.hero-btns {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.btn-primary-custom {
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #5b5cf0, #7c3aed);
    color: #fff;
    text-decoration: none;
}

.btn-outline-custom {
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid #dbe2ef;
    color: #111827;
    text-decoration: none;
}

.hero-features {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-features span {
    color: #fff;
    font-weight: 600;
}

.hero-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.dashboard-card.large {
    grid-column: span 2;
}

.dashboard-card i {
    font-size: 45px;
    color: #5b5cf0;
    margin-bottom: 15px;
}

.dashboard-card h5 {
    margin: 0;
    font-weight: 700;
}

/* Content */

.banner-content {
    color: #fff;
}

.breadcrumb-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.breadcrumb-text span {
    margin: 0 10px;
}

.breadcrumb-text .active {
    color: #37d6ff;
}

.banner-content h6 {
    color: skyblue;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.banner-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.banner-content h1 span {
    display: block;
    background: linear-gradient(90deg, #8a3ffc, #37d6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* Buttons */

.banner-btns {
    display: flex;
    gap: 20px;
}

.btn-primary-custom {
    background: linear-gradient(90deg, #7b3ff2, #3db6ff);
    color: #fff;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
}

/* Right Side Graphic */

.banner-graphic {
    position: relative;
    height: 650px;
}

/* Laptop */

.main-laptop {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 200px;
    transform: translate(-50%, -50%) rotate(-20deg);

    background: linear-gradient(145deg, #26139c, #4b38d8);

    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 0 40px rgba(84, 112, 255, 0.5);
}

.main-laptop i {
    font-size: 70px;
    color: #fff;
}

/* Floating Service Cards */

.service-node {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 0 30px rgba(85, 135, 255, 0.35);
}

.service-node i {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-node span {
    text-align: center;
    font-weight: 600;
}

/* Positions */

.node-1 {
    top: 80px;
    left: 80px;
}

.node-2 {
    top: 100px;
    right: 20px;
}

.node-3 {
    bottom: 50px;
    left: 80px;
}

.node-4 {
    bottom: 50px;
    right: 20px;
}

/* Wave */

.wave {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 180px;
    background: white;
    border-radius: 50% 50% 0 0;
}

/* Mobile */

@media (max-width: 991px) {
    .service-banner {
        min-height: auto;
        padding: 100px 0;
    }

    .banner-content h1 {
        font-size: 48px;
    }

    .banner-content p {
        font-size: 18px;
    }

    .banner-graphic {
        margin-top: 80px;
        height: 500px;
    }

    .service-node {
        width: 140px;
        height: 140px;
    }
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 5px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #5b2be0, #35cfff);
    border-radius: 50px;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 55%;
}

/* CTA Button */

.nav-btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #5b2be0, #35cfff);
    box-shadow: 0 10px 25px rgba(91, 43, 224, 0.25);
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Mobile */

@media (max-width: 991px) {
    .modern-navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        margin-top: 15px;
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
    }

    .nav-btn {
        display: inline-block;
        margin-top: 15px;
    }
}
/* expart modal */
.expert-modal {
    border: none;
    border-radius: 25px;
    overflow: hidden;
}

.custom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.expert-left {
    height: 100%;
    padding: 50px 35px;
    background: linear-gradient(135deg, #19164d, #4f46e5);
    color: #fff;
}

.expert-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.expert-left p {
    line-height: 1.8;
}

.expert-points {
    margin-top: 30px;
}

.expert-points p {
    margin-bottom: 12px;
    font-weight: 500;
}

.expert-form {
    padding: 40px;
}

.expert-form h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #19164d;
}

.expert-form .form-control,
.expert-form .form-select {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: none;
}

.expert-form textarea.form-control {
    height: auto;
}

.expert-submit {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #19164d, #4f46e5);
}

/* marquee */
.client-marquee {
    overflow: hidden;
    width: 90%;
    position: relative;
    margin: 0 auto;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.client-marquee .item {
    flex-shrink: 0;
    padding: 0 40px;
    width: 230px;
}

.client-marquee .item img {
    height: 80px;
    width: 90%;
    object-fit: contain;
    display: block;
}

/* Smooth Infinite Scroll */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .client-marquee .item {
        padding: 0 20px;
    }

    .client-marquee .item img {
        height: 60px;
    }
}

/* add service section */
.add-service-new.services-section {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.add-service-new .section-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(91, 92, 240, 0.1);
    color: #5b5cf0;
    font-weight: 600;
}

.add-service-new .section-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
}

.add-service-new .section-description {
    max-width: 750px;
    margin: auto;
    color: #323942;
    font-size: 18px;
}

.add-service-new .service-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    height: 100%;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 10px #6058f0;
    cursor: pointer;
}

.add-service-new .service-card:hover {
    box-shadow: 0px 0px 10px #07042f;
}
.add-service-new .service-card:hover .service-icon {
    background: linear-gradient(135deg, #1bb91b, #4d48ad);
}

.add-service-new .service-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 60px;
    font-weight: 800;
    color: rgb(2 3 177 / 33%);
}

.add-service-new .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5b5cf0, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 15px 30px rgba(91, 92, 240, 0.25);
}

.add-service-new .service-icon i {
    color: #fff;
    font-size: 25px;
}

.add-service-new .service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0f172a;
}

.add-service-new .service-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 10px;
}

.add-service-new .service-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #5b5cf0;
}

.add-service-new .service-card ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.add-service-new .service-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #334155;
}

.add-service-new .service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5b5cf0;
    font-weight: bold;
}

.add-service-new .featured-card {
    background: linear-gradient(135deg, #ffffff, #faf8ff);
}

@media (max-width: 991px) {
    .add-service-new .section-title {
        font-size: 38px;
    }

    .add-service-new .service-card {
        padding: 30px;
    }

    .add-service-new .service-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .add-service-new .section-title {
        font-size: 30px;
    }

    .add-service-new .service-icon {
        width: 70px;
        height: 70px;
    }

    .add-service-new .service-number {
        font-size: 45px;
    }
}

/*scroll navbar */
.modern-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Fixed navbar after scroll */
.modern-navbar.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.hero-features span i {
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}
/* about page view logo */
#add-logo {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin: 25px;
}

#add-logo.show {
    max-height: 300px;
    margin: 25px 0;
}
@media (max-width: 576px) {
    #add-logo {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    #add-logo.show {
        max-height: 380px;
    }
}

/* complience section */
.compliance-section {
    margin-top: 30px;
}

.compliance-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    align-items: center;
}

.compliance-item {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
}

.compliance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.compliance-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    border-radius: 8px;
}
.badge {
    --bs-badge-padding-y: 0em !important;
    border: 0px solid transparent;
}

@media (max-width: 768px) {
    .links-title {
        display: none;
    }
    .links-split-grid {
        display: none;
    }
}
