@media screen and (max-width: 1440px) and (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
    }
}

:root {
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-blue-subtle: #EFF6FF;
    --brand-blue: #0052FF;
    --brand-cyan: #00D2FF;
    --dark-navy: #0B101D;
    --dark-card: #151C2E;
    --card-border: #E2E8F0;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --gradient-primary: linear-gradient(135deg, #0052FF 0%, #00D2FF 100%);
    --gradient-dark: linear-gradient(135deg, #0B101D 0%, #1E293B 100%);
    --gradient-light-card: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    --gradient-blue-card: linear-gradient(135deg, #0052FF 0%, #003A6C 100%);
}
body,html {
    overflow-x: hidden;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
}
.navbar-brand {
    width: 180px !important;
}
.navbar-brand img {
    width: 100%;
}
.logofoot {
    width: 180px;
}
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-blue) !important;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    box-shadow: 0 10px 25px rgba(0, 82, 255, 0.25);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 82, 255, 0.35);
    color: #fff;
}

.btn-navy {
    background: var(--dark-navy);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 32px;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background: var(--brand-blue);
    color: #fff;
}



/* Smooth Dropdown Styling */
.custom-dropdown .dropdown-menu {
    min-width: 310px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
    border-top: 3px solid #0d6efd !important;
    animation: fadeIn 0.2s ease-in-out;
    margin: 0;
    top: 30px;
}

.custom-dropdown .dropdown-item {
    font-size: 0.88rem;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s ease;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #f1f5f9;
    color: #0d6efd;
    padding-left: 1.25rem !important;
}

/* Desktop Hover Trigger (Desktop par Hover hone par dropdown automatically khul jayega) */
@media (min-width: 992px) {
    .custom-dropdown:hover .dropdown-menu {
        display: block;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-section {
    padding: 160px 0 70px;
    background: radial-gradient(circle at 85% 20%, rgba(0, 210, 255, 0.12) 0%, rgba(255, 255, 255, 1) 55%), #FFFFFF;
    position: relative;
}

.hero-badge {
    background: var(--bg-blue-subtle);
    border: 1px solid rgba(0, 82, 255, 0.2);
    color: var(--brand-blue);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-lead-card {
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 82, 255, 0.08);
}

/* About Section */
.about-section {
    background: var(--dark-navy);
    color: #fff;
    padding: 70px 0;
}
.about-section p {
    color: rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important;
}

.img-rounded-custom {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services-section {
    background: var(--bg-white);
    padding: 70px 0 0;
}

.service-row-item {
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-row-item:hover {
    border-color: var(--brand-blue);
    background: #FFFFFF;
    box-shadow: 0 15px 35px rgba(0, 82, 255, 0.08);
}

.service-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-us-section {
    background: #ffffff;
    padding: 70px 0;
}

.why-list-item {
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.why-list-item:hover {
    transform: translateX(8px);
}

/* Tech Stack */
.tech-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 15px 0;
}

.tech-marquee-wrapper::before,
.tech-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 70px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.tech-marquee-wrapper::before { left: 0; background: linear-gradient(to right, #ffffff, transparent); }
.tech-marquee-wrapper::after { right: 0; background: linear-gradient(to left, #ffffff, transparent); }

.tech-marquee-track {
    display: inline-flex;
    gap: 20px;
    animation: marqueeScroll 25s linear infinite;
}

.tech-marquee-track:hover {
    animation-play-state: paused;
}

.tech-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.tech-pill-item:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    transform: translateY(-2px);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Spotlight Banner */
.spotlight-section {
    background: var(--gradient-dark);
    color: #fff;
    padding: 90px 0;
}

/* Case Studies */
.case-studies-section {
    background: var(--bg-light);
    padding: 70px 0;
}

.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.portfolio-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.08);
}

/* Process Steps Horizontal Line */
.process-section {
    background: var(--bg-white);
    padding: 70px 0;
}

.process-step-minimal {
    border-left: 3px solid var(--card-border);
    padding-left: 20px;
    transition: all 0.3s ease;
}

.process-step-minimal:hover {
    border-left-color: var(--brand-blue);
}

.step-num-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1;
}

/* Testimonials Slider */
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-blue);
}

.testimonial-slider { margin: 0 -12px; }
.testimonial-slider .slide-item { padding: 10px 12px; }

/* FAQ Accordion */
.faq-section {
    background: #fff;
    padding: 70px 0 0;
}

.accordion-button {
    font-size: 16px;
    padding: 20px 24px;
    background-color: var(--bg-white);
    border-radius: 14px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-blue);
    background-color: var(--bg-blue-subtle);
    box-shadow: none;
}

.accordion-item {
    border: 1px solid var(--card-border);
    border-radius: 14px !important;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--bg-white);
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 30px;
    padding: 80px 40px;
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.25);
}

/* Footer */
footer {
    background: #070B14;
    color: #94A3B8;
    padding-top: 70px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
footer p a {
    text-decoration: none;
    color: rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important;
}
.footer-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
}

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.25s ease;
}

.footer-link:hover {
    color: var(--brand-cyan);
    transform: translateX(4px);
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--gradient-primary);
    color: #FFFFFF;
    transform: translateY(-3px);
    border-color: transparent;
}

/* Footer Newsletter Styles */
.footer-newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
}

.footer-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-cyan);
    color: #FFFFFF;
    box-shadow: none;
}

.footer-newsletter-input::placeholder {
    color: #64748B;
}


/* ==========================================
   SERVICES PAGE EXCLUSIVE STYLES ONLY
   ========================================== */

/* Hero Service Check Icons */
.service-check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-blue-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue);
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.08);
}

/* Service Specification Bullet List */
.service-spec-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.service-spec-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-spec-list li:last-child {
    margin-bottom: 0;
}

/* Engagement Model Cards */
.engagement-card {
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.engagement-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
/* Base Card Styling */
.service-hover-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

/* Base Typography & Icon Styles */
.service-hover-card .card-title {
    color: var(--dark-navy, #0f172a);
    transition: color 0.3s ease;
}
.service-hover-card .card-desc {
    color: #64748b;
    font-size: 0.925rem;
    transition: color 0.3s ease;
}
.service-hover-card .service-num {
    color: #94a3b8;
    transition: color 0.3s ease;
}
.service-hover-card .icon-box {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    transition: all 0.3s ease;
}
.service-hover-card .badge-tag {
    transition: all 0.3s ease;
}
.service-hover-card .feature-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    transition: all 0.3s ease;
}
.service-hover-card .feature-box i {
    transition: color 0.3s ease;
}

/* Read More Button Styles */
.read-more-btn {
    color: #0d6efd;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.read-more-btn i {
    transition: transform 0.3s ease;
}

/* --- HOVER STATE (BLUE BG & TEXT TRANSFORMATION) --- */
.service-hover-card:hover {
    background: linear-gradient(135deg, #0d6efd 0%, #004085 100%) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.3) !important;
    border-color: transparent !important;
}

.service-hover-card:hover .card-title {
    color: #ffffff !important;
}
.service-hover-card:hover .card-desc {
    color: rgba(255, 255, 255, 0.88) !important;
}
.service-hover-card:hover .service-num {
    color: rgba(255, 255, 255, 0.3) !important;
}
.service-hover-card:hover .icon-box {
    background-color: #ffffff !important;
    color: #0d6efd !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.service-hover-card:hover .badge-tag {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}
.service-hover-card:hover .feature-box {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}
.service-hover-card:hover .feature-box i {
    color: #38ef7d !important; /* Bright Checkmark on Blue */
}
.service-hover-card:hover .read-more-btn {
    color: #ffffff !important;
}
.service-hover-card:hover .read-more-btn i {
    transform: translateX(8px);
}

/*Inner Services*/

.feature-card {
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.1) !important;
    border-color: #0d6efd !important;
}
.gradient-text {
    background: linear-gradient(135deg, #0d6efd 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.1) !important;
    border-color: #0d6efd !important;
}
.gradient-text {
    background: linear-gradient(135deg, #0d6efd 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#tech-matrix .nav-link.active {
    color: #fff !important;
}


/* Service */


.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    box-shadow: 0 10px 25px rgba(0, 82, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 35px rgba(0, 82, 255, 0.4);
    color: #fff;
}

.btn-navy {
    background: var(--dark-navy);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 32px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-navy:hover {
    background: var(--brand-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 82, 255, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 80px;
    background: radial-gradient(circle at 90% 10%, rgba(0, 82, 255, 0.08) 0%, rgba(255, 255, 255, 1) 60%),
                radial-gradient(circle at 10% 90%, rgba(0, 210, 255, 0.08) 0%, rgba(255, 255, 255, 1) 60%), #FFFFFF;
}

.hero-badge {
    background: var(--bg-blue-subtle);
    border: 1px solid rgba(0, 82, 255, 0.2);
    color: var(--brand-blue);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-lead-card {
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(11, 16, 29, 0.06);
    transition: all 0.4s ease;
}

.hero-lead-card:hover {
    box-shadow: 0 30px 60px rgba(0, 82, 255, 0.12);
    border-color: rgba(0, 82, 255, 0.3);
}

/* Proof Bar */
.proof-bar-section {
    background: var(--gradient-dark);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

/* Engineering Strategy Section */
.solvingsec {
    background: var(--dark-navy) !important;
    color: #FFFFFF;
    position: relative;
}

.solvingsec h2 { color: #FFFFFF !important; }
.solvingsec p { color: #94A3B8 !important; }

/* Services Grid */
.services-section {
    background: linear-gradient(180deg, #EFF6FF 0%, #F8FAFC 100%);
    padding: 90px 0;
}

.service-row-item {
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-row-item:hover {
    background: var(--gradient-blue-card) !important;
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.3);
}

.service-row-item:hover h5,
.service-row-item:hover p {
    color: #FFFFFF !important;
}

.service-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 82, 255, 0.25);
}

.service-row-item:hover .service-icon-box {
    background: #FFFFFF !important;
    color: var(--brand-blue) !important;
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Problem Solver Section */
.problem-section {
    background: #0B101D;
    padding: 90px 0;
}

.problem-card {
    background: #151C2E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.35s ease;
}

.problem-card h5 { color: #FFFFFF !important; }
.problem-card p { color: #94A3B8 !important; }

.problem-icon-wrapper {
    background: rgba(0, 82, 255, 0.2);
    color: var(--brand-cyan);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    transition: all 0.35s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    background: var(--gradient-blue-card) !important;
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.35);
}

.problem-card:hover h5,
.problem-card:hover p {
    color: #FFFFFF !important;
}

.problem-card:hover .problem-icon-wrapper {
    background: #FFFFFF !important;
    color: var(--brand-blue) !important;
    transform: scale(1.15);
}

/* Process Timeline */
.jploft-process-section {
    background: #FFFFFF;
    padding: 100px 0 70px;
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 960px;
    margin: 60px auto 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 50%;
    width: 2px;
    background: #CBD5E1;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 4px solid var(--brand-blue);
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(0, 82, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--brand-blue);
    transform: translate(-50%, -50%) scale(1.25);
    box-shadow: 0 0 0 8px rgba(0, 82, 255, 0.3);
}

.timeline-row { display: flex; align-items: center; }
.timeline-col { width: 50%; }

.timeline-item.odd .timeline-card-col { order: 1; padding-right: 45px; }
.timeline-item.odd .timeline-step-col { order: 2; padding-left: 45px; text-align: left; }
.timeline-item.even .timeline-card-col { order: 2; padding-left: 45px; }
.timeline-item.even .timeline-step-col { order: 1; padding-right: 45px; text-align: right; }

.step-label {
    font-size: 34px;
    font-weight: 800;
    color: #94A3B8;
    letter-spacing: -0.5px;
}

.timeline-card {
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 26px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-card:hover {
    background: var(--gradient-blue-card) !important;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.3);
    border-color: transparent;
}

.timeline-card:hover .timeline-card-title,
.timeline-card:hover .timeline-card-desc {
    color: #FFFFFF !important;
}

.timeline-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: var(--bg-blue-subtle);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon-box {
    background: #FFFFFF !important;
    color: var(--brand-blue) !important;
    transform: rotate(-5deg);
}

.timeline-card-title {
    font-weight: 700;
    font-size: 19px;
    color: var(--dark-navy);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.timeline-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .timeline-container::before { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-row { flex-direction: column; }
    .timeline-col { width: 100%; }
    .timeline-item.odd .timeline-card-col,
    .timeline-item.even .timeline-card-col {
        order: 2; padding-left: 50px; padding-right: 0; text-align: left;
    }
    .timeline-item.odd .timeline-step-col,
    .timeline-item.even .timeline-step-col {
        order: 1; padding-left: 50px; padding-right: 0; text-align: left; margin-bottom: 10px;
    }
}

/* Why Choose Us */
.why-boxes-section {
    background: linear-gradient(135deg, #070B14 0%, #0B101D 100%);
    padding: 90px 0;
    color: #FFFFFF;
}

.why-boxes-section h2 { color: #FFFFFF !important; }

.why-box-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 38px;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-box-card:hover {
    transform: translateY(-8px);
    background: var(--gradient-blue-card) !important;
    border-color: transparent;
    box-shadow: 0 20px 45px rgba(0, 82, 255, 0.35);
}

.why-box-card h5 { color: #FFFFFF !important; }
.why-box-card p { color: #94A3B8 !important; transition: color 0.3s ease; }
.why-box-card:hover p { color: #FFFFFF !important; }

.why-box-card:hover .service-icon-box {
    background: #FFFFFF !important;
    color: var(--brand-blue) !important;
    transform: scale(1.15) rotate(6deg);
}

/* Portfolio Section */
.case-studies-section {
    background: #F8FAFC;
    padding: 90px 0;
}

.portfolio-overlay-card {
    position: relative;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-overlay-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 82, 255, 0.28);
    border-color: var(--brand-blue);
}

.portfolio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-overlay-card:hover .portfolio-bg-img {
    transform: scale(1.12);
}

.portfolio-overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 16, 29, 0) 25%, rgba(11, 16, 29, 0.85) 65%, rgba(11, 16, 29, 0.98) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    z-index: 2;
    transition: background 0.4s ease;
}

.portfolio-overlay-card:hover .portfolio-overlay-content {
    background: linear-gradient(180deg, rgba(11, 16, 29, 0.3) 0%, rgba(11, 16, 29, 0.9) 55%, rgba(11, 16, 29, 0.98) 100%);
}

.portfolio-title {
    font-weight: 800;
    font-size: 26px;
    color: #FFFFFF !important;
    margin-bottom: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.portfolio-hover-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.portfolio-overlay-card:hover .portfolio-hover-details {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 12px;
}

.portfolio-desc {
    color: #E2E8F0 !important;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-case-study {
    background: var(--gradient-primary);
    color: #FFFFFF !important;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.4);
    border: none;
}

.btn-case-study:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 82, 255, 0.6);
    color: #FFFFFF !important;
}

.btn-case-study i { transition: transform 0.3s ease; }
.btn-case-study:hover i { transform: translateX(5px); }

/* Testimonials Slider Section */
.testimonial-section {
    background: #EFF6FF;
    padding: 90px 0;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    background: var(--gradient-blue-card) !important;
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.3);
}

.testimonial-card:hover p,
.testimonial-card:hover h6 {
    color: #FFFFFF !important;
}

.testimonial-card:hover .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-blue);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: #FFFFFF;
}

.testimonial-slider { margin: 0 -12px; }
.testimonial-slider .slide-item { padding: 10px 12px; }

/* FAQ Section */
.faq-section {background: var(--bg-white);padding: 90px 0 20px;}

.accordion-button {
    font-size: 16px;
    padding: 20px 24px;
    background-color: var(--bg-light);
    border-radius: 14px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-blue);
    background-color: var(--bg-blue-subtle);
    box-shadow: none;
}

.accordion-item {
    border: 1px solid var(--card-border);
    border-radius: 14px !important;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--bg-white);
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 30px;
    padding: 80px 40px;
    box-shadow: 0 20px 50px rgba(0, 82, 255, 0.3);
    position: relative;
    overflow: hidden;
}

/* Scroll Animations */
.scroll-anim {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.from-top { transform: translateY(-50px); }
.from-bottom { transform: translateY(50px); }
.from-left { transform: translateX(-60px); }
.from-right { transform: translateX(60px); }

.scroll-anim.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* =========================================
   SPLIT-SCREEN ATTRACTIVE POPUP STYLING
   ========================================= */
.iconic-split-modal .modal-content {
    background: #0B101D;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 82, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Radio Pill Selectors */
.split-radio {
    display: none;
}
.split-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}
.split-pill:hover {
    background: rgba(0, 82, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.4);
}
.split-radio:checked + .split-pill {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.3), rgba(0, 210, 255, 0.2));
    border-color: #00D2FF;
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.25);
}

/* Split Input Styling */
.split-input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
}
.split-input:focus {
    border-color: #00D2FF !important;
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.2) !important;
}
.split-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.extra-small {
    font-size: 11px;
    color: #fff !important;
}




















/* =========================================================
   PORTFOLIO SHOWCASE
========================================================= */

.portfolio-showcase-section {
    padding: 70px 0;
    background: #fff;
}


/* HEADING */

.portfolio-section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
}

.portfolio-eyebrow {
    display: inline-block;
    color: #0052ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.portfolio-section-heading h2 {
    color: var(--dark-navy);
    line-height: 1.12;
}

.portfolio-section-heading h2 span {
    display: inline-block;
    background: linear-gradient(90deg, #0052ff, #00a6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-section-heading p {
    color: #667085;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}


/* =========================================================
   TABS
========================================================= */

.portfolio-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.portfolio-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 6px;
    background: #f5f8fc;
    border: 1px solid #e7edf5;
    border-radius: 100px;
}

.portfolio-tab {
    position: relative;
    border: 0;
    outline: 0;
    background: transparent;
    color: #475467;
    padding: 12px 23px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.portfolio-tab:hover {
    color: #0052ff;
}

.portfolio-tab.active {
    background: #0052ff;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,82,255,.20);
}


/* =========================================================
   GRID
========================================================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* PROJECT */

.portfolio-project {
    min-width: 0;
}


/* =========================================================
   WEBSITE PREVIEW WINDOW
========================================================= */

.portfolio-preview {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 18px;
    background: #eef2f7;
    cursor: pointer;
    box-shadow: 0 15px 45px rgba(15, 35, 70, .10);
}


/*
    IMPORTANT:
    Image ki width full hogi.
    Height auto rahegi.
    Is wajah se complete website screenshot
    naturally long rahega.
*/

.portfolio-preview-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: top center;

    transform: translateY(0);
    transition: transform 4s cubic-bezier(.25,.65,.25,1);
}


/* =========================================================
   HOVER SCROLL
========================================================= */

.portfolio-preview:hover .portfolio-preview-image {
    transform: translateY(
        calc(-1 * (100% - 500px))
    );
}


/* =========================================================
   HOVER OVERLAY
========================================================= */

.portfolio-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(2, 15, 40, .85),
            rgba(2, 15, 40, .10) 45%,
            transparent 70%
        );

    opacity: 0;
    transition: opacity .35s ease;
}

.portfolio-preview:hover .portfolio-hover {
    opacity: 1;
}

.portfolio-hover-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.portfolio-hover-content h4 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.portfolio-category {
    display: block;
    color: #8fc4ff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-open {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #0052ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    transition: transform .3s ease;
}

.portfolio-preview:hover .portfolio-open {
    transform: scale(1.08);
}


/* =========================================================
   HIDDEN PROJECTS
========================================================= */

.portfolio-project.portfolio-hidden {
    display: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-preview {
        height: 430px;
    }

    .portfolio-preview:hover .portfolio-preview-image {
        transform: translateY(
            calc(-1 * (100% - 430px))
        );
    }

}


@media (max-width: 767px) {

    .portfolio-showcase-section {
        padding: 75px 0;
    }

    .portfolio-tabs-wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
    }

    .portfolio-tabs {
        flex-wrap: nowrap;
        width: max-content;
    }

    .portfolio-tab {
        white-space: nowrap;
        padding: 11px 18px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .portfolio-preview {
        height: 430px;
    }

    .portfolio-preview:hover .portfolio-preview-image {
        transform: translateY(
            calc(-1 * (100% - 430px))
        );
    }

}


@media (max-width: 480px) {

    .portfolio-section-heading h2 {
        font-size: 34px;
    }

    .portfolio-preview {
        height: 380px;
        border-radius: 14px;
    }

    .portfolio-preview:hover .portfolio-preview-image {
        transform: translateY(
            calc(-1 * (100% - 380px))
        );
    }

}