/* Custom Styles for Markentica Digitals Additions */

/* Root Variables for Consistency */
:root {
    --color-primary: #1D4F91;
    --color-secondary: #00ADEF;
    --color-style-three: #1D4F91;
    /* Fallback for primary blue */
    --color-heading: #0e1133;
    --color-paragraph: #475569;
    --gradient-premium: linear-gradient(135deg, #1D4F91 0%, #00ADEF 100%);
    --navy-deep: #0e1133;
    --glass-bg: rgba(255, 255, 255, 0.7);
}

/* Premium Navigation Refinement - Synchronized with Homepage */
.navbar-brand {
    display: flex !important;
    align-items: center;
    gap: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-text .main {
    font-size: 22px;
    color: #0e1133;
}

.logo-text .sub {
    font-size: 16px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-fixed.dark .logo-text .main {
    color: #0e1133;
}

/* Navbar Transparency & Color Fix */
.navbar-3.navbar-fixed .navbar-collapse {
    background-color: transparent !important;
}

.navbar-3.navbar-fixed .nav-box {
    background-color: #fff !important;
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

/* Neutral Nav Links */
.navbar-3 .nav>li>a {
    color: #0e1133 !important;
}

.navbar-3 .nav>li.active>a,
.navbar-3 .nav>li>a:hover {
    color: var(--color-primary) !important;
}

/* Dropdown link refinements */
.navbar-3 .dropdown-menu>li>a {
    color: #475569 !important;
}

.navbar-3 .dropdown-menu>li>a:hover,
.navbar-3 .dropdown-menu>li.active>a {
    color: var(--color-primary) !important;
    background-color: rgba(29, 79, 145, 0.05) !important;
}

@media (max-width: 991px) {
    .navbar-brand {
        gap: 10px;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .nav-box {
        padding: 0 15px !important;
    }

    .logo-text .main {
        font-size: 18px;
    }

    .logo-text .sub {
        font-size: 13px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
}

/* Premium Intro Section - Bento Glassmorphism */
.premium-intro-area {
    position: relative;
    z-index: 1;
    background-color: transparent;
    overflow: hidden;
}

.premium-intro-area::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(29, 79, 145, 0.06) 0%, rgba(40, 2, 210, 0.03) 40%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.premium-intro-info .sub-title {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.premium-intro-info .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #111;
    font-weight: 500;
}

.premium-intro-bento {
    position: relative;
    padding: 10px;
}

.premium-intro-bento::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-style-three) 100%);
    border-radius: 24px;
    opacity: 0.08;
    z-index: -1;
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}

.premium-intro-bento:hover::before {
    transform: rotate(0deg) scale(1.02);
    opacity: 0.12;
}

.bento-glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.bento-glass-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-heading);
}

.bento-glass-card p {
    color: var(--color-paragraph);
    margin-bottom: 30px;
    line-height: 1.8;
}

.premium-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
    transition: transform 0.3s ease;
}

.premium-benefits li:hover {
    transform: translateX(5px);
}

.premium-benefits li:last-child {
    margin-bottom: 0;
}

.premium-benefits .check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-style-three) 0%, var(--color-primary) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(29, 79, 145, 0.25);
}

/* What We Do Section - Dark Mode Bento */
.what-we-do-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 43, 56, 0.95) 0%, rgba(14, 14, 14, 0.95) 100%);
    z-index: 1;
}

.do-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
    transition: all 0.3s ease;
}

.do-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.do-card .icon {
    font-size: 40px;
    color: var(--color-style-three);
}

.do-card p {
    color: #a0abb8;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .do-card-offset {
        margin-top: 40px;
    }
}

/* Ready to Grow Section Styles */
.ready-to-grow-items {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    border-radius: 40px;
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ready-to-grow-info .sub-title {
    color: #00d2ff;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.ready-to-grow-info h2.title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.ready-to-grow-info p {
    font-size: 22px;
    color: #d8e3f0;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Button Variations */
.btn-gradient {
    background: var(--gradient-premium) !important;
    border: none !important;
    padding: 22px 50px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    box-shadow: 0 15px 35px rgba(29, 79, 145, 0.3) !important;
    margin: 10px;
    min-width: 240px;
    transition: all 0.3s ease !important;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(29, 79, 145, 0.4) !important;
}

.outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 20px 50px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 10px;
    min-width: 240px;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px);
}

.outline-light:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Our Approach Section */
.approach-step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.approach-step-card:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 50px rgba(40, 2, 210, 0.08);
}

.approach-step-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-style-three) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.approach-step-card:hover::before {
    opacity: 1;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-style-three) 100%);
    border-radius: 50px;
    padding: 8px 25px 8px 12px;
    margin-bottom: 25px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(40, 2, 210, 0.2);
}

.step-icon span {
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    margin-right: 15px;
    font-size: 14px;
}

.step-icon i {
    font-size: 18px;
}

.approach-step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-heading);
}

.approach-step-card p {
    color: var(--color-paragraph);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ==========================================================================
   SERVICE PAGE SHARED COMPONENTS
   ========================================================================== */

/* Cinematic Hero Section V3 */
.hero-v3 {
    padding: 200px 0 120px;
    background: radial-gradient(circle at 80% 20%, rgba(0, 173, 239, 0.12), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(29, 79, 145, 0.12), transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero-v3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/img/shape/grid-mask.png');
    opacity: 0.05;
    z-index: -1;
}

.hero-badge-v3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(29, 79, 145, 0.2);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-primary, #1D4F91);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.main-title {
    font-size: 82px;
    font-weight: 950;
    line-height: 0.95;
    letter-spacing: -4px;
    color: var(--navy-deep);
    margin-bottom: 30px;
}

.gradient-text {
    color: var(--brand-secondary, #00ADEF);
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
}

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

/* Asymmetric Bento Grid V3 */
.bento-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-side-stack-v3 {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-card-v3 {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Our Approach Elite Design (Applied to Original Class) */
.approach-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.approach-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.approach-card .step-num {
    font-size: 50px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
}

.approach-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.approach-card p {
    color: #a0abb8 !important;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.bento-card-v3:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--brand-primary, #1D4F91);
    box-shadow: 0 40px 80px rgba(29, 79, 145, 0.1);
}

.bento-card-v3.large {
    grid-column: span 2;
    background: var(--navy-deep);
    color: #fff;
}

.bento-card-v3.large p {
    color: #a0abb8;
}

.icon-box-v3 {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(29, 79, 145, 0.15), rgba(0, 173, 239, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand-primary, #1D4F91);
    margin-bottom: 25px;
    border: 1px solid rgba(29, 79, 145, 0.2);
    box-shadow: 0 10px 20px rgba(29, 79, 145, 0.05);
}

.bento-card-v3.large .icon-box-v3 {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Modern Pricing Glass V3 */
.pricing-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

.pricing-glass.featured {
    background: var(--navy-deep);
    color: #fff;
    transform: scale(1.05);
    border: none;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
}

.pricing-glass.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-premium);
    z-index: -1;
    border-radius: 42px;
    opacity: 0.5;
}

.price-v3 {
    font-size: 72px;
    font-weight: 950;
    letter-spacing: -3px;
    margin: 20px 0;
    display: block;
}

.check-list-v3 {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.check-list-v3 li {
    padding-left: 44px;
    position: relative;
    margin-bottom: 12px;
    font-weight: 600;
}

.check-list-v3 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-premium);
    box-shadow: 0 8px 20px rgba(0, 173, 239, 0.18);
}

.check-list-v3 li::after {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}

/* Deliverable Items V3 */
.deliverable-item-v3 {
    background: #f8fafc;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.deliverable-item-v3:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: var(--brand-secondary, #00ADEF);
}

.deliv-icon {
    font-size: 24px;
    color: var(--brand-secondary, #00ADEF);
    margin-bottom: 15px;
    display: block;
}

/* Floating UI Elements */
.floating-ui {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.btn-black {
    background: #000;
    color: #fff !important;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 800;
    display: inline-block;
    transition: 0.3s;
    text-align: center;
}

.btn-black:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Section Headings V3 */
.section-tag {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--brand-primary, #1D4F91);
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.section-title-v3 {
    font-size: 56px;
    font-weight: 950;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--navy-deep);
}

/* Stat Grid V3 */
.stat-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card-v3 {
    background: #f8fafc;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.stat-card-v3:hover {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 173, 239, 0.1);
    transform: translateY(-10px);
    border-color: var(--brand-secondary, #00ADEF);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 173, 239, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: var(--brand-secondary, #00ADEF);
}

/* Step Flow V3 */
.step-flow-v3 {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
}

.step-flow-v3::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: dashed rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.flow-step-v3 {
    width: 30%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--navy-deep);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
    font-weight: 950;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mosaic Grid V3 */
.mosaic-grid-v3 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.mosaic-item-v3 {
    background: #fff;
    padding: 45px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mosaic-item-v3:hover {
    transform: translateY(-12px);
    box-shadow: 0 50px 100px rgba(0, 173, 239, 0.12);
    border-color: var(--brand-secondary, #00ADEF);
}

.mosaic-item-v3.span-6 {
    grid-column: span 6;
}

.mosaic-item-v3.span-4 {
    grid-column: span 4;
}

.mosaic-item-v3.span-8 {
    grid-column: span 8;
}

.mosaic-item-v3.span-12 {
    grid-column: span 12;
}

.mosaic-icon-v3 {
    font-size: 38px;
    color: var(--brand-secondary, #00ADEF);
    margin-bottom: 25px;
    background: rgba(0, 173, 239, 0.08);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Overrides for New Components */
@media (max-width: 1199px) {
    .stat-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .mosaic-item-v3.span-4 {
        grid-column: span 6;
    }
}

@media (max-width: 991px) {
    .step-flow-v3 {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .step-flow-v3::after {
        display: none;
    }

    .flow-step-v3 {
        width: 100%;
        max-width: 400px;
    }

    .mosaic-grid-v3 {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .mosaic-item-v3.span-4,
    .mosaic-item-v3.span-6,
    .mosaic-item-v3.span-8,
    .mosaic-item-v3.span-12 {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .stat-grid-v3 {
        grid-template-columns: 1fr;
    }

    .stat-card-v3 {
        padding: 40px 30px;
    }

    .mosaic-item-v3 {
        padding: 35px 25px;
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVE REFINEMENTS
   ========================================================================== */

/* Universal Responsive Typography */
@media (max-width: 1400px) {
    .main-title {
        font-size: 72px !important;
    }
}

@media (max-width: 1199px) {
    .main-title {
        font-size: 64px !important;
    }

    .section-title-v3 {
        font-size: 48px !important;
    }
}

@media (max-width: 991px) {
    .main-title {
        font-size: 54px !important;
        letter-spacing: -2px !important;
    }

    .section-title-v3 {
        font-size: 42px !important;
        letter-spacing: -1px !important;
    }

    /* Grid Stacking */
    .bento-grid-v3,
    .mosaic-grid-v3 {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .bento-card-v3.large,
    .mosaic-item-v3 {
        grid-column: auto !important;
    }

    .bento-side-stack-v3 {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        grid-column: auto !important;
    }

    /* Pricing Stacking Fixes */
    .pricing-glass,
    .price-card-v3 {
        margin-bottom: 30px;
        transform: none !important;
        /* Remove scaling on mobile to avoid overlap and clipping */
    }

    .pricing-glass.featured,
    .price-card-v3.featured {
        transform: scale(1) !important;
    }
}

@media (max-width: 767px) {
    .main-title {
        font-size: 44px !important;
        letter-spacing: -1.5px !important;
        line-height: 1.1 !important;
    }

    .section-title-v3 {
        font-size: 36px !important;
    }

    /* CTA Section Fixes */
    .ready-to-grow-items {
        padding: 60px 20px !important;
        border-radius: 24px !important;
    }

    .ready-to-grow-items .title {
        font-size: 32px !important;
        margin-bottom: 20px !important;
    }

    .ready-to-grow-items p {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }

    .ready-to-grow-btn a {
        width: 100% !important;
        margin: 10px 0 !important;
        padding: 18px 30px !important;
        min-width: unset !important;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 36px !important;
    }

    .price-v3,
    .price-tag-v3 {
        font-size: 56px !important;
    }
}

/* Fix for Hero Images on Mobile */
@media (max-width: 991px) {
    .hero-image-v3 {
        margin-top: 50px;
        max-width: 100%;
        text-align: center;
    }

    .hero-image-v3 img {
        max-width: 90%;
    }

    .floating-ui {
        display: none !important;
        /* Floating UI elements often break layout on mobile */
    }
}

/* Service Page Pricing Table Padding */
.pricing-area {
    padding: 100px 0 !important;
}

@media (max-width: 767px) {
    .pricing-area {
        padding: 60px 0 !important;
    }
}

/* Fix for navbar shadow/clipping on mobile */
@media (max-width: 991px) {
    .validnavs.navbar-fixed .navbar-collapse {
        background: #fff !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
}

/* Global Button Fix for Mobile */
.btn {
    white-space: normal !important;
    /* Allow buttons to wrap if text is long */
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

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

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 35px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-info-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(29, 79, 145, 0.1);
    border-color: rgba(29, 79, 145, 0.2);
}

.contact-info-list li i {
    width: 70px;
    height: 70px;
    background: var(--gradient-premium);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 28px;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(29, 79, 145, 0.2);
}

.contact-info-list li .info h4 {
    margin-bottom: 8px;
    color: #0e1133;
    font-weight: 800;
    font-size: 20px;
}

.form-content {
    background: #fff;
    padding: 80px 60px;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    position: relative;
}

.form-group label {
    font-weight: 800;
    color: #0e1133;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    height: 65px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    padding: 10px 25px;
    background: #f8fafc;
    font-size: 16px;
    transition: 0.3s;
}

.form-control:focus {
    background: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 5px rgba(29, 79, 145, 0.1);
}

textarea.form-control {
    height: 200px;
    padding-top: 20px;
}

.btn-submit {
    padding: 22px 50px;
    font-weight: 800;
    border-radius: 50px;
    background: var(--gradient-premium);
    color: white;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 15px 35px rgba(29, 79, 145, 0.3);
    width: 100%;
    display: block;
    text-align: center;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(29, 79, 145, 0.4);
    color: #fff;
}

.why-us-item {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: 0.4s;
    text-align: center;
}

.why-us-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.why-us-item i {
    display: inline-block;
    font-size: 40px;
    margin-bottom: 30px;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-us-item h4 {
    font-weight: 800;
    color: #0e1133;
    margin-bottom: 20px;
    font-size: 22px;
}
/* ==========================================================================
   Vercel Style What We Do
   ========================================================================== */
.feature-box-style-one {
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease-in-out;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.feature-box-style-one:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.1);
}

.feature-box-style-one i {
    font-size: 50px;
    margin-bottom: 25px;
    display: inline-block;
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.feature-box-style-one:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-box-style-one h4 {
    font-weight: 800;
    font-size: 24px;
    color: #0e1133;
    margin-bottom: 15px;
}

.feature-box-style-one p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
}

.services-style-two-area .d-flex.align-items-center i {
    margin-bottom: 0 !important;
    margin-right: 25px !important;
    font-size: 42px !important;
}

/* ============================================================== 
    # FOOTER ELITE V3 REDESIGN
=================================================================== */
.footer-elite-v3 {
    background: #0B0F19 !important;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.footer-elite-v3 .f-item .widget-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-elite-v3 .f-item .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 3px;
    background: var(--color-style-three);
    border-radius: 10px;
}

.footer-elite-v3 .f-item.about p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

.footer-social-v3 {
    display: flex;
    gap: 15px;
}

.footer-social-v3 a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-v3 a:hover {
    background: var(--color-style-three);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(29, 79, 145, 0.3);
    border-color: transparent;
    color: #fff;
}

.footer-elite-v3 .f-item.link ul li {
    margin-bottom: 12px;
}

.footer-elite-v3 .f-item.link ul li a {
    color: #94a3b8;
    transition: all 0.3s ease;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.footer-elite-v3 .f-item.link ul li a i {
    font-size: 12px;
    margin-right: 10px;
    opacity: 0;
    transition: 0.3s;
}

.footer-elite-v3 .f-item.link ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-info-v3 {
    margin-top: 20px;
}

.footer-contact-info-v3 .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-contact-info-v3 .contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(29, 79, 145, 0.1);
    color: var(--color-style-three);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.footer-contact-info-v3 .contact-item .text span {
    display: block;
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 2px;
}

.footer-contact-info-v3 .contact-item .text a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer-bottom-elite {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.footer-bottom-elite p {
    margin-bottom: 0;
    color: #64748b;
    font-size: 15px;
}

.footer-bottom-elite a {
    color: #fff;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: 15px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}


/* Payment Methods Styling */
.payment-methods-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.payment-methods-footer span {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons img {
    height: 38px;
    width: auto;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.payment-icons img:hover {
    transform: translateY(-3px);
}

/* Partnership & Mission Section Polish */
.mission-box {
    background: linear-gradient(135deg, #0e1133 0%, #05071a 100%);
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-box::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(29, 79, 145, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.mission-box h2, .mission-box p, .mission-box div {
    position: relative;
    z-index: 2;
}

.why-us-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border-left: 5px solid var(--color-primary);
    margin-top: 40px;
    transition: all 0.3s ease;
}

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

.why-us-card h4 {
    color: #0e1133;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 22px;
}


.why-us-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 0;
}

/* ============================================================
   GLOBAL COLOR CONSISTENCY OVERRIDES
   Brand: Primary #1D4F91 (Purple) | Secondary #00ADEF (Blue)
   All overrides below fix the template's default colors to
   match Markentica Digitals' brand identity.
   ============================================================ */

/* Override template CSS variables to brand colors */
:root {
    --color-primary:    #1D4F91;
    --color-secondary:  #00ADEF;
    --color-style-two:  #1D4F91;
    --color-style-three:#00ADEF;
    --gradient-premium: linear-gradient(135deg, #1D4F91 0%, #00ADEF 100%);
    --color-heading:    #0e1133;
    --color-paragraph:  #475569;
}

/* Fix .sub-title gradient — was using old template dark blue */
.sub-title {
    background: linear-gradient(108deg, #1D4F91 0%, #00ADEF 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* In dark sections, sub-title should also be brand gradient */
.bg-dark .sub-title,
.text-light .sub-title {
    background: linear-gradient(108deg, #1D4F91 0%, #00ADEF 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Fix btn-style-one hover fill — was dark/black template default */
.btn-style-one:after {
    background-color: #1D4F91 !important;
    background-image: linear-gradient(135deg, #1D4F91 0%, #00ADEF 100%) !important;
}

/* Ensure primary-colored links and icon accents stay on brand */
a:hover { color: #1D4F91; }

/* Fix portfolio/service tab active gradient */
.portfolio-style-six-tabs .nav-item .nav-link.active {
    background: linear-gradient(108deg, #1D4F91 0%, #00ADEF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fix template sidebar/progress bar accent */
.skill-items .progress-box .bar-active {
    background: linear-gradient(135deg, #1D4F91 0%, #00ADEF 100%);
}

/* Fix active nav link brand color */
.navbar-3 .nav > li.active > a,
.navbar-3 .nav > li > a:hover {
    color: #1D4F91 !important;
}

/* Premium gradient text utility (site-wide) */
.gradient-text-accent {
    background: linear-gradient(135deg, #1D4F91 0%, #00ADEF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* btn-gradient: always use brand gradient fill */
.btn-gradient {
    background: linear-gradient(135deg, #1D4F91 0%, #00ADEF 100%) !important;
    color: #fff !important;
    border: none !important;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.btn-gradient::after {
    background: linear-gradient(135deg, #00ADEF 0%, #1D4F91 100%) !important;
}
.btn-gradient:hover {
    color: #fff !important;
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(176,38,249,0.35) !important;
}

/* outline-light button consistency */
.btn.outline-light {
    border: 2px solid rgba(255,255,255,0.5) !important;
    color: #fff !important;
    background: transparent !important;
}
.btn.outline-light:hover {
    border-color: #1D4F91 !important;
    background: rgba(176,38,249,0.1) !important;
    color: #fff !important;
}

/* Feature box icon color — site-wide brand purple */
.feature-box-style-one i {
    background: linear-gradient(135deg, #1D4F91 0%, #00ADEF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fix portfolio "view" button hover gradient */
.portfolio-style-six-item .thumb a:hover span {
    background: linear-gradient(108deg, #1D4F91 0%, #00ADEF 100%);
    color: #fff;
}

/* Consistent focus ring for form inputs */
.form-control:focus,
input:focus,
textarea:focus {
    border-color: #1D4F91 !important;
    box-shadow: 0 0 0 3px rgba(29, 79, 145, 0.12) !important;
    outline: none !important;
}


