/* Custom Fonts or Colors */
html,
body {
    margin: 0;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-sizing: border-box;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;

}

p,
li {
    font-family: "Poppins", sans-serif;

}

/* Top Bar Gradient exactly like image_3c0c73.png */
.top-bar {
    background: linear-gradient(90deg, #003a9b 0%, #0077d4 50%, #00b0f0 100%);
    font-size: 14px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: white;
    color: #0077d4;
}

/* --- 1. General Navbar & Glass Effect --- */
.unique-glass-nav {
    margin: 15px auto;
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 10px 25px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Logo Alignment Fix (Upar se touch nahi hoga) */
.navbar-brand {
    padding: 8px 0; 
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* --- 2. Nav Links & Hover Logic --- */
.unique-glass-nav .nav-link {
    color: #000000 !important;
    font-weight: 600;
    padding: 10px 20px !important;
    transition: 0.3s ease;
    border-radius: 50px;
    display: inline-block; /* Essential for exact text-width hover */
}

/* Hover & Active Gradient State */
.unique-glass-nav .nav-link:hover,
.unique-glass-nav .nav-link.active {
    background: linear-gradient(90deg, rgb(0, 51, 173) 0%, rgb(0, 153, 229) 100%);
    color: #ffffff !important;
}

/* --- 3. Custom Toggler (Hamburger to Cross) --- */
.unique-toggler {
    border: none !important;
    padding: 0;
    width: 30px;
    height: 22px;
    position: relative;
    box-shadow: none !important;
    background: transparent;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #0033ad; /* Theme Dark Blue */
    border-radius: 9px;
    left: 0;
    transition: .25s ease-in-out;
}

/* Custom Names for Bars */
.line-one { top: 0px; }
.line-two { top: 10px; }
.line-three { top: 20px; }

/* Cross (X) Animation Logic */
.unique-toggler:not(.collapsed) .line-one {
    top: 10px;
    transform: rotate(135deg);
}
.unique-toggler:not(.collapsed) .line-two {
    opacity: 0;
    left: -40px;
}
.unique-toggler:not(.collapsed) .line-three {
    top: 10px;
    transform: rotate(-135deg);
}

/* --- 4. Get Started Button --- */
.unique-btn-get-started {
    background: linear-gradient(90deg, rgb(0, 51, 173) 0%, rgb(0, 153, 229) 100%);
    color: white;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 173, 0.3);
}

/* --- 5. Mobile Responsive Fixes --- */
@media (max-width: 991px) {
    .unique-glass-nav {
        border-radius: 25px;
        width: 95%;
    }

    .navbar-collapse {
        text-align: center; /* Mobile menu content center */
        background: rgba(255, 255, 255, 0.98);
        border-radius: 20px;
        margin-top: 15px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        padding-bottom: 15px;
    }

    .unique-glass-nav .nav-link {
        margin: 8px auto;
        display: table !important; /* Text ki width jitna hover rahega */
        padding: 10px 30px !important;
    }

    .unique-btn-get-started {
        display: inline-block;
        margin-top: 10px;
    }

    .dropdown-menu {
        text-align: center;
    }
}

/* Dropdown Glass Styling */
.dropdown-menu {
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.411);
    /* text-align: center; */
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgb(0, 51, 173) 0%, rgb(0, 153, 229) 100%);
    color: white;
}

/* HERO SECTION */
.hero-banner {
    position: relative;
    min-height: 45rem;
    background: url('../assets/img/banner-img.jpeg') center/cover;
    display: flex;
    align-items: center;
}

/* TITLE */
.hero-title {
    color: #0049B2;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-title span {
    color: #00AEEF;
}

.hero-subtitle {
    color: #444;
    font-size: 18px;
    border-left: 4px solid #00AEEF;
    padding-left: 15px;
    margin-bottom: 25px;
}

/* BUTTON (UNIFIED BLUE) */
.btn-main {
    background: linear-gradient(90deg, #0049B2, #00AEEF);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: .3s ease;
    text-decoration: none;
}

.btn-main:hover {
    background: linear-gradient(90deg, #00AEEF, #0049B2);
    box-shadow: 0 10px 20px rgba(0, 73, 178, 0.3);
    color: #fff;
}

/* FORM CARD */
.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.compact-form {
    max-width: 420px;
    margin-left: auto;
}

.contact-card h3 {
    font-size: 28px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
}

/* INPUTS */
.custom-input {
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 11px;
    font-size: 14px;
}

.custom-input:focus {
    border-color: #0049B2;
    box-shadow: 0 0 0 3px rgba(0, 73, 178, 0.15);
    outline: none;
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    background: linear-gradient(90deg, #0049B2, #00AEEF);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 800;
    transition: .3s ease;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #00AEEF, #0049B2);
    box-shadow: 0 12px 25px rgba(0, 73, 178, 0.25);
    color: #fff;
}

/* BACKGROUND ACCENT */
/* .blue-accent{
    position:absolute;
    right:-120px;
    bottom:-120px;
    width:400px;
    height:400px;
    background:#00AEEF;
    opacity:0.08;
    border-radius:50%;
} */

/* RESPONSIVE */
@media(max-width:991px) {

    .hero-title {
        font-size: 34px;
    }

    .compact-form {
        max-width: 100%;
        margin-top: 30px;
    }
}

.testimonial-section {
    background: #f0f0f5;
    padding: 40px 0;
}

.testimoinal-main-heading {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 40px;
}

/* Thumbnail Styling */
.client-thumb {
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    border: 4px solid transparent;
}

.client-thumb:hover,
.client-thumb.active {
    filter: grayscale(0%);
    border-color: #00AEEF;
    /* Sky Blue Border */
    transform: scale(1.05);
}

/* Card Styling */
.review-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 73, 178, 0.08);
    border-left: 8px solid #0049B2;
    /* Royal Blue Accent */
    min-height: 300px;
    transition: opacity 0.3s ease-in-out;
}

#review-container {
    opacity: 1;
}


.zb-pricing-section {
    background: #f8fafc;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.zb-pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

/* Header */
.zb-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #2563eb;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.06);
}

.zb-price-title {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 40px;
}

/* Tabs */
.zb-price-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.zb-tab-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.zb-tab-btn:hover {
    border-color: rgba(37, 99, 235, 0.35);
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.zb-tab-btn.active {
    background: linear-gradient(90deg, #0033ad 0%, #0099e5 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* Panels */
.zb-tab-panels {
    position: relative;
}

.zb-tab-panel {
    display: none;
    animation: fadeInUp 0.35s ease;
}

.zb-tab-panel.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card */
.zb-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 42rem;
}

.zb-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.28);
}

/* Featured */
.zb-price-featured {
    border: 2px solid #2563eb !important;
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.16) !important;
    transform: translateY(-12px);
}

.zb-price-featured:hover {
    transform: translateY(-20px) !important;
    box-shadow: 0 32px 64px rgba(37, 99, 235, 0.22) !important;
}

/* Badge */
.zb-best-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 20px;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
    z-index: 5;
    margin: 0;
}

/* Card Top */
.zb-price-top {
    padding: 36px 32px 24px;
}

.zb-plan-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
}

.zb-plan-tagline {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 18px;
    line-height: 1.5;
}

/* Price */
.zb-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.zb-price-amount {
    font-size: 50px;
    font-weight: 900;
    color: #2563eb;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.03em;
}

.zb-price-per {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
    margin: 0;
}

/* Discount */
.zb-discount-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.zb-off-badge {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.zb-orig-price {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    text-decoration: line-through;
}

/* Buttons */
.zb-price-btn {
    display: block;
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.zb-btn-outline {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
}

.zb-btn-outline:hover {

    background: linear-gradient(90deg, rgb(0, 73, 178), rgb(0, 174, 239));
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.zb-btn-solid {

    background: linear-gradient(90deg, rgb(0, 73, 178), rgb(0, 174, 239));
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}

.zb-btn-solid:hover {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
}

/* Features */
.zb-price-features {
    padding: 20px 32px 28px;
    border-top: 1px solid #f1f5f9;
}

.zb-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #475569;
    margin: 0 0 12px;
    line-height: 1.4;
}

.zb-feat-item:last-child {
    margin-bottom: 0;
}

.zb-feat-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .zb-price-title {
        font-size: 32px;
    }

    .zb-price-featured {
        transform: none;
    }

    .zb-price-featured:hover {
        transform: translateY(-8px) !important;
    }
}

@media (max-width: 767px) {
    .zb-price-title {
        font-size: 26px;
    }

    .zb-price-amount {
        font-size: 40px;
    }

    .zb-price-tabs {
        gap: 8px;
    }

    .zb-tab-btn {
        font-size: 12px;
        padding: 9px 16px;
    }
}

@media (max-width: 575px) {
    .zb-pricing-section {
        padding: 60px 0;
    }

    .zb-price-top {
        padding: 28px 20px 18px;
    }

    .zb-price-features {
        padding: 18px 20px 24px;
    }
}


/* =========================
COMMON
========================= */

.zb-process-section,
.zb-stack-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, #f8fbff, #efefef);
    position: relative;
    overflow: hidden;
}

.zb-sec-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 18px;
}

.zb-sec-title {
    font-size: 46px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 18px;
}

.zb-sec-title span {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zb-sec-text {
    max-width: 700px;
    margin: auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

/* =========================
PROCESS SECTION
========================= */

.zb-process-card {
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 40px 30px;
    overflow: hidden;
    transition: all .4s ease;
    box-shadow:
        0 10px 40px rgba(37, 99, 235, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    height: 100%;
}

.zb-process-card:hover {
    transform: translateY(-12px) rotateX(4deg);
    box-shadow:
        0 25px 60px rgba(37, 99, 235, 0.18);
}

.zb-process-number {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 58px;
    font-weight: 900;
    color: rgb(0, 0, 0);
    line-height: 1;
}

.zb-process-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 28px;
    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.35);
}

.zb-process-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.zb-process-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
}

/* =========================
TECH STACK
========================= */

.zb-tech-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 38px 20px;
    text-align: center;
    overflow: hidden;
    transition: all .4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);

    box-shadow:
        0 10px 35px rgba(37, 99, 235, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.zb-tech-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:
        0 22px 55px rgba(37, 99, 235, 0.16);
}

.zb-tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(37, 99, 235, 0.06),
            transparent);
    opacity: 0;
    transition: .4s;
}

.zb-tech-card:hover::before {
    opacity: 1;
}

.zb-tech-card i {
    font-size: 52px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zb-tech-card h5 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

/* Responsive */

@media(max-width:991px) {

    .zb-sec-title {
        font-size: 38px;
    }

}

@media(max-width:767px) {

    .zb-process-section,
    .zb-stack-section {
        padding: 70px 0;
    }

    .zb-sec-title {
        font-size: 30px;
    }

    .zb-process-card,
    .zb-tech-card {
        padding: 30px 22px;
    }

}


/* SECTION */
.why-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #f6f9ff, #ffffff);
}

/* TITLE */
.why-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #e8f0ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.why-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
}

.why-title span {
    color: #2563eb;
}

/* CARD */
.why-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;

    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(32, 32, 32, 0.8);
    border-radius: 18px;

    padding: 18px 20px;
    margin-bottom: 15px;

    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);

    transition: .35s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

/* ICON BOX */
.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;

    background: #2563eb;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

/* FONT AWESOME ICON (WHITE) */
.why-icon i {
    color: #ffffff;
    font-size: 18px;
}

/* TEXT */
.why-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.why-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* IMAGE */
.why-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.20);
    transform: perspective(1000px) rotateY(-6deg);
    transition: .4s ease;
}

.why-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .why-title {
        font-size: 30px;
    }

    .why-image {
        transform: none;
    }
}

.tech-stack-section {
    background: #f8f9fa;
    padding: 30px 0;
}

.gradient-text {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, rgb(37, 99, 235), rgb(29, 78, 216)) text;
}

/* Heading */
.tech-text {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 40px;
}

/* Wrapper */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Marquee */
.marquee {
    display: flex;
    width: max-content;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    align-items: center;
}

.marquee:hover {
    animation-play-state: paused;
}

/* Tech Item */
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    flex-shrink: 0;
}

/* Images */
.tech-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;

    /* ðŸ”¥ Black & White Effect */
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

/* Hover â†’ Color */
.tech-item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Text */
.tech-item p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #475569;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .tech-text {
        font-size: 36px;
    }

    .marquee {
        gap: 2rem;
        animation-duration: 16s;
    }

    .tech-item img {
        width: 60px;
        height: 60px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .tech-text {
        font-size: 28px;
    }

    .marquee {
        gap: 1.5rem;
        animation-duration: 12s;
    }

    .tech-item img {
        width: 50px;
        height: 50px;
    }

    .tech-item p {
        font-size: 12px;
    }
}

/* Infinite Scroll */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* MODAL */
.custom-modal .modal-content {
    border-radius: 18px;
    border: none;
    overflow: visible;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

/* HEADER BLUE */
.custom-modal .modal-header {
    background: linear-gradient(90deg, #0049B2, #00AEEF);
    color: #fff;
    padding: 25px;
    position: relative;
}

/* BIG CENTER TITLE */
.modal-title-main {
    font-size: 26px;
    font-weight: 900;
    margin: 0;
    text-align: center;
}

.modal-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
    text-align: center;
}

/* CLOSE BUTTON FIX (TOP RIGHT + WHITE) */
/* CLOSE BUTTON FIX */
.custom-close {
    position: absolute;
    top: -9px;
    right: -10px;
    z-index: 1051;
    background: linear-gradient(90deg, rgb(0, 73, 178), rgb(0, 174, 239));
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Bootstrap default properties reset */
    opacity: 1;
    border: none;
    padding: 0;
    transition: 0.3s;
}

/* Sirf Icon ko white karne ke liye (Pure element ko invert nahi karega) */
.custom-close::before {
    content: "";
    width: 100%;
    height: 100%;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.custom-close:hover {
    transform: scale(1.1);
    background-color: rgb(39, 74, 231) !important;
    /* Thoda dark orange hover par */
}

/* BODY */
.modal-body {
    padding: 25px;
    background: #f8fafc;
}

/* INPUTS */
.modal-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    background: #fff;
    transition: .3s;
}

.modal-input:focus {
    border-color: #0049B2;
    box-shadow: 0 0 0 3px rgba(0, 73, 178, 0.15);
}

/* BUTTON */
.modal-btn {
    width: 100%;
    background: linear-gradient(90deg, #0049B2, #00AEEF);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 800;
    transition: .3s;
}

.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 73, 178, 0.3);
}

:root {
    --du-brand-blue: #0049B2;
    --du-brand-sky: #00AEEF;
    --du-text-dark: #333;
}

.du-contact-wrapper {
    position: relative;
    padding-bottom: 40px;
    background-color: #fff;
}

/* Background Header Section */
.du-bg-header {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.du-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.du-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.du-header-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    width: 80%;
}

.du-header-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
}

.du-header-content h2 span {
    color: var(--du-brand-sky);
}

/* Main Floating Card */
.du-main-card {
    background: #f1f1f1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    margin-top: -180px;
    position: relative;
    z-index: 5;
    border: 8px solid #fff;
}

/* Left Form Area */
.du-card-form-side {
    background: var(--du-brand-blue);
    padding: 55px 35px;
    color: #fff;
    border-radius: 20px;
}

.du-card-form-side h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.du-card-form-side p {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Input Styles */
.du-field {
    background: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-size: 14px;
    box-shadow: none !important;
}

.du-field.form-select {
    background-color: #fff !important;
    border: none !important;
    border-radius: 12px !important;

    padding: 12px 45px 12px 18px !important;

    /* Bootstrap arrow restore */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;

    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 14px 10px !important;

    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}
textarea.du-field {
    border-radius: 15px !important;
    margin-top: 5px;
}

/* Submit Button */
.du-submit-btn {
    background: #f1f1f1 !important;
    color: var(--du-brand-blue) !important;
    font-weight: 700;
    border-radius: 12px;
    padding: 14px;
    text-transform: capitalize;
    font-size: 18px;
    border: none;
    margin-top: 10px;
    transition: 0.3s ease;
}

.du-submit-btn:hover {
    background: #e0e0e0 !important;
    transform: scale(0.98);
}

/* Right Info Area */
.du-card-info-side {
    padding: 55px 40px;
    color: #000;
}

.du-card-info-side h3 {
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 25px;
}

.du-card-info-side>p {
    font-size: 15px;
    color: #444;
    margin-bottom: 35px;
    line-height: 1.5;
}

/* Info Item Blocks */
.du-info-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}

.du-info-icon {
    width: 52px;
    height: 52px;
    background: var(--du-brand-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.du-info-block h6 {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    color: #000;
}

.du-info-block p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .du-main-card {
        margin-top: -80px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .du-card-form-side,
    .du-card-info-side {
        padding: 35px 25px;
    }

    .du-card-info-side h3 {
        font-size: 30px;
    }
}

.custom-footer {
    /* Image jaisa gradient background */
    background: linear-gradient(to right, #000000, #001d4a, #0049b2);
    color: #ffffff;
    padding-top: 80px;
    font-family: 'Arial', sans-serif;
    /* Ya jo aap use kar rahe hain */
}

.footer-col {
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
}

.footer-legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    opacity: 0.85;
}

.footer-links li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #00AEEF;
    /* Sky blue hover effect */
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

/* Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    /* Slightly darker bar */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-footer {
        padding-top: 50px;
        text-align: center;
    }

    .footer-links li a:hover {
        padding-left: 0;
    }
}


.services-section {
    padding: 40px 0;
    background: #f5f8ff;
    overflow: hidden;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 55px;
    font-weight: 800;
    color: #0a1744;
}

.serviceSwiper {
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

/* CARD */
.solution_card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 28px;
    min-height: 28rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2ff;
    transition: 0.6s;
    cursor: pointer;

    /* NEW */
    display: flex;
    flex-direction: column;
}

.solution_card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    transform: rotate(35deg);
    top: -120px;
    right: -80px;
    z-index: 1;
}

/* HOVER BUBBLE */
.hover_color_bubble {
    position: absolute;
    width: 120rem;
    height: 120rem;
    background: linear-gradient(90deg, #0033ad 0%, #0099e5 100%);
    border-radius: 50%;
    left: -110rem;
    top: 18rem;
    transition: 0.7s;
    z-index: 0;
}

.solution_card:hover .hover_color_bubble {
    left: -25rem;
    top: -35rem;
}

.solution_card:hover {
    transform: translateY(-12px);
}

/* ICON */
.so_top_icon {
    width: 78px;
    height: 78px;
    border-radius: 20px;
    background: #f3f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.so_top_icon i {
    font-size: 30px;
    background: linear-gradient(90deg, #0033ad 0%, #0099e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ICON SAME COLOR ON HOVER */
.solution_card:hover .so_top_icon i {
    background: linear-gradient(90deg, #0033ad 0%, #0099e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TITLE */
.solu_title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 18px;
    color: #111;
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

/* DESCRIPTION */
.solu_description {
    position: relative;
    z-index: 2;

    /* NEW */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.solu_description p {
    font-size: 16px;
    line-height: 1.9;
    color: #111111;
    margin-bottom: 28px;
    transition: 0.5s;

    /* NEW */
    flex-grow: 1;
}

/* BUTTON */
.solu_description a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    color: #0a1744;
    transition: 0.5s;

    /* NEW */
    margin-top: auto;
    display: inline-flex;
    align-items: center;
}

.solu_description a i {
    margin-left: 8px;
}

/* TEXT HOVER */
.solution_card:hover h3,
.solution_card:hover p,
.solution_card:hover a {
    color: #fff;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .section-title h2 {
        font-size: 48px;
    }

}

@media(max-width:992px) {

    .section-title h2 {
        font-size: 40px;
    }

}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 32px;
    }

    .solution_card {
        min-height: auto;
    }

}

@media(max-width:576px) {

    .services-section {
        padding: 70px 0;
    }

    .solution_card {
        padding: 28px 22px;
    }

    .solu_title h3 {
        font-size: 24px;
    }

}


.faq-section {
    padding: 40px 0;
    background: #f5f5f5;
}

/* HEADER CENTER */
.faq-header {
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 20px;
    color: #52525b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* GRID */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* COLUMN */
.faq-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* CARD */
.faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s;
}

/* QUESTION */
.faq-question {
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #111827;
}

/* ICON */

.faq-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #f3f4f6;
    position: relative;
    transition: 0.4s;
}

/* PLUS LINES */

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, rgb(0, 73, 178), rgb(0, 174, 239));
    border-radius: 10px;
    transform: translate(-50%, -50%);
    transition: 0.4s ease;
}

/* HORIZONTAL */

.faq-icon::before {
    width: 18px;
    height: 2px;
}

/* VERTICAL */

.faq-icon::after {
    width: 2px;
    height: 18px;
}

/* ACTIVE CARD */

.faq-item.active .faq-icon {
    background: linear-gradient(90deg, rgb(0, 73, 178), rgb(0, 174, 239));
    transform: rotate(180deg);
}

/* MINUS ICON */

.faq-item.active .faq-icon::before {
    background: #fff;
    width: 16px;
}

.faq-item.active .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    color: #52525b;
    line-height: 1.7;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 250px;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}


/* Background Gradient */
.accelerate-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #f2f2f3 45%, #0034ad 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}
.headline-wrapper {
    display: flex;
    flex-direction: column;
}

.plain-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
    font-family: 'Arial Black', sans-serif;
}

/* Animated Box */
.animated-headline {
    position: relative;
    height: 60px;
    /* Text ki height ke mutabiq */
    perspective: 1000px;
}

.flip-text {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    background-color: #000;
    padding: 0 15px;
    position: absolute;
    left: 0;
    display: inline-block;
    opacity: 0;
    transform-origin: 50% 100%;
    transform: rotateX(-90deg);
    transition: opacity 0.3s, transform 0.6s;
    white-space: nowrap;
}

/* Active State for Flip */
.flip-text.active {
    opacity: 1;
    transform: rotateX(0deg);
    z-index: 2;
}

/* Exit Animation */
.flip-text.exit {
    opacity: 0;
    transform: rotateX(90deg);
    z-index: 1;
}

/* Button Styling */
.talk-btn {
    background: linear-gradient(90deg, #0033ad 0%, #0099e5 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.talk-btn:hover {
    background: linear-gradient(90deg, #0099e5 0%, #0033ad 100%);
    color: #fff;
}

/* Responsive adjust */
@media (max-width: 991px) {
    .plain-text {
        font-size: 1.8rem;
    }

    .flip-text {
        font-size: 2rem;
    }
}

/* =========================
        BRAND SLIDER
========================= */

.brand-slider-section {

    background: linear-gradient(90deg, #0033ad 0%, #0099e5 100%);
    padding: 25px 0;
    overflow: hidden;

}

/* WRAPPER */

.brand-slider-wrap {

    width: 100%;
    overflow: hidden;
    position: relative;

}

/* TRACK */

.brand-slider-track {

    display: flex;
    align-items: center;
    width: max-content;
    animation: brandSlide 30s linear infinite;

}

/* LOGO ITEM */

.brand-logo-item {

    width: 240px;
    margin: 0 35px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

/* IMAGE */

.brand-logo-item img {

    width: 100%;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: 0.4s;

}

.brand-logo-item img:hover {

    transform: scale(1.08);
    opacity: 1;

}

/* ANIMATION */

@keyframes brandSlide {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* RESPONSIVE */

@media(max-width:992px) {

    .brand-logo-item {
        width: 180px;
        margin: 0 20px;
    }

    .brand-logo-item img {
        max-width: 140px;
    }

}

@media(max-width:576px) {

    .brand-slider-section {
        padding: 35px 0;
    }

    .brand-logo-item {
        width: 150px;
        margin: 0 15px;
    }

    .brand-logo-item img {
        max-width: 120px;
    }

}

/* Unique wrapper to avoid conflicts */
.unique-about-wrapper {
    overflow: hidden;
    padding: 50px 0;
    font-family: sans-serif;
}

/* Vertical indicator based on your gradient color */
.unique-vertical-bar {
    position: absolute;
    left: -15px;
    top: 0;
    width: 8px;
    height: 320px;
    background: #0033ad;
    border-radius: 10px;
}

/* Image overlap logic from image_a19bdf.png */
.unique-image-stack {
    padding-left: 20px;
}

.unique-img-one {
    width: 85%;
    margin-left: auto;
}

.unique-img-two {
    width: 75%;
    margin-top: -110px;
    /* Overlap effect */
    position: relative;
    z-index: 5;
}

/* Typography */
.unique-main-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
}

.unique-sub-title {
    color: #0033ad;
    /* Using blue from gradient */
    text-transform: uppercase;
}

.unique-feature-list i {
    color: #0099e5;
    /* Using light blue from gradient */
}

/* Since 2015 Circle with Gradient */
.unique-since-circle {
    background: linear-gradient(90deg, #0033ad 0%, #0099e5 100%);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    font-size: 0.85rem;
    border: 6px solid #f8f9fa;
    /* Light background contrast */
}

/* --- FULLY ROUND GRADIENT BUTTON --- */
.unique-btn-round {
    background: linear-gradient(90deg, #0033ad 0%, #0099e5 100%);
    color: white;
    border: none;
    padding: 14px 45px;
    font-weight: 700;
    border-radius: 50px;
    /* Makes it fully round/pill shape */
    text-transform: uppercase;
    transition: 0.3s all ease;
    box-shadow: 0 4px 15px rgba(0, 51, 173, 0.2);
}

.unique-btn-round:hover {
    background: linear-gradient(90deg, #0099e5 0%, #0033ad 100%);
    box-shadow: 0 6px 20px rgba(0, 153, 229, 0.3);
    opacity: 0.95;
}

/* Responsive fixes */
@media (max-width: 991px) {
    .unique-img-two {
        margin-top: -60px;
    }

    .unique-vertical-bar {
        display: none;
    }
}

