/* ========================================
   TAQSEEM — Redesign based on screenshots
   ======================================== */

:root {
    --teal-dark: #123e38;
    --teal: #1a4d46;
    --teal-light: #2c7268;
    --teal-soft: #eaf1f0;
    --accent: #c74e5c;
    --bg-main: #fcfbf9;
    --bg-white: #ffffff;
    --text-dark: #0f1c1a;
    --text-body: #4a5a58;
    --text-light: #8fa09e;
    --border: #e6ebea;
    --radius-lg: 24px;
    --radius: 12px;
    --radius-sm: 8px;
    --section-pad: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.elementor-widget-video .elementor-wrapper iframe,
.elementor-widget-video .elementor-wrapper video {
    height: 100%;
    width: 100%;
    display: flex;
    border: none;
    background-color: #040404;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.center {
    text-align: center;
}

/* ===== TYPOGRAPHY & UTILS ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    display: block;
    color: var(--teal-light);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: -0.5px;
}

/* ===== BUTTONS ===== */
.btn-solid-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 50px;
    background: var(--teal-soft);
    color: var(--teal-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-solid-sm.btn-dark {
    background: var(--teal-dark);
    color: #fff;
}

.btn-solid-sm:hover {
    filter: brightness(0.9);
}

.btn-hero-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 50px;
    background: var(--teal-dark);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero-solid:hover {
    background: var(--teal);
}

/* ===== HEADER ===== */
#main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
}

#main-nav {
    display: flex;
    gap: 32px;
}

#main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

#main-nav a:hover {
    color: var(--teal-light);
}

.header-btns {
    display: flex;
    gap: 12px;
}

/* ===== HERO ===== */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: radial-gradient(circle at 70% 30%, #f4eee6 0%, var(--bg-main) 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-wrapper h1 {
    font-size: clamp(3.5rem, 6vw, 5rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text-wrapper h2 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Hero Mockup floating */
.hero-visual-wrapper {
    position: relative;
}

.hero-mockup {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mockup-header {
    background: #f0f0f0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-header .dots {
    display: flex;
    gap: 6px;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-header .dot.red {
    background: #ff5f56;
}

.mockup-header .dot.yellow {
    background: #ffbd2e;
}

.mockup-header .dot.green {
    background: #27c93f;
}

.mockup-header .bar {
    flex: 1;
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-left: 20px;
}

.mockup-body {
    aspect-ratio: 16/10;
    background: #eee;
}

.mockup-body video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 4s ease-in-out infinite alternate;
}

.fb-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-soft);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.fb-text span {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
}

.fb-text small {
    color: var(--text-light);
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

/* ===== SERVICES (Image 2 style) ===== */
.services-premium {
    padding: var(--section-pad) 0;
}

.services-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    margin-top: 60px;
}

/* Sidebar Tabs */
.services-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-tab-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--bg-white);
    border: 1px solid var(--border);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.svc-tab-btn .icon-box {
    color: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-tab-btn .text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 4px;
}

.svc-tab-btn .text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    display: none;
}

.svc-tab-btn .arrow {
    margin-left: auto;
    color: var(--text-light);
}

.svc-tab-btn.active {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
}

.svc-tab-btn.active .icon-box,
.svc-tab-btn.active .text h4,
.svc-tab-btn.active .arrow {
    color: #fff;
}

.svc-tab-btn.active .text p {
    display: block;
    color: rgba(255, 255, 255, 0.7);
}

/* Right Pane */
.services-content {
    position: relative;
}

.svc-pane {
    display: none;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.svc-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.svc-pane-img {
    height: 350px;
    width: 100%;
    position: relative;
}

.svc-pane-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The curved text box overlay matching Image 2 */
.svc-pane-body {
    background: var(--bg-white);
    padding: 40px 50px;
    position: relative;
    margin-top: -60px;
    /* pull up over the image */
    border-radius: var(--radius-lg) 0 0 0;
    /* Match screenshot curve */
    width: 95%;
    margin-left: 5%;
}

.svc-pane-body h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 16px;
}

.svc-pane-body p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 40px;
}

.svc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature .f-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--teal-dark);
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .f-icon svg {
    width: 20px;
    height: 20px;
}

.feature .f-text span {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.feature .f-text small {
    font-size: 0.8rem;
    color: var(--text-body);
}

.explore-link {
    font-weight: 700;
    color: var(--teal-dark);
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

/* ===== EVERYTHING YOU NEED ===== */
.everything-section {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
}

.everything-graphic {
    margin-top: 80px;
    position: relative;
}

.everything-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.everything-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ey-tab {
    padding: 20px 30px;
    border-radius: var(--radius);
    background: var(--bg-main);
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.ey-tab h4 {
    font-size: 1.1rem;
    color: var(--text-body);
    font-weight: 600;
}

.ey-tab.active {
    background: var(--teal-soft);
    border-color: var(--teal-light);
}

.ey-tab.active h4 {
    color: var(--teal-dark);
}

.ey-tab .arrow {
    color: var(--teal-light);
}

.everything-right {
    position: relative;
}

.ey-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ey-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.ey-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--teal-dark);
    color: #fff;
    padding: 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 20px;
}

.ey-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ey-overlay-card h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.ey-btn {
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}


/* ===== MARKETPLACES & TOOLS ===== */
.partners-section {
    padding: 60px 0 var(--section-pad);
    text-align: center;
}

.section-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 40px;
}

/* Removed old logo-grid styles to let custom partners section style logos naturally */


/* ===== PORTFOLIO (Image 1 style) ===== */
.portfolio-premium-sec {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
    overflow: hidden;
}

.port-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.view-all {
    font-weight: 700;
    color: var(--teal-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--teal-light);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    border-color: var(--teal-dark);
    color: var(--teal-dark);
}

.port-slider-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 40px;
    scrollbar-width: none;
}

.port-slider-container::-webkit-scrollbar {
    display: none;
}

.port-slider {
    display: flex;
    gap: 20px;
    width: max-content;
}

.port-card-luxury {
    width: 320px;
    height: 400px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon-top {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    z-index: 5;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.brand.cottonil {
    color: #1a4f8a;
    font-weight: 600;
}

.brand.zara {
    font-family: serif;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 2px;
}

.brand.faces {
    letter-spacing: 4px;
    font-weight: 400;
}

.service-type {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: auto;
}

.metric {
    margin-top: auto;
    padding-bottom: 10px;
}

.metric .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 8px;
}

.metric .desc {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-body);
    line-height: 1.4;
}

.card-img-wrapper {
    position: absolute;
    right: -30px;
    top: 0;
    bottom: 0;
    width: 65%;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
    mask-image: linear-gradient(to right, transparent 0%, black 50%);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

/* Grid Below Slider */
.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.port-grid-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
}

.port-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
}

.pg-overlay h5 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 4px;
}

.pg-overlay span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== THE SUCCESSFUL ROADMAP ===== */
.roadmap-section {
    padding: var(--section-pad) 0;
    background: var(--teal-dark);
    color: #fff;
}

.roadmap-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.roadmap-visual {
    position: relative;
    height: 100%;
}

.roadmap-sticky {
    position: sticky;
    top: 150px;
    background: var(--teal);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.roadmap-sticky img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    transition: opacity 0.3s;
}

.roadmap-timeline {
    max-width: 100%;
    margin: 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.roadmap-item {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
    opacity: 0.5;
    transition: all 0.5s;
}

.roadmap-item.active {
    opacity: 1;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.rm-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--teal);
    border: 2px solid var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
}

.roadmap-item.active .rm-marker {
    background: var(--accent);
    border-color: var(--accent);
}

.rm-content h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 12px;
    transition: color 0.5s;
}

.roadmap-item.active .rm-content h4 {
    color: var(--accent);
}

.rm-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}


/* ===== FOOTER ===== */
#footer {
    background: #081412;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.f-awards {
    display: flex;
    gap: 12px;
}

.f-award-img {
    height: 60px;
    border-radius: 6px;
}

.f-col h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.f-links {
    list-style: none;
}

.f-links li {
    margin-bottom: 16px;
}

.f-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--teal-light);
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-container,
    .services-layout,
    .everything-content-split {
        grid-template-columns: 1fr;
    }

    .svc-pane-body {
        width: 100%;
        margin-left: 0;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        margin-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .roadmap-layout {
        grid-template-columns: 1fr;
    }

    .roadmap-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 80px;
    }

    #main-nav,
    .header-btns {
        display: none;
    }

    .hero-text-wrapper h1 {
        font-size: 3rem;
    }

    .title {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .roadmap-item {
        flex-direction: column;
        gap: 20px;
    }

    .roadmap-timeline::before {
        display: none;
    }
}

/* ========================================
   CUSTOM FIXES FOR TAQSEEM
   ======================================== */

/* 1. Global Spacing & Padding Reductions (Removing extra white space) */
:root {
    --section-pad: 40px !important;
    /* Globally shrink section pads */
}

/* Override all parent containers and custom sections padding to match partners section */
.elementor-6>.e-parent,
.elementor-6>section,
.custom-services-section,
.custom-partners-section,
.custom-portfolio-section,
.animated-roadmap-section,
.custom-dial-section,
.success-roadmap-wrap,
.custom-stats-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Reduce widget default margins to tighten content spacing */
.elementor-widget {
    margin-bottom: 12px !important;
}

.elementor-widget:last-child {
    margin-bottom: 0 !important;
}

/* Override Elementor default boxed container constraints */
.elementor-element.e-con-boxed {
    max-width: 100% !important;
    width: 100% !important;
}

.elementor-repeater-item-e5c8f94 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

/* 2. Align all sections content: boxed width 1180px, centered */
.e-con-boxed.e-parent>.e-con-inner,
.wrap,
.services-container,
.sr-split-container,
.custom-dial-section .dial-container,
.partners-grid-container {
    max-width: 1180px !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* ===== HEADER FULL WIDTH FIX ===== */
/* Override Elementor's --width and --content-width CSS variables */
.elementor-location-header,
.elementor-5583 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.elementor-location-header .elementor-element-f8058e6,
.elementor-5583 .elementor-element-f8058e6 {
    /* Override Elementor CSS variables that control width */
    --width: 100% !important;
    --content-width: 100% !important;
    --margin-left: 0px !important;
    --margin-right: 0px !important;
    --padding-left: 4% !important;
    --padding-right: 4% !important;
    /* Direct property overrides */
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 4% !important;
    padding-right: 4% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    align-items: center !important;
}

/* 3. Viewport Heights and Layout logic (Desktop vs. Mobile) */
@media (min-width: 1024px) {
    html {
        scroll-behavior: smooth;
    }

    /* Target primary sections to fill viewport on desktop */
    .elementor-6>.e-parent,
    .custom-services-section {
        min-height: calc(100vh - 90px) !important;
        box-sizing: border-box !important;
    }

    /* Special padding override for Hero section to clear header */
    .elementor-element-0336920 {
        padding-top: 100px !important;
        padding-bottom: 20px !important;
    }
}

/* 4. Force dynamic height on tablets/mobiles */
@media (max-width: 1023px) {

    .elementor-6>.e-parent,
    .elementor-6>section,
    .custom-services-section,
    .custom-partners-section,
    .custom-stats-section {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    /* Mobile adjustments for Hero section */
    .elementor-element-0336920 {
        padding-top: 100px !important;
        /* Ensure content is below mobile menu toggler */
        padding-bottom: 40px !important;
    }
}

/* 5. Custom Stats / Counters Section Styling */
.custom-stats-section {
    background-color: #F9F8F5 !important;
    /* Blends with services section background */
    padding: 30px 4% !important;
    /* Matches standard side padding */
    margin: 0 !important;
}

.stats-container {
    background-color: #123e38 !important;
    /* Solid primary dark teal color */
    border-radius: 16px;
    padding: 35px 10px;
    box-shadow: 0 10px 30px rgba(18, 62, 56, 0.15);
    max-width: 1180px !important;
    /* Boxed width */
    width: 100% !important;
    margin: 0 auto !important;
    border: none !important;
}

.stats-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 15px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 0;
    min-width: 0;
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #8fa09e;
    /* Premium light color */
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.stat-icon-wrap i {
    color: #fff;
    font-size: 24px;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2px;
}

.stat-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Tablet & Mobile responsive for stats banner */
@media (max-width: 1023px) {
    .stats-grid {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
        display: none;
        /* Hide dividers in stacked view */
    }

    .stat-card {
        justify-content: flex-start;
        text-align: left;
    }
}

/* 6. Spacing Overrides for Portfolio Section & View All Button */
.elementor-element-514afa9,
.elementor-element-f80b3a7 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.elementor-element-26528c7 {
    padding-bottom: 15px !important;
    margin-bottom: 0 !important;
}

.elementor-element-3871bee,
.elementor-element-b72ddcd,
.elementor-element-d6bca01 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.elementor-element-87abf1f {
    padding-top: 15px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.elementor-element-4074c21 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 7. Footer Spacing & Social Icons Custom Styling */
.elementor-location-footer>.e-parent,
.elementor-location-footer>section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.elementor-element-9fdaa61 .elementor-social-icons-wrapper {
    gap: 12px !important;
}

.elementor-element-9fdaa61 .elementor-social-icon {
    background-color: #ffffff !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.elementor-element-9fdaa61 .elementor-social-icon svg,
.elementor-element-9fdaa61 .elementor-social-icon i {
    fill: #000000 !important;
    color: #000000 !important;
    width: 18px !important;
    height: 18px !important;
    transition: transform 0.3s ease !important;
}

.elementor-element-9fdaa61 .elementor-social-icon:hover,
.elementor-element-9fdaa61 .elementor-social-icon:active {
    background-color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.elementor-element-9fdaa61 .elementor-social-icon:hover svg,
.elementor-element-9fdaa61 .elementor-social-icon:hover i,
.elementor-element-9fdaa61 .elementor-social-icon:active svg,
.elementor-element-9fdaa61 .elementor-social-icon:active i {
    fill: #000000 !important;
    color: #000000 !important;
}

/* 8. Boxed Banner (Growth Oriented Minds) & Social Icons Styling */
.elementor-element-95877f3 {
    max-width: 1280px !important;
    width: calc(100% - 8%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 30px !important;
    margin-bottom: 50px !important;
    background-color: #ffffff !important;
    /* White box — no duplicate dark colour */
    border-radius: 16px !important;
    padding: 50px 60px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(18, 62, 56, 0.12) !important;
}

/* Heading text must be dark teal on white background */
.elementor-element-95877f3 .elementor-heading-title {
    color: #123e38 !important;
}

/* "Dial A Consultant" button stays accent red */
.elementor-element-95877f3 .elementor-button {
    background-color: #C74E5C !important;
    color: #ffffff !important;
    border-radius: 50px !important;
}

@media (min-width: 1024px) {
    .elementor-element-95877f3>.e-con-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        gap: 40px !important;
    }

    .elementor-element-cb6f6b7 {
        width: 55% !important;
        max-width: 55% !important;
    }

    /* Right image column — smaller, properly aligned */
    .elementor-element-93bb547 {
        width: 38% !important;
        max-width: 38% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }

    /* Scale down the image so it fits neatly inside the white box */
    .elementor-element-93bb547 img {
        width: 100% !important;
        max-width: 380px !important;
        height: auto !important;
        object-fit: contain !important;
        border-radius: 12px !important;
        display: block !important;
        margin-left: auto !important;
    }
}

@media (max-width: 1023px) {
    .elementor-element-95877f3 {
        width: calc(100% - 40px) !important;
        padding: 40px 30px !important;
        margin-top: 20px !important;
        margin-bottom: 30px !important;
    }

    .elementor-element-95877f3>.e-con-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        align-items: stretch !important;
    }

    .elementor-element-cb6f6b7,
    .elementor-element-93bb547 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .elementor-element-93bb547 img {
        max-width: 300px !important;
        margin: 0 auto !important;
    }
}

/* Align Dial a Consultant button and Social Icons in a row */
.elementor-element-0881902>.e-con-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

/* Social icons inside white banner — use teal background to contrast with white box */
.elementor-element-4a3c68d .elementor-social-icon {
    background-color: #ffffff !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.elementor-element-4a3c68d .elementor-social-icon svg {
    fill: #000000 !important;
    width: 20px !important;
    height: 20px !important;
    transition: transform 0.3s ease !important;
}

.elementor-element-4a3c68d .elementor-social-icon i {
    color: #000000 !important;
    font-size: 20px !important;
    transition: transform 0.3s ease !important;
}

.elementor-element-4a3c68d .elementor-social-icon:hover,
.elementor-element-4a3c68d .elementor-social-icon:active {
    background-color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.elementor-element-4a3c68d .elementor-social-icon:hover svg,
.elementor-element-4a3c68d .elementor-social-icon:active svg {
    fill: #000000 !important;
}

.elementor-element-4a3c68d .elementor-social-icon:hover i,
.elementor-element-4a3c68d .elementor-social-icon:active i {
    color: #000000 !important;
}

/* ===== CUSTOM PORTFOLIO / OUR WORK GRID (2 Columns) ===== */
.custom-portfolio-section {
    padding: 60px 4% !important;
    background-color: #ffffff !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.portfolio-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 10px auto;
}

.portfolio-section-header .subtitle {
    display: block;
    color: #1f4a4d;
    /* Accent pinkish maroon */
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-section-header .section-title {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #123e38;
    /* Dark green brand color */
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.portfolio-section-header .section-divider {
    width: 60px;
    height: 4px;
    background-color: #1f4a4d;
    margin: 0 auto;
    border-radius: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.portfolio-card {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    /* Make the aspect ratio wider so images don't look giant */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    background-color: #f7f6f2;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(18, 62, 56, 0.12);
} */

.portfolio-card-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.portfolio-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.portfolio-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(18, 62, 56, 0.95) 0%, rgba(18, 62, 56, 0.6) 60%, transparent 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 40%;
    transition: min-height 0.4s ease;
}

.portfolio-card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 6px;
}

.portfolio-card-title {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.portfolio-card-arrow {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #123e38;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-card:hover .portfolio-card-arrow {
    background-color: #C74E5C;
    color: #ffffff;
    transform: translateX(4px);
}

.portfolio-section-footer {
    text-align: center;
    margin-top: 10px;
}

.portfolio-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    background-color: #123e38;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 6px 20px rgba(18, 62, 56, 0.15);
}

.portfolio-view-all-btn:hover {
    background-color: #C74E5C;
    box-shadow: 0 8px 25px rgba(199, 78, 92, 0.25);
    transform: translateY(-2px);
}


/* Responsive styles for Grid */
@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .portfolio-card {
        aspect-ratio: 16/10;
    }

    .custom-portfolio-section {
        padding: 40px 4% !important;
    }
}


/* ============================================
   ONE STOP RETAIL — Enhanced Visual Section
   ============================================ */

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatOrb {

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

    50% {
        transform: translateY(-20px) scale(1.04);
    }
}

@keyframes shimmerLine {
    0% {
        width: 0;
        opacity: 0;
    }

    60% {
        width: 80px;
        opacity: 1;
    }

    100% {
        width: 60px;
        opacity: 1;
    }
}

@keyframes rotateOrb {
    from {
        transform: rotate(0deg) translateX(60px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(60px) rotate(-360deg);
    }
}

/* Section container */
#about.elementor-element-3ee6b9b,
.elementor-element-3ee6b9b {
    position: relative;
    background: linear-gradient(135deg, #f5f0e8 0%, #eef4f2 40%, #f9f6f0 100%) !important;
    overflow: hidden;
    padding: 20px 0 !important;
    min-height: auto !important;
}

.elementor-element-7542b6e p {
    text-align: justify;
    text-justify: inter-word;
}

.elementor-6 .elementor-element.elementor-element-f15b910:not(.elementor-motion-effects-element-type-background),
.elementor-6 .elementor-element.elementor-element-f15b910>.elementor-motion-effects-container>.elementor-motion-effects-layer {
    padding-top: 40px !important;
}

/* Decorative background orbs */
.elementor-element-3ee6b9b::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 77, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.elementor-element-3ee6b9b::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(199, 78, 92, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 10s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

/* Inner container layout */
.elementor-element-3ee6b9b>.e-con-inner {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 60px !important;
}

/* Left column — heading */
.elementor-element-eca4352 {
    position: relative;
}

/* Animated accent bar above heading */
.elementor-element-eca4352 .e-con-inner::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #1f4a4d, #1a4d46);
    border-radius: 2px;
    margin-bottom: 24px;
    animation: shimmerLine 1s ease forwards 0.3s;
    width: 0;
}

/* Heading styling */
.elementor-element-3ee6b9b .ekit-heading--title,
.elementor-element-3ee6b9b .elementor-heading-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem) !important;
    font-weight: 800 !important;
    color: #0f1c1a !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px !important;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
    opacity: 0;
}

/* Coloured span within heading */
.elementor-element-3ee6b9b .ekit-heading--title span:first-child:not(.retail) {
    color: #1a4d46 !important;
    position: relative;
}

.elementor-element-3ee6b9b .ekit-heading--title .retail {
    color: #C74E5C !important;
    position: relative;
}

/* Right column — paragraph */
.elementor-element-7542b6e {
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.45s;
    opacity: 0;
}

.elementor-element-3ee6b9b .elementor-text-editor p {
    font-size: 1.1rem !important;
    line-height: 1.85 !important;
    color: #4a5a58 !important;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid rgba(26, 77, 70, 0.2);
}

/* Floating mini-badge — removed as per request */

/* Stat pills row — visual metrics below text */
.elementor-element-7542b6e::after {
    content: '';
    display: block;
}

/* ========== Enhanced "The One Stop" Section Design ========== */

/* Section Container */
#about.elementor-element-3ee6b9b {
    background-color: #F3F1ED !important;
    background: #F3F1ED !important;
    position: relative;
    overflow: hidden;
}

#about.elementor-element-3ee6b9b>.e-con-inner {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr !important;
    gap: 60px !important;
    align-items: center !important;
    max-width: 1140px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 45px 4% !important;
    box-sizing: border-box !important;
}

.about-left-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}

.about-right-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.ekit-heading--title.elementskit-section-title {
    font-size: clamp(30px, 3.5vw, 36px) !important;
    font-weight: 800 !important;
    line-height: 1.22 !important;
    color: #123338 !important;
    margin-bottom: 0 !important;
    text-align: center;
}

.panel-cta {
    text-align: center !important;
}

.animated-roadmap-header h2 {
    text-align: center;
    line-height: 1.2;
}

.animated-roadmap-header .primary-text {
    color: #C74E5C;
}

.custom-services-section.section-subtitle {
    text-align: center !important;
}

.ekit-heading--title span.retail {
    color: #c74e5c !important;
    font-weight: 800;
}

#about.elementor-element-3ee6b9b p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #555555 !important;
    font-weight: 500;
    margin: 0 !important;
}

.about-image-wrapper {
    width: 100%;
    max-width: 490px;
    border-radius: 20px;
    /* height: 500px; */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    animation: aboutFloat 6s ease-in-out infinite;
    background-color: #ffffff;
}

.about-retail-img {
    width: 100%;
    height: 550px !important;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    transition: transform .8s cubic-bezier(.25, 1, .5, 1);
}

.about-image-wrapper:hover .about-retail-img {
    transform: scale(1.04);
}

@keyframes aboutFloat {

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

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

/* Animations */
@keyframes float {

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

    50% {
        transform: translateY(30px) translateX(20px);
    }
}

@keyframes slideInTopLeft {
    from {
        opacity: 0;
        transform: translate(-20px, -20px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slideInBottomRight {
    from {
        opacity: 0;
        transform: translate(20px, 20px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(26, 77, 70, 0.08);
    }

    50% {
        box-shadow: 0 8px 30px rgba(26, 77, 70, 0.15);
    }
}

@keyframes rotate-subtle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .elementor-element-3ee6b9b>.e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 30px !important;
    }
}

@media (max-width: 768px) {

    #about.elementor-element-3ee6b9b,
    .elementor-element-3ee6b9b {
        padding: 30px 0 !important;
    }

    /* Fix inner container padding on mobile - override the 30px from tablet breakpoint */
    #about.elementor-element-3ee6b9b>.e-con-inner,
    .elementor-element-3ee6b9b>.e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 16px !important;
    }

    .elementor-element-3ee6b9b .elementor-text-editor p {
        font-size: 1rem !important;
    }
}

/* Remove white background from the consultant section container */
.elementor-element-cb6f6b7 {
    background: transparent !important;
}

/* Remove white background and shadow from the outer section container */
.elementor-element-95877f3 {
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Force transparent background for e-con-boxed within cb6f6b7 */
.elementor-element-cb6f6b7.e-con-boxed,
.elementor-element-cb6f6b7>* {
    background-color: transparent !important;
    background: transparent !important;
}



/* Dial A Consultant Section */
.custom-dial-section {
    background-color: #F9F8F5;
    /* Cream background same as other custom sections */
    padding: 30px 10% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto !important;
    /* Shrunk height */
    width: 100%;
    box-sizing: border-box;
}

.dial-container {
    max-width: 1280px;
    width: 100%;
    background-color: #1e4e49;
    /* Dark teal background card */
    border-radius: 24px;
    padding: 5px 50px !important;
    /* Shrunk padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(30, 78, 73, 0.15);
}

#counters-stats {
    padding-bottom: 80px !important;
}

.dial-content {
    flex: 1;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 2;
}

.dial-title {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
}

.dial-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.dial-action {
    margin: 0;
}

.dial-btn {
    display: inline-flex;
    align-items: center;
    background-color: #C74E5C;
    color: #ffffff !important;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(199, 78, 92, 0.3);
}

.dial-btn:hover {
    background-color: #b03d4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 78, 92, 0.4);
}

.dial-socials {
    display: flex;
    gap: 16px;
    margin: 0;
}

.dial-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000 !important;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dial-social-icon:hover,
.dial-social-icon:active {
    background-color: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.dial-social-icon svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: #000000 !important;
    transition: transform 0.2s;
}

.dial-social-icon:hover svg,
.dial-social-icon:active svg {
    transform: scale(1.1);
    fill: #000000 !important;
}

.dial-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

.dial-visual .portrait-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    object-position: right center;
    border-radius: 12px;
    margin-right: -10px;
    display: block;
}

/* Floating Info Tags */
.float-tag {
    position: absolute;
    z-index: 3;
}

/* Top Right Glass Tag */
.float-tag.tag-top {
    top: 20px;
    right: -45px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    width: 240px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.tag-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #a3c1ad;
    /* soft sage green dot */
}

.tag-title {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.tag-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
    margin-top: 4px;
}

/* Bottom Left White Pill Tag */
.float-tag.tag-bottom {
    bottom: 20px;
    left: -55px;
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 18px 8px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    max-width: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}

.tag-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(30, 78, 73, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e4e49;
    flex-shrink: 0;
}

.tag-icon-circle svg {
    width: 16px;
    height: 16px;
}

.tag-desc-group {
    display: flex;
    flex-direction: column;
}

.tag-bold-desc {
    font-size: 12.5px;
    font-weight: 700;
    color: #1e4e49;
    line-height: 1.3;
}

.tag-light-desc {
    font-size: 10.5px;
    font-weight: 500;
    color: #888888;
    line-height: 1.2;
    margin-top: 1px;
}

/* Connection curves */
.conn-curve {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.conn-curve.curve-top {
    top: 60px;
    right: -45px;
    width: 140px;
    height: 110px;
}

.conn-curve.curve-bottom {
    bottom: 60px;
    left: -55px;
    width: 140px;
    height: 110px;
}

@media (max-width: 991px) {
    .custom-dial-section {
        padding: 50px 4% !important;
    }

    .dial-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px !important;
        gap: 20px !important;
    }

    .dial-content {
        max-width: 100%;
        align-items: center;
        gap: 16px !important;
    }

    .dial-actions-wrapper {
        justify-content: center;
    }

    .dial-visual {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .dial-container {
        padding: 40px 20px;
    }

    .consultant-card-wrapper {
        transform: scale(0.85);
        margin: -20px 0;
    }
}

@media (max-width: 400px) {
    .consultant-card-wrapper {
        transform: scale(0.75);
        margin: -35px 0;
    }
}

/* Custom Portfolio Slider Styles (Horizontal Marquee) */
.custom-portfolio-section {
    padding: 40px 0 !important;
    background-color: #F9F8F5 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Reduced from 30px to match Marketplace row gap */
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.portfolio-slider-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto !important; /* Overrides inline margin-top: 15px to maintain clean 20px gap */
    overflow: hidden;
    position: relative;
    height: auto !important;
    box-sizing: border-box;
}

.portfolio-horizontal-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: slideLeftMarquee 45s linear infinite;
    padding: 0; /* Removed vertical padding to make spacing equal to the marketplace card gap */
}

/* Pause animation on hover */
.portfolio-slider-container:hover .portfolio-horizontal-track,
.portfolio-horizontal-track:hover {
    animation-play-state: paused !important;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    /* Exactly 8 items visible per row on desktop, matching marketplace card size */
    width: calc(12.5vw - 20px) !important;
    max-width: 142.5px !important;
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.portfolio-card {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #e0e0e0;
    border: none;
}

.portfolio-card-img-wrapper {
    background: white !important;
    padding: 0 !important; /* Force no padding so image covers entire space */
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    inset: 1px !important;
    border-radius: 11px !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

.portfolio-card-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important; /* Force cover style */
    margin: 0 !important;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.portfolio-card img {
    /* max-width: 100%; */
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.portfolio-card::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: conic-gradient(transparent, transparent, transparent, #C74E5C);
    animation: rotatePortfolioBorder 3s linear infinite;
    animation-play-state: paused;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

@keyframes rotatePortfolioBorder {
    100% {
        transform: rotate(360deg);
    }
}

.portfolio-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}





/* Card Info Overlay */
.portfolio-card-info {
    position: absolute !important;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%) !important;
    padding: 25px 20px !important;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;

    /* Hover state starts hidden */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 10;
}

.portfolio-item:hover .portfolio-card-info {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin: 0 0 6px 0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.portfolio-card-category {
    font-size: 0.9rem !important;
    color: #e0e0e0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.portfolio-card-category strong {
    color: #ffffff !important;
    font-weight: 700 !important;
}

@keyframes slideLeftMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

.portfolio-horizontal-track.track-slide-right {
    animation: slideRightMarquee 45s linear infinite;
}

@keyframes slideRightMarquee {
    0% {
        transform: translateX(calc(-50% - 10px));
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .portfolio-item {
        width: calc(16.666vw - 20px) !important; /* 6 items on tablet, matching marketplace grid */
        max-width: 154px !important;
    }
}

@media (max-width: 768px) {
    .portfolio-item {
        width: calc(25vw - 20px) !important; /* 4 items on mobile, matching marketplace grid */
    }

    .portfolio-card-img-wrapper {
        padding: 0 !important; /* Force no padding so cover image fills completely */
    }

    .custom-portfolio-section {
        gap: 12px !important;
        padding: 25px 0 !important;
    }

    .portfolio-slider-container {
        margin-top: 0 !important;
    }

    .portfolio-horizontal-track {
        padding: 4px 0 !important;
    }
}

@media (max-width: 500px) {
    .portfolio-item {
        width: calc(50vw - 20px) !important; /* 2 items on extra-mobile, matching marketplace grid */
    }
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.modern-footer {
    background-color: #376866;
    color: #ffffff;
    padding: 60px 5% 20px;
    font-family: inherit;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}

.footer-brand {
    flex: 2 1 300px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link,
.contact-address {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.contact-link:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

.contact-link i,
.contact-address i {
    color: #ffffff !important;
    width: 16px;
    text-align: center;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #ffffff !important;
}

.mt-4 {
    margin-top: 30px;
}

.footer-left-main {
    flex: 3 1 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.footer-columns-group {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-certifications-row {
    width: 100%;
    position: relative;
    margin-top: 0px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-awards-row {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    flex-wrap: nowrap;
}

.footer-awards-row img {
    width: 98px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
    padding: 2px 4px;
    flex-shrink: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

@media (max-width: 1024px) {
    .footer-awards-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .footer-awards-row img {
        flex-shrink: 0;
    }
}

.footer-newsletter .newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1 1 150px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.3s;
}

.newsletter-form input::placeholder {
    color: #ffffff;
    opacity: 0.9;
}

.newsletter-form input:focus {
    border-color: #ffffff;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: #ffffff;
    color: #376866;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.newsletter-form button:hover {
    background-color: #f0f0f0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    padding-right: 80px;
    /* Leave space for floating WhatsApp button */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

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

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.footer-socials a:hover {
    background-color: #ffffff;
    color: #376866;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-right: 0 !important;
        /* Reset right offset on mobile */
    }
}

/* ============================================
   OUR WORK — Remove white space above it
   ============================================ */
/* Center the Flip Your Retail section and remove excess bottom space */
.elementor-element-26528c7 {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
}

/* Zero out any extra bottom padding from the Flip section inner children */
.elementor-element-26528c7>.e-con-inner {
    padding-bottom: 0 !important;
    margin: auto !important;
}

/* Also kill any top padding/margin the portfolio section itself adds */
.custom-portfolio-section {
    margin-top: 0 !important;
    padding-top: 10px !important;
}





/* ===== ANIMATED ZIG-ZAG ROADMAP SECTION ===== */
.animated-roadmap-section {
    background-color: #fafaf8;
    padding: 100px 5% 80px;
    position: relative;
    font-family: inherit;
    overflow: hidden;
}

.animated-roadmap-header {
    max-width: 1180px !important;
    width: 100% !important;
    margin: 0 auto 50px auto;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
    position: relative;
    z-index: 2;
    text-align: center !important;
}

.animated-roadmap-header .ar-tag {
    display: inline-block;
    border: 1.5px solid #ccc;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: #888;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.animated-roadmap-header h2 {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    font-weight: 800;
    color: #111;
    line-height: 1.22;
    max-width: 950px !important;
    margin: 0 auto 16px auto !important;
    text-align: center !important;
}

.ar-intro-text {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Container holds cards + SVG overlay */
.ar-zigzag-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* SVG path overlay */
.ar-svg-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

/* Each step row */
.ar-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    /* initial state for animation */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ar-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ar-step.step-right {
    justify-content: flex-end;
}

.ar-step.step-left {
    justify-content: flex-start;
}

/* Card */
.ar-card {
    background: transparent;
    border-radius: 0;
    padding: 15px 0;
    width: 44%;
    box-shadow: none !important;
    position: relative;
    border: none !important;
    transition: transform 0.35s ease;
}

/* Align text to face the center path */
.ar-step.step-right .ar-card {
    transform: none !important;
    text-align: left;
}

.ar-step.step-left .ar-card {
    transform: none !important;
    text-align: right;
}

/* Hover style */
.ar-step.step-right .ar-card:hover,
.ar-step.step-left .ar-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: none !important;
}

/* Positioning pins towards the center path */
.ar-step.step-left .ar-pin {
    right: -6.5%;
    left: auto;
}

.ar-step.step-right .ar-pin {
    left: -6.5%;
    right: auto;
}

/* Sleek Glowing Pin style */
.ar-pin {
    width: 14px;
    height: 14px;
    background: #1e4e49;
    border: 3px solid #fafaf8;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 2px rgba(30, 78, 73, 0.2);
    z-index: 4;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

/* Highlight pin when step is visible */
.ar-step.is-visible .ar-pin {
    background: #C74E5C;
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 10px rgba(199, 78, 92, 0.5);
}

/* Card text styles */
.ar-step-num {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e4e49;
    margin-top: 5px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.ar-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.25;
}

.ar-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* Delivered label */
.ar-delivered-label {
    text-align: right;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 600;
    color: #999;
    margin-top: 15px;
    padding-right: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .ar-zigzag-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .ar-svg-connector {
        display: block !important;
    }

    /* Disable vertical shift on mobile to prevent SVG line misalignment, and add generous vertical spacing */
    .ar-step {
        margin-bottom: 80px !important;
        transform: none !important;
        opacity: 1 !important;
    }

    /* Set card width to 52% so they have plenty of room for text without overlapping the center curved line */
    .ar-card {
        width: 52% !important;
        padding: 5px 0 !important;
        margin-left: 0 !important;
    }

    .ar-pin {
        display: block !important;
        width: 12px !important;
        height: 12px !important;
        top: 22px !important;
    }

    /* Position pins at the outer edge of each card column to create a wide curved line */
    .ar-step.step-left .ar-pin {
        right: 0 !important;
        left: auto !important;
        transform: translateX(50%) !important;
    }

    .ar-step.step-left.is-visible .ar-pin {
        transform: translateX(50%) scale(1.2) !important;
    }

    .ar-step.step-right .ar-pin {
        left: 0 !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .ar-step.step-right.is-visible .ar-pin {
        transform: translateX(-50%) scale(1.2) !important;
    }

    /* Both left and right cards are left-aligned (clean edge), with 12% percentage-based padding to clear the curved line on all screen sizes */
    .ar-step.step-left .ar-card {
        text-align: left !important;
        padding-right: 12% !important;
        padding-left: 0 !important;
    }

    .ar-step.step-right .ar-card {
        text-align: left !important;
        padding-left: 12% !important;
        padding-right: 0 !important;
    }

    /* Card text styles for mobile scale */
    .ar-step-num {
        font-size: 11px !important;
        margin-top: 2px !important;
        margin-bottom: 4px !important;
    }

    .ar-card h3 {
        font-size: 14px !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }

    .ar-card p {
        font-size: 11.5px !important;
        line-height: 1.5 !important;
    }
}

/* Subtle grid background */
.animated-roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.animated-roadmap-header {
    text-align: left;
    max-width: 100% !important;
    margin: 0 auto 0px auto;
    position: relative;
    z-index: 2;
}

.animated-roadmap-header .subtitle {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.animated-roadmap-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #123e38;
    line-height: 1.2;
}

.animated-roadmap-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

/* Connecting dashed line in the middle */
.roadmap-dashed-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    border-left: 2px dashed #d1d1d1;
    z-index: 1;
}

.roadmap-card-row {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
    z-index: 2;
    opacity: 0;
    /* For GSAP animation */
    transform: translateY(50px);
}

.roadmap-card-row.left {
    justify-content: flex-start;
    padding-right: 50%;
}

.roadmap-card-row.right {
    justify-content: flex-end;
    padding-left: 50%;
}

.roadmap-note-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-card-row.left .roadmap-note-card {
    transform: rotate(-3deg);
    margin-left: auto;
    margin-right: 40px;
}

.roadmap-card-row.right .roadmap-note-card {
    transform: rotate(3deg);
    margin-left: 40px;
    margin-right: auto;
}

.roadmap-note-card:hover {
    transform: rotate(0deg) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.note-pin {
    width: 20px;
    height: 20px;
    background: #444;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset -3px -3px 6px rgba(0, 0, 0, 0.5), 0 5px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #ddd;
}

.note-pin::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.note-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 15px;
    margin-top: 15px;
}

.roadmap-note-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #123e38;
    margin-bottom: 15px;
}

.roadmap-note-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Connecting dots to the center line */
.roadmap-card-row::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    border-top: 2px dashed #d1d1d1;
    z-index: 1;
}

.roadmap-card-row.left::after {
    right: 50%;
}

.roadmap-card-row.right::after {
    left: 50%;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .roadmap-dashed-line {
        left: 20px;
    }

    .roadmap-card-row.left,
    .roadmap-card-row.right {
        justify-content: flex-start;
        padding: 0 0 0 50px;
    }

    .roadmap-card-row.left .roadmap-note-card,
    .roadmap-card-row.right .roadmap-note-card {
        margin: 0;
        width: 100%;
        max-width: 100%;
        transform: rotate(0deg);
    }

    .roadmap-card-row.left::after,
    .roadmap-card-row.right::after {
        left: 20px;
        right: auto;
        width: 30px;
    }
}

/* ========================================================
   RESTORE & ALIGNMENT UPDATES
   ======================================================== */

/* 1. Footer Award Cards */
.award-card {
    width: 200px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-sizing: border-box;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.award-card img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. Footer Headings & Text Colors to Solid White */
.elementor-location-footer .elementor-heading-title {
    color: #ffffff !important;
}

.elementor-location-footer,
.elementor-location-footer .elementor-icon-list-item a,
.elementor-location-footer p {
    color: #ffffff !important;
}

/* 3. Global Social Icons Force Style (White Background + Black Icon) */
.elementor-social-icons-wrapper .elementor-icon.elementor-social-icon,
.elementor-widget-social-icons .elementor-icon.elementor-social-icon,
.elementor-social-icon,
.dial-social-icon {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.elementor-social-icons-wrapper .elementor-icon.elementor-social-icon:hover,
.elementor-social-icons-wrapper .elementor-icon.elementor-social-icon:active,
.elementor-widget-social-icons .elementor-icon.elementor-social-icon:hover,
.elementor-widget-social-icons .elementor-icon.elementor-social-icon:active,
.elementor-social-icon:hover,
.elementor-social-icon:active,
.dial-social-icon:hover,
.dial-social-icon:active {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.elementor-social-icons-wrapper .elementor-icon.elementor-social-icon svg,
.elementor-widget-social-icons .elementor-icon.elementor-social-icon svg,
.elementor-social-icon svg,
.elementor-social-icon i,
.dial-social-icon svg {
    fill: #000000 !important;
    color: #000000 !important;
}

.elementor-social-icons-wrapper .elementor-icon.elementor-social-icon:hover svg,
.elementor-social-icons-wrapper .elementor-icon.elementor-social-icon:active svg,
.elementor-widget-social-icons .elementor-icon.elementor-social-icon:hover svg,
.elementor-widget-social-icons .elementor-icon.elementor-social-icon:active svg,
.elementor-social-icon:hover svg,
.elementor-social-icon:active svg,
.elementor-social-icon:hover i,
.elementor-social-icon:active i,
.dial-social-icon:hover svg,
.dial-social-icon:active svg {
    fill: #000000 !important;
    color: #000000 !important;
}

/* 4. Desktop Viewport Isolation and Perfect Fit Scroll Snapping */
@media (min-width: 1025px) {
    html {
        scroll-snap-type: y proximity;
        scroll-behavior: smooth;
    }

    /* Target major sections for snaps, allowing natural heights so content isn't cut off */
    .elementor-element-0336920,
    /* Hero container */
    #about,
    /* The One Stop Solution */
    .elementor-element-f15b910,
    /* Everything You Need */
    #services,
    /* Services Content Tabs */
    #portfolio,
    /* Portfolio Work Grid */
    .custom-dial-section,
    /* Dial A Consultant */
    #partners-clients,
    /* Partners & Clients */
    .success-roadmap-wrap,
    /* Success Roadmap */
    .elementor-location-footer

    /* Footer Snap */
        {
        scroll-snap-align: start !important;
        scroll-margin-top: 100px !important;
        /* Prevent header overlap */
    }
}

/* Align Everything You Need animated video exactly with its text boundaries */
.elementor-element-f15b910 .e-con-inner {
    width: fit-content !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.elementor-element-f15b910 h2.elementor-heading-title {
    width: 100% !important;
    text-align: center !important;
}

.elementor-element-f15b910 .elementor-widget-video {
    max-width: 100% !important;
    margin: 0 auto !important;
}

@media (min-width: 1025px) {
    .elementor-element-f15b910 h2.elementor-heading-title {
        white-space: nowrap !important;
        font-size: 134px !important;
    }

    .elementor-element-f15b910 .elementor-widget-video {
        width: 1260px !important;
    }
}

.elementor-element-f15b910 video {
    border-radius: 12px !important;
    width: 100% !important;
    display: block !important;
}

/* Right align hero tab 4 content */
.elementor-element-9a370de {
    text-align: right !important;
}

.elementor-element-9a370de .elementor-heading-title,
.elementor-element-9a370de p,
.elementor-element-9a370de .elementor-button-wrapper {
    text-align: right !important;
}

.elementor-element-9a370de .elementor-button-wrapper {
    justify-content: flex-end !important;
    display: flex !important;
}

/* Ensure the videos in the hero section tabs have a controlled height to prevent layout shifts or tab hiding */
.theplus-tabs-content-wrapper .elementor-video {
    width: 100% !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    background-color: #F3F1ED !important;
}

/* Override responsive padding on video wrapper to support uniform height */
.theplus-tabs-content-wrapper .elementor-wrapper {
    padding-bottom: 0 !important;
}

/* Header button customizations - Square with small border-radius, green hover border for Join Our Team */
/* Contact Us button container: desktop only — width 26%, right-aligned */
@media (min-width: 1025px) {
    .elementor-5583 .elementor-element.elementor-element-9c75887 {
        width: 26% !important;
        --width: 26% !important;
        justify-content: flex-end !important;
        padding-right: 2% !important;
    }

    .elementor-element-8335735 p {
        padding-bottom: 35px;
    }
}

#uc_blox_btn_group_elementor_cd55018 a {
    border-radius: 4px !important;
    border: 2px solid transparent !important;
}

#uc_blox_btn_group_elementor_cd55018 .elementor-repeater-item-74b3267 {
    border-color: #1e4e49 !important;
    color: #1e4e49 !important;
    /* Green text color on hover */
    background-color: transparent !important;
}

#uc_blox_btn_group_elementor_cd55018 .elementor-repeater-item-e5c8f94:hover {
    background-color: #ac3d4a !important;
}

/* ==========================================================================
   ALIGNMENT & RESPONSIVENESS OVERRIDES (TAQSEEM CUSTOM FIXES)
   ========================================================================== */

/* 1. Desktop Guideline Alignments */
#about.elementor-element-3ee6b9b>.e-con-inner {
    max-width: 1180px !important;
}

.stats-container {
    max-width: 1126px !important;
    width: calc(100% - 8%) !important;
}

.elementor-element-95877f3 {
    max-width: 1180px !important;
    width: calc(100% - 8%) !important;
}

/* Align Everything You Need video to desktop guidelines */
.elementor-element-f15b910 {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.elementor-element-f15b910 .e-con-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 4% !important;
    padding-right: 4% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.elementor-element-f15b910 .elementor-widget-video {
    width: 1250px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

/* 2. Hero Section - Right-Aligned Text Column */
.elementor-element-dc936c6 {
    margin-top: -25px !important;
}

.elementor-element-dc936c6,
.elementor-element-dc936c6 p {
    text-align: right !important;
}

/* .elementor-element-8335735 p {
    padding-bottom: 35px;
} */

/* 3. About Section (Immediately after Hero) Mobile Layout (Image on top, text below) */
@media (max-width: 1024px) {

    #about.elementor-element-3ee6b9b>.e-con-inner,
    .elementor-element-3ee6b9b>.e-con-inner {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 30px !important;
        padding: 0 4% !important;
    }

    .about-left-col,
    .about-right-col {
        width: 100% !important;
    }
}

/* 4. Roadmap Section Mobile (Preserve Desktop Split sticky scrolling and animations) */
@media (max-width: 992px) {
    .success-roadmap-wrap .sr-split-container {
        flex-direction: row !important;
        padding: 0 4% !important;
        display: flex !important;
    }

    .success-roadmap-wrap .sr-left-text {
        width: 50% !important;
        flex: 0 0 50% !important;
        padding-bottom: 12vh !important;
    }

    .success-roadmap-wrap .sr-text-block {
        min-height: 42vh !important;
        padding-right: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .success-roadmap-wrap .sr-right-visual {
        width: 50% !important;
        flex: 0 0 50% !important;
        position: sticky !important;
        top: 100px !important;
        height: 70vh !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .success-roadmap-wrap .sr-animation-container {
        max-width: 100% !important;
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
    }

    .success-roadmap-wrap .sr-text-block h3 {
        font-size: clamp(1.4rem, 3.5vw, 2.2rem) !important;
        margin-bottom: 15px !important;
    }

    .success-roadmap-wrap .sr-text-block p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

/* 5. Services Section Mobile (Spacing & Layout Optimization) */
@media (max-width: 768px) {
    .custom-services-section .service-list {
        width: 100% !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 8px !important;
        padding: 5px 0 15px 0 !important;
        margin: 0 !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    /* Hide scrollbars */
    .custom-services-section .service-list::-webkit-scrollbar {
        display: none !important;
    }

    .custom-services-section .service-tab {
        width: 82% !important;
        min-width: 82% !important;
        flex: 0 0 82% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        padding: 8px 18px !important;
        border-radius: 50px !important;
        gap: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        scroll-snap-align: center !important;
        white-space: normal !important;
    }

    .custom-services-section .service-tab .tab-icon {
        margin: 0 !important;
    }

    .custom-services-section .service-tab:hover {
        transform: none !important;
        border-color: transparent !important;
    }

    .custom-services-section .service-tab.active:hover {
        transform: none !important;
    }

    .custom-services-section .tab-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 15px !important;
    }

    .custom-services-section .tab-text-content {
        flex: 1 !important;
        min-width: 0 !important;
        white-space: normal !important;
    }

    .custom-services-section .tab-title {
        font-size: 14px !important;
        margin-bottom: 0 !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .custom-services-section .tab-desc {
        display: none !important;
    }

    .custom-services-section .tab-arrow {
        display: none !important;
    }

    .custom-services-section .panel-bottom {
        padding: 20px 15px !important;
    }

    .custom-services-section .panel-bottom h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .custom-services-section .panel-bottom>p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .custom-services-section .panel-img {
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
    }

    .custom-services-section .sub-acc-card {
        padding: 10px 12px !important;
    }

    .custom-services-section .sub-acc-label {
        font-size: 12.5px !important;
    }

    .custom-services-section .sub-acc-body {
        font-size: 12px !important;
    }
}

/* ===================================================
   MOBILE FIXES (max-width: 767px)
   - Prevent horizontal overflow globally
   - Header logo & hamburger top spacing
   - Mobile menu text bigger
   - Everything You Need heading: clamp to prevent overflow
   - Everything You Need video: 80vh on mobile
   =================================================== */
@media (max-width: 767px) {

    /* Prevent all horizontal scrolling gaps */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* 1. Header: give logo and hamburger icon more top breathing room */
    .elementor-5583 .elementor-element-f8058e6 {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
        min-height: 72px !important;
    }

    .elementor-5583 .elementor-element.elementor-element-98c8e1b {
        padding-top: 0px !important;
    }

    /* Force larger logo and hamburger on mobile */
    .elementor-5583 .elementor-element-18490af img,
    .elementor-5583 .elementor-element-98c8e1b img {
        width: 190px !important;
        max-width: 190px !important;
    }

    .elementor-5583 .elementskit-menu-hamburger .ekit-menu-icon {
        font-size: 34px !important;
    }


    /* 2. Mobile menu items - bigger, readable text */
    .elementor-5583 .elementskit-navbar-nav>li>a {
        font-size: 18px !important;
        padding: 14px 20px !important;
        font-weight: 600 !important;
    }

    /* 3. Everything You Need heading — scale down on mobile to prevent horizontal overflow */
    .elementor-element-f15b910 h2.elementor-heading-title {
        font-size: clamp(24px, 8vw, 36px) !important;
        white-space: nowrap !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: block !important;
        width: 100% !important;
    }

    /* Prevent the section from causing horizontal scroll */
    .elementor-element-f15b910 {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    .elementor-element-f15b910 .e-con-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* 4. Everything You Need video: aspect ratio preserved, no black boxes on mobile */
    .elementor-element-f15b910 .elementor-widget-video {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        background: transparent !important;
        overflow: hidden;
        transform: translateZ(0);
        background-color: transparent !important;
        display: flex !important;
        justify-content: center !important;
    }

    .elementor-element-f15b910 .elementor-wrapper,
    .elementor-element-f15b910 .e-hosted-video {
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        background: transparent !important;
        background-color: transparent !important;
    }

    .elementor-element-f15b910 video {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        border-radius: 0 !important;
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
    }

    /* 5. Hero Section 4th Tab: Image/GIF on top, text below */
    .elementor-element-123fd5c>.e-con-inner {
        flex-direction: column-reverse !important;
    }

    .elementor-element-ee337a1,
    .elementor-element-ee337a1>.e-con-inner,
    .elementor-element-123fd5c,
    .elementor-element-123fd5c>.e-con-inner,
    .elementor-element-9a370de,
    .elementor-element-9a370de>.e-con-inner,
    .elementor-element-54e90fd,
    .elementor-element-54e90fd>.e-con-inner {
        width: 100% !important;
        max-width: 100% !important;
        flex-basis: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
    }

    .elementor-element-9a370de,
    .elementor-element-9a370de .elementor-heading-title,
    .elementor-element-9a370de p {
        text-align: center !important;
    }

    .elementor-element-9a370de .elementor-button-wrapper {
        justify-content: center !important;
        display: flex !important;
    }

    .elementor-element-54e90fd img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }
}

/* 6. Services Section Desktop Right Column Width Reduction */
@media (min-width: 1025px) {
    .custom-services-section .main-layout {
        justify-content: center !important;
    }

    .custom-services-section .detail-panel {
        max-width: 860px !important;
        width: 100% !important;
    }
}

/* ===================================================
   SUB-PAGE COMMON STYLING
   =================================================== */
.subpage-hero {
    background: linear-gradient(135deg, #123338 0%, #1e4e49 100%);
    padding: 140px 5% 80px;
    color: #ffffff;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(199, 78, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(31, 74, 77, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.subpage-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.subpage-hero-text {
    flex: 1;
    min-width: 320px;
}

.subpage-hero-tag {
    font-size: 13px;
    font-weight: 700;
    color: #1f4a4d;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.subpage-hero-title {
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #ffffff;
}

.subpage-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 600px;
}

.subpage-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #C74E5C;
    color: #ffffff !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(199, 78, 92, 0.3);
    transition: all 0.3s ease;
}

.subpage-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(199, 78, 92, 0.4);
    color: #ffffff !important;
}

.subpage-hero-visual {
    flex: 0 0 35%;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subpage-hero-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
    animation: subpageFloat 6s ease-in-out infinite;
}

@keyframes subpageFloat {

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

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

/* Why Choose Section & Cards */
.subpage-choose-section {
    background-color: #F9F8F5;
    padding: 100px 5%;
}

.subpage-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subpage-section-tag {
    font-size: 13px;
    font-weight: 700;
    color: #1f4a4d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subpage-section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #123338;
    margin-top: 10px;
    margin-bottom: 20px;
}

.subpage-section-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.subpage-grid-choose {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.subpage-choose-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.subpage-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: #1f4a4d;
}

.subpage-card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(31, 74, 77, 0.05);
    color: #1f4a4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.subpage-choose-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #123338;
    margin-bottom: 12px;
}

.subpage-choose-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Service Detail Cards Grid */
.subpage-detail-section {
    background-color: #ffffff;
    padding: 100px 5%;
}

.subpage-grid-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.subpage-detail-card {
    background: #F9F8F5;
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.subpage-detail-card:hover {
    background: #879E99;
    border-color: #879E99;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(31, 74, 77, 0.05);
    transform: translateY(-4px);
}

.subpage-detail-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #1f4a4d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.subpage-detail-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #123338;
    margin-bottom: 15px;
}

.subpage-detail-card:hover h3,
.subpage-detail-card:hover p {
    color: #fff !important;
}

.subpage-detail-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

/* The Advantage Section */
.subpage-adv-section {
    background-color: #F9F8F5;
    padding: 100px 5%;
}

.subpage-adv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.subpage-adv-text {
    flex: 1;
    min-width: 320px;
}

.subpage-adv-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subpage-adv-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.subpage-adv-item-check {
    color: #1f4a4d;
    font-size: 18px;
    margin-top: 2px;
}

.subpage-adv-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #123338;
    margin-bottom: 4px;
}

.subpage-adv-item-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.subpage-adv-visual {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.subpage-adv-img {
    width: 100%;
    max-width: 500px;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .subpage-adv-visual {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .subpage-adv-img {
        max-width: 100% !important;
        height: 450px !important;
    }
}

@media (max-width: 768px) {
    .subpage-adv-img {
        height: 350px !important;
    }
}

/* Form Section */
.subpage-form-section {
    background-color: #ffffff;
    padding: 100px 5%;
}

.subpage-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #F9F8F5;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
    text-align: center;
}

.subpage-form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.subpage-form-group-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.subpage-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subpage-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #123338;
}

.subpage-form-group input,
.subpage-form-group textarea {
    padding: 14px 20px;
    border-radius: 10px;
    border: 1.5px solid #d1ccc0;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.subpage-form-group input:focus,
.subpage-form-group textarea:focus {
    border-color: #1f4a4d;
}

.subpage-form-submit {
    background: #1f4a4d;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    align-self: center;
}

.subpage-form-submit:hover {
    background: #123338;
    transform: translateY(-2px);
}

.founder-cta {
    margin-top: 30px;
    text-align: center;
}


.founder-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #C74E5C;
    color: #ffffff !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(199, 78, 92, 0.25);
}


.founder-cta a:hover {
    background-color: rgba(18, 51, 56, 0.85) !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(199, 78, 92, 0.4);
    color: #ffffff !important;
}

/* ==========================================================================
   SPACING & SIZE FIXES ONLY — No design changes
   ========================================================================== */

/* Hero: push content down enough to clear sticky header */
.elementor-element-0336920 {
    padding-top: 10px !important;
    box-sizing: border-box !important;
}

.elementor-6>.e-parent {
    padding-top: 0px !important;
}

/* "Flip Your Retail" section: remove 100vh min-height that hides content */
.elementor-element-26528c7 {
    min-height: unset !important;
}

/* "Everything You Need" heading: the 134px is too large on desktop, scale it down */
@media (min-width: 1025px) {
    .elementor-element-f15b910 h2.elementor-heading-title {
        font-size: 118px !important;
    }
}

/* About section: normalize gap between columns */
.elementor-element-3ee6b9b>.e-con-inner {
    gap: 40px !important;
}

/* Stats section: allow wrapping on smaller screens */
.stats-grid {
    flex-wrap: wrap !important;
}

/* Portfolio cards: fix image fill */
.portfolio-card-img-wrapper {
    width: 100% !important;
    height: 100% !important;
}

.portfolio-card-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Prevent horizontal overflow from any section */
html,
body {
    overflow-x: hidden !important;
}

/* Scroll margin for anchor links (clear sticky header) */
[id] {
    scroll-margin-top: 90px;
}

/* Mobile: stack stats vertically and hide dividers */
@media (max-width: 767px) {
    .stats-grid {
        flex-direction: column !important;
    }

    .stat-divider {
        display: none !important;
    }
}

/* ==========================================================================
   CUSTOM 1180PX GRID CONTENT LIMITS (GLOBAL OVERRIDES)
   ========================================================================== */

/* 1. Footer Content Alignment (Calc padding to box footer elements to 1180px layout grid) */
@media (min-width: 1220px) {

    .elementor-element-a85bc44,
    .elementor-element-3e772d5 {
        padding-left: calc((100% - 1180px) / 2) !important;
        padding-right: calc((100% - 1180px) / 2) !important;
    }
}

@media (max-width: 1219px) {

    .elementor-element-a85bc44,
    .elementor-element-3e772d5 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* 2. Apply 1180px max-width, center alignment, and uniform padding ONLY to top-level page content containers */
/* NOTE: We do NOT apply padding to all .e-con-inner because that compounds padding in nested containers */
.elementor-element-0336920>.e-con-inner,
#about.elementor-element-3ee6b9b>.e-con-inner,
.elementor-element-3ee6b9b>.e-con-inner,
.custom-services-section .wrap,
.elementor-element-f15b910>.e-con-inner,
.ar-zigzag-container,
.animated-roadmap-container,
.success-roadmap-wrap .sr-split-container,
.partners-grid-container,
.portfolio-grid,
.portfolio-slider-container {
    max-width: 1180px !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* Override padding to 35px on desktop screens (min-width: 1220px) */
@media (min-width: 1220px) {

    .elementor-element-0336920>.e-con-inner,
    #about.elementor-element-3ee6b9b>.e-con-inner,
    .elementor-element-3ee6b9b>.e-con-inner,
    .custom-services-section .wrap,
    .elementor-element-f15b910>.e-con-inner,
    .ar-zigzag-container,
    .animated-roadmap-container,
    .success-roadmap-wrap .sr-split-container,
    .partners-grid-container,
    .portfolio-grid,
    .custom-dial-section .dial-container {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
}

/* 3. Hero Left Column Specific Override */
.elementor-element-b135428 {
    padding-left: 0px !important;
    margin-left: 0px !important;
}

/* On mobile, reset the negative margin that causes misalignment */
@media (max-width: 768px) {
    .elementor-element-b135428 {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

/* 4. Hero Content Adjustments */
.elementor-element-73e97cd {
    gap: 5px !important;
}

.elementor-element-9743eb8 .elementor-widget-container,
.elementor-element-1923b01 .elementor-widget-container,
.elementor-element-9743eb8 .elementor-heading-title,
.elementor-element-1923b01 .elementor-heading-title {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.elementor-element-8335735 {
    text-align: justify !important;
}

.elementor-element-8335735 p {
    text-align: justify !important;
}

/* ============================================
   GLOBAL MOBILE & TABLET OPTIMIZATIONS
   ============================================ */
html,
body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Ensure images scale correctly */
img,
video,
canvas,
iframe {
    max-width: 100%;
}

/* Prevent text overflow and horizontal scrolling from long words */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Tablet Optimizations */
@media (max-width: 1024px) {
    .elementor-container {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Do NOT add blanket padding to .e-con / .e-con-inner here — it compounds with nested containers */
}

/* Mobile Optimizations */
@media (max-width: 768px) {

    /* Only add side padding to outermost page-level sections, not all .e-con */
    .elementor-6>.e-parent {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Avoid huge fonts on mobile */
    h1 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        line-height: 1.3 !important;
    }
}

/* ===== MOBILE FIXES FOR BROKEN SECTIONS (STATS, ROADMAP, VIDEO, DIAL) ===== */

/* 1. Custom Stats Section Fix */
@media (max-width: 1023px) {
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 15px !important;
        align-items: start !important;
        flex-direction: row !important;
        /* override previous flex-direction: column */
    }

    .stat-card {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .stat-divider {
        display: none !important;
    }

    .stat-icon-wrap {
        width: 50px !important;
        height: 50px !important;
    }

    .stat-icon-wrap i {
        font-size: 20px !important;
    }

    .stat-number {
        font-size: 28px !important;
    }
}

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .stat-card {
        flex-direction: row !important;
        text-align: left !important;
        align-items: center !important;
    }
}




/* 4. Dial A Consultant Section Fix */
@media (max-width: 768px) {
    .dial-container {
        padding: 40px 20px !important;
    }

    .float-tag.tag-top {
        right: 0 !important;
        top: 0 !important;
        transform: scale(0.8) !important;
        transform-origin: top right !important;
    }

    .float-tag.tag-bottom {
        left: 0 !important;
        bottom: 0 !important;
        transform: scale(0.8) !important;
        transform-origin: bottom left !important;
    }

    .conn-curve {
        display: none !important;
        /* Hide decorative curves on mobile */
    }

    .dial-actions-wrapper {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .dial-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}


/* Fixes for "Everything You Need" section and Roadmap mobile view */
@media (max-width: 768px) {

    /* 1. Everything You Need Section - 100vh on mobile */
    .elementor-element-f15b910 {
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 20px 0 !important;
    }

    .elementor-element-00e0235 .elementor-video {
        width: 100% !important;
        height: 100% !important;
        /* max-height: 100vh !important; */
        object-fit: cover !important;
    }

}

/* ============================================
   HERO SECTION MOBILE STYLING FIXES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

    /* 1. Force the columns in the hero section to stack vertically */
    .elementor-element-0336920>.e-con-inner {
        flex-direction: column !important;
        display: flex !important;
        gap: 15px !important;
        /* Space between text and tabs */
        padding-left: 0px !important;
        padding-right: 0px !important;
        max-width: 100% !important;
    }

    /* 2. Force Left Content Column & Right Tabs Column to take full width and reset desktop margins */
    .elementor-element-b135428,
    .elementor-element-5117a0c {
        width: 100% !important;
        max-width: 100% !important;
        flex-basis: 100% !important;
    }

    .elementor-element-5117a0c {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* 3. Center align Left Content text on mobile */
    .elementor-element-b135428 {
        text-align: center !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .elementor-element-73e97cd {
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .elementor-element-9743eb8 .elementor-heading-title {
        text-align: center !important;
        font-size: 26px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
        margin-bottom: 12px !important;
    }

    .elementor-element-1923b01 .elementor-heading-title {
        text-align: center !important;
        font-size: 14px !important;
        line-height: 1.45 !important;
        font-weight: 400 !important;
    }

    .elementor-element-1923b01 {
        margin-bottom: 20px !important;
    }

    .elementor-element-2d6def0 .elementor-button-wrapper {
        justify-content: center !important;
        display: flex !important;
    }

    .elementor-element-dc936c6 {
        margin-top: -15px !important;
        margin-bottom: 25px !important;
    }

    .elementor-element-8335735,
    .elementor-element-8335735 p {
        text-align: justify !important;
        margin-bottom: 0 !important;
    }

    .elementor-element-8335735>.elementor-widget-container {
        padding: 0px 0px 0px 12px !important;
        border-style: solid !important;
        border-width: 0px 0px 0px 1px !important;
        border-color: #959595 !important;
    }

    /* 4. Restore mobile accordion headings */
    .theplus-tabs-wrapper.mobile-accordion .theplus-tabs-nav-wrapper {
        display: none !important;
    }

    /* 5. Fix Tab Content (especially video scaling) on mobile */
    .theplus-tabs-content-wrapper .elementor-tab-content {
        width: 100% !important;
        /* max-width: 100% !important; */
        padding: 0 !important;
        box-sizing: border-box !important;
    }

















    /* 7. Generic full-width and layout overrides for nested containers in tabs to prevent collapsing and padding build-ups */
    .theplus-tabs-content-wrapper .e-con,
    .theplus-tabs-content-wrapper .e-con-inner,
    .theplus-tabs-content-wrapper .e-con-boxed,
    .theplus-tabs-content-wrapper .elementor-element,
    .theplus-tabs-content-wrapper .elementor-widget-video,
    .theplus-tabs-content-wrapper .elementor-widget-image,
    .theplus-tabs-content-wrapper .plus-content-editor,
    .theplus-tabs-content-wrapper .elementor {
        width: 100% !important;
        max-width: 100% !important;
        flex-basis: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    /* Override e-con-boxed width constraint inside tab content */
    .theplus-tabs-content-wrapper .e-con-boxed {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .theplus-tabs-content-wrapper .e-con-boxed>.e-con-inner {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }






    .theplus-tabs-content-wrapper .e-con-inner {
        flex-direction: column !important;
        /* Force vertical stacking for all tabs inner contents */
        display: flex !important;
    }

    /* Tab 4 image/card adjustments on mobile to match Image 3 exactly */
    .elementor-element-123fd5c>.e-con-inner {
        padding: 20px !important;
    }

    .elementor-element-9a370de {
        margin-bottom: 20px !important;
    }

    .elementor-element-3937d66 .elementor-heading-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        text-align: left !important;
        color: #1b4446 !important;
        margin-bottom: 15px !important;
    }

    .elementor-element-5e8309a p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        text-align: left !important;
        color: #4a5a58 !important;
        margin-bottom: 20px !important;
    }

    .elementor-element-c2c45cd .elementor-button-wrapper {
        justify-content: flex-start !important;
        display: flex !important;
    }

    .elementor-element-54e90fd {
        display: flex !important;
        justify-content: center !important;
    }

    .elementor-element-54e90fd img {
        border-radius: 12px !important;
        height: auto !important;
    }
}

/* ============================================
   PREMIUM MOBILE/TABLET SLIDE MENU STYLING (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {

    /* 1. Header Hamburger Button styling */
    .elementskit-menu-hamburger.elementskit-menu-toggler {
        background: transparent !important;
        border: none !important;
        color: #1e4e49 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .elementskit-menu-hamburger.elementskit-menu-toggler:hover {
        background: transparent !important;
        transform: scale(1.05) !important;
    }

    .elementskit-menu-hamburger.elementskit-menu-toggler i {
        font-size: 20px !important;
        color: #1e4e49 !important;
        line-height: 1 !important;
        display: block !important;
    }

    /* 2. White & Full-Width Off-Canvas Drawer styling with clean slide transition */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements {
        background: #ffffff !important;
        /* Pure White background */
        width: 100vw !important;
        /* Full width */
        max-width: 100vw !important;
        /* Full width */
        height: 100vh !important;
        /* Full viewport height */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: 0 !important;
        box-shadow: none !important;
        /* No shadow */
        padding: 24px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        z-index: 999999 !important;
        overflow-y: auto !important;
        /* Allow scroll inside menu */
        transform: translateX(-100%) !important;
        /* Hide off-screen by default */
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
        /* Simple slide-in ease */
    }

    .elementskit-menu-container.elementskit-menu-offcanvas-elements.active {
        transform: translateX(0) !important;
        /* Slide in when active */
    }

    /* Disable dark overlay shadow panels to keep simple slide in */
    .elementskit-menu-overlay {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* 3. Panel Header (Logo + Close) Alignment */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements .elementskit-nav-identity-panel {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 30px !important;
        padding: 0 !important;
        order: -1 !important;
        /* Move to top */
    }

    .elementskit-menu-container.elementskit-menu-offcanvas-elements .elementskit-site-title {
        margin: 0 !important;
        padding: 0 !important;
    }

    .elementskit-menu-container.elementskit-menu-offcanvas-elements .elementskit-nav-logo img {
        max-height: 40px !important;
        width: auto !important;
    }

    /* Modern Circular Close Button for light theme */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements button.elementskit-menu-close {
        background: #f5f5f5 !important;
        /* Light background */
        color: #333333 !important;
        /* Dark X icon */
        border: none !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 50% !important;
        font-size: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        line-height: 1 !important;
        padding: 0 !important;
    }

    .elementskit-menu-container.elementskit-menu-offcanvas-elements button.elementskit-menu-close:hover {
        background: #c74e5c !important;
        /* Crimson accent red on close hover */
        transform: rotate(90deg) scale(1.1) !important;
        color: #ffffff !important;
    }

    /* 4. Drawer Navigation Menu Layout */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 0 !important;
        margin: 0 !important;
        order: 2 !important;
        /* Move below the identity panel */
        list-style: none !important;
        width: 100% !important;
        float: none !important;
    }

    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
    }

    /* Drawer Regular Link Items (Dark Teal on White) */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li a.ekit-menu-nav-link {
        color: #1e4e49 !important;
        /* Dark teal link text */
        font-family: "Circular Std", "Inter", sans-serif !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        padding: 12px 16px !important;
        display: block !important;
        border-radius: 8px !important;
        transition: all 0.25s ease !important;
        background: transparent !important;
        border: none !important;
        text-align: left !important;
        line-height: 1.4 !important;
    }

    /* Regular links hover/active state */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li a.ekit-menu-nav-link:hover {
        color: #ffffff !important;
        background: #1e4e49 !important;
        /* Dark teal background on active/hover */
        padding-left: 22px !important;
        /* Subtle indent on hover/active */
    }

    /* 5. Style 'Join Our Team' and 'Contact Us' menu items as buttons inside the drawer */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li#menu-item-6440,
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li#menu-item-6436 {
        margin-top: 15px !important;
        width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

    /* Ensure specific styling for the link inside the button elements */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li#menu-item-6440 a.ekit-menu-nav-link,
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li#menu-item-6436 a.ekit-menu-nav-link {
        text-align: center !important;
        padding: 12px 20px !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        border-radius: 8px !important;
        display: block !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
        line-height: 1.2 !important;
    }

    /* Button 1: Join Our Team (Bordered Teal Button on White theme) */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li#menu-item-6440 a.ekit-menu-nav-link {
        border: 2px solid #1e4e49 !important;
        background-color: transparent !important;
        color: #1e4e49 !important;
    }

    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li#menu-item-6440 a.ekit-menu-nav-link:hover {
        background-color: #1e4e49 !important;
        color: #ffffff !important;
        padding-left: 20px !important;
        /* Keep center text aligned */
        transform: translateY(-2px) !important;
    }

    /* Button 2: Contact Us (Solid Red Accent Button) */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li#menu-item-6436 a.ekit-menu-nav-link {
        background-color: #c74e5c !important;
        /* Crimson Accent Red */
        color: #ffffff !important;
        border: 2px solid #c74e5c !important;
    }

    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li#menu-item-6436 a.ekit-menu-nav-link:hover {
        background-color: #b03d4a !important;
        /* Slightly darker red */
        border-color: #b03d4a !important;
        color: #ffffff !important;
        padding-left: 20px !important;
        /* Keep center text aligned */
        transform: translateY(-2px) !important;
    }

    /* Disable underline or line decorations on active hover */
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li a.ekit-menu-nav-link::before,
    .elementskit-menu-container.elementskit-menu-offcanvas-elements ul.elementskit-navbar-nav li a.ekit-menu-nav-link::after {
        display: none !important;
    }
}

/* ============================================================
   FINAL MOBILE/TABLET FULL-WIDTH FIX — HIGH SPECIFICITY OVERRIDES
   Applied last so they take priority over all earlier rules
   ============================================================ */
@media (max-width: 1024px) {

    /* 1. Prevent any generic Elementor padding from compounding inside nested containers */
    .elementor-6 .e-con,
    .elementor-6 .e-con-inner,
    .elementor-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 2. Globally apply clean, consistent side padding to the OUTERMOST section wrappers */
    /* This ensures every section has equal left/right padding and doesn't touch the edges */
    .elementor-6 .e-con-boxed.e-parent>.e-con-inner,
    .wrap,
    .services-container,
    .sr-split-container,
    .custom-dial-section .dial-container,
    .partners-grid-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin: 0 auto !important;
    }

    /* 3. Specific overrides for Hero Layout */
    .elementor-element-0336920>.e-con-inner {
        flex-direction: column !important;
        display: flex !important;
        gap: 15px !important;
    }

    .elementor-element-b135428,
    .elementor-element-5117a0c,
    .elementor-element-dc936c6,
    .elementor-element-73e97cd {
        flex-basis: 100% !important;
    }

    .elementor-element-dc936c6 {
        margin-top: -15px !important;
        margin-bottom: 25px !important;
    }

    /* Keep the text paragraph left border padding */
    .elementor-element-8335735>.elementor-widget-container {
        padding-left: 12px !important;
        border-style: solid !important;
        border-width: 0 0 0 1px !important;
        border-color: #959595 !important;
    }

    /* 4. Theplus tabs: no side padding on wrapper */
    .theplus-tabs-wrapper,
    .theplus-tabs-content-wrapper,
    .theplus-tabs-nav-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

















    /* Tab 3 & 4 (Recurring) Inner containers full width with padding */
    .theplus-tabs-content-wrapper .elementor-element-ee337a1>.e-con-inner,
    .theplus-tabs-content-wrapper .elementor-element-1844dc4>.e-con-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
    }

    /* Override e-con-boxed width constraint inside tab content on tablet */
    .theplus-tabs-content-wrapper .e-con-boxed {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .theplus-tabs-content-wrapper .e-con-boxed>.e-con-inner {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .theplus-tabs-content-wrapper .elementor-element-123fd5c>.e-con-inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
    }






    /* 5. About section inner: single column */
    #about.elementor-element-3ee6b9b>.e-con-inner,
    .elementor-element-3ee6b9b>.e-con-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* 6. Everything You Need section: no side padding (video fills full width) */
    .elementor-element-f15b910>.e-con-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 7. Vertical Accordion styling for Hero Tabs on Mobile/Tablet */
    .elementor-tab-mobile-title {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        font-family: "Circular Std", Sans-serif !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        padding: 8px 0 !important;
        border: none !important;
        background: transparent !important;
        cursor: pointer !important;
        /* margin-top: 40px !important; */
        /* margin-bottom: 15px !important; */
    }

    .elementor-tab-mobile-title.active {
        color: #1e4e49 !important;
    }

    .elementor-tab-mobile-title:not(.active) {
        color: #848484 !important;
    }

    .theplus-tabs-wrapper.mobile-accordion .theplus-tabs-nav-wrapper {
        display: none !important;
    }
}

@media (max-width: 768px) {

    /* Reduce universal padding from 20px to 16px on mobile phones for all main sections */
    .elementor-6 .e-con-boxed.e-parent>.e-con-inner,
    .wrap,
    .services-container,
    .sr-split-container,
    .custom-dial-section .dial-container,
    .partners-grid-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Tab 3 & 4 Inner containers padding for mobile */
    .theplus-tabs-content-wrapper .elementor-element-ee337a1>.e-con-inner,
    .theplus-tabs-content-wrapper .elementor-element-1844dc4>.e-con-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .theplus-tabs-content-wrapper .elementor-element-123fd5c>.e-con-inner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Extra-small phones (below 480px) */
@media (max-width: 480px) {

    .elementor-6 .e-con-boxed.e-parent>.e-con-inner,
    .wrap,
    .services-container,
    .sr-split-container,
    .custom-dial-section .dial-container,
    .partners-grid-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* ============================================================
   HEADER VERTICAL ALIGNMENT AND TABLET LOGO FIXES
   ============================================================ */

/* Desktop Header Alignment */
@media (min-width: 1025px) {

    /* Vertically center the main header container */
    .elementor-5583 .elementor-element-f8058e6 {
        align-items: center !important;
        min-height: 0 !important;
    }

    /* Vertically center ALL direct column children inside header */
    .elementor-5583 .elementor-element-f8058e6>.e-con-child {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Logo column (98c8e1b) — force it to center the image vertically */
    .elementor-5583 .elementor-element-98c8e1b {
        display: flex !important;
        align-items: left !important;
        justify-content: flex-start !important;
    }

    /* The widget-container inside the logo column — must also center */
    .elementor-5583 .elementor-element-18490af,
    .elementor-5583 .elementor-element-18490af .elementor-widget-container {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Nav menu column (6f2877d) — also fully centered */
    .elementor-5583 .elementor-element-6f2877d {
        display: flex !important;
        align-items: center !important;
    }

    /* Button group column (9c75887) — also fully centered */
    .elementor-5583 .elementor-element-9c75887 {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }

    /* Remove any strange margins pushing things up/down */
    .elementor-5583 .elementor-widget-image,
    .elementor-5583 .elementskit-navbar-nav,
    #uc_blox_btn_group_elementor_cd55018 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Ensure the nav menu container centers its items */
    .elementor-5583 .elementor-element-357d208 .ekit-wid-con,
    .elementor-5583 .elementor-element-357d208 .elementskit-navbar-nav {
        display: flex !important;
        align-items: center !important;
    }

    /* Nav links vertical centering */
    .elementor-5583 .elementor-element-357d208 .elementskit-navbar-nav>li {
        display: flex !important;
        align-items: center !important;
    }

    .elementor-5583 .elementor-element-357d208 .elementskit-navbar-nav>li>a {
        display: flex !important;
        align-items: center !important;
        height: 24px !important;
        padding-top: 6px !important;
    }
}

/* Tablet & Mobile Header Layout Fixes */
@media (max-width:1024px) {

    /* Outer header row — logo left, hamburger right, reduce only left/right gap */
    .elementor-5583 .elementor-element-f8058e6 {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        padding-left: 4px !important;
        padding-right: 16px !important;
        padding-top: 16px !important;
        padding-bottom: 16px !important;
        min-height: 72px !important;
        box-sizing: border-box !important;
    }

    /* Logo — flush left, auto sizing with flex */
    .elementor-5583 .elementor-element-98c8e1b {
        margin: 0 !important;
        padding: 0 0 0 20px !important;
        display: flex !important;
        align-items: left !important;
        justify-content: flex-start !important;
        width: auto !important;
        max-width: 70% !important;
        flex: 1 1 auto !important;
    }

    /* Reset inner margins/paddings for the logo image widget container on mobile */
    .elementor-5583 .elementor-element-18490af,
    .elementor-5583 .elementor-element-18490af .elementor-widget-container,
    .elementor-5583 .elementor-element-18490af .elementor-widget-container a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
    }

    .elementor-5583 .elementor-element-98c8e1b img {
        width: 150px !important;
        max-width: 150px !important;
        height: auto !important;
        display: block !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    /* Hamburger column — flush right, auto width */
    .elementor-5583 .elementor-element-6f2877d {
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
        flex: 0 0 auto !important;
    }

    /* Increase hamburger icon size */
    .elementor-5583 .elementskit-menu-hamburger .ekit-menu-icon {
        font-size: 34px !important;
    }

    /* Remove extra spacing from menu widget itself */
    .elementor-5583 .elementor-element-95ddfb9,
    .elementor-5583 .elementor-element-95ddfb9 .elementor-widget-container,
    .elementor-5583 .ekit-wid-con {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }
}

/* ============================================================
   GLOBAL LINK OVERRIDES
   ============================================================ */
a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

/* ============================================================
   HAMBURGER ALIGNMENT & TABLET MENU FONT SIZES
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Increase font size of menu items on tablet */
    .elementor-5583 .elementskit-navbar-nav>li>a {
        font-size: 24px !important;
        padding: 18px 25px !important;
    }

    /* Make the mobile menu buttons inside the drawer larger too on tablet */
    .elementor-5583 .elementskit-navbar-nav>li#menu-item-6440>a,
    .elementor-5583 .elementskit-navbar-nav>li#menu-item-6436>a {
        font-size: 20px !important;
        padding: 15px 30px !important;
    }
}

@media (max-width: 1024px) {

    /* Force the hamburger widget strictly to the right side without breaking display: none */
    .elementor-5583 .elementor-widget-ekit-nav-menu:not(.elementor-hidden-tablet):not(.elementor-hidden-mobile),
    .elementor-5583 .elementor-widget-ekit-nav-menu>.elementor-widget-container,
    .elementor-5583 .ekit-wid-con {
        width: auto !important;
        display: flex;
        justify-content: flex-end !important;
        align-items: center !important;
    }

    .elementor-5583 .elementskit-menu-hamburger {
        margin-left: auto !important;
        margin-right: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding-right: 0px !important;
    }
}

/* ============================================================
   GLOBAL DESKTOP BUTTON OVERRIDES
   ============================================================ */

/* Ensure the button group sits inline horizontally on all pages */
.elementor-location-header #uc_blox_btn_group_elementor_cd55018 {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    gap: 0.75rem !important;
    align-items: center !important;
}

.elementor-location-header #uc_blox_btn_group_elementor_cd55018 a {
    white-space: nowrap !important;
}

/* Force Join Our Team button to always have a border on all pages */
.elementor-location-header .elementor-repeater-item-74b3267 {
    background-color: transparent !important;
    color: #1e4e49 !important;
    border: 2px solid #1e4e49 !important;
}

.elementor-location-header .elementor-repeater-item-74b3267:hover {
    background-color: #1e4e49 !important;
    color: #ffffff !important;
    opacity: 1 !important;
    box-shadow: none !important;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 9999;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
}


/* Hover */
.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}


/* Mobile */
@media(max-width:768px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        right: 18px;
        bottom: 18px;
        font-size: 26px;
    }
}

/* Global Button Shape Override: Force all buttons to have slight border-radius matching the dial-a-consultation section button */
.elementor-button,
.subpage-hero-btn,
.founder-cta a,
#uc_blox_btn_group_elementor_cd55018 a,
.elementor-widget-button .elementor-button,
.elementor-widget-button .elementor-button.elementor-button-link,
.subpage-form-submit,
.sub-acc-know-more,
a[style*="border-radius: 50px"],
a[style*="border-radius:50px"] {
    border-radius: 8px !important;
}

/* ============================================================
   GLOBAL TABLET RESPONSIVENESS FIX (768px - 1024px)
   ============================================================ */
@media (max-width: 1024px) {

    /* Reset description right padding from elementor settings to prevent off-center layout */
    .elementor-6 .elementor-element.elementor-element-1923b01>.elementor-widget-container {
        padding: 0 !important;
        margin: 15px auto !important;
        max-width: 90% !important;
    }

    /* 1. Unify side padding for all main containers on Tablet to match Header
       Exclude the header container (.elementor-5583) and its children to allow their specific minimal padding rules to take effect. */
    .elementor-element.e-con-boxed:not(.elementor-5583):not(.elementor-5583 *),
    .elementor-element.e-con-full:not(.elementor-5583):not(.elementor-5583 *),
    .subpage-hero-container,
    .blog-container,
    .single-blog-container,
    .founder-container,
    .contact-container {
        padding-left: 4% !important;
        padding-right: 4% !important;
    }

    /* 2. Enforce vertical flow for all primary structural containers that hold columns */
    /* .e-con.e-parent, */
    .why-taqseem-grid,
    .founder-grid,
    .contact-grid,
    .single-blog-container {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        height: auto !important;
    }

    /* 3. Ensure inner containers (columns) take full width in vertical flow.
       NOTE: Header logo and hamburger columns are explicitly exempted below
       (in the dedicated mobile header block) using child-combinator selectors
       with flex shorthand, which wins the cascade without !important collisions. */
    .e-con.e-child:not(.elementor-element-98c8e1b):not(.elementor-element-6f2877d) {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Force line breaks on mobile/tablet for hero heading */
    .hero-br {
        display: block !important;
    }
}

/* ============================================================
   HERO HEADING STYLE OVERRIDES
   ============================================================ */
.hero-ai-powered {
    color: #000000 !important;
    white-space: nowrap !important;
}

.hero-retail-ecommerce {
    color: #C74E5C !important;
    white-space: nowrap !important;
}

.hero-consulting {
    white-space: nowrap !important;
}

.hero-br {
    display: none !important;
}

/* ============================================================
   GLOBAL RESPONSIVE VISIBILITY HELPERS
   ============================================================ */
@media (min-width: 1025px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
}




/* SINGLE CLEAN FIX FOR HERO TABS AND VIDEO CONTAINERS */
@media (max-width:1024px) {

    /* Only parent container padding */
    .elementor-element-b3655e8,
    .elementor-element-6c16aed,
    .elementor-element-17445f1 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    /* Remove all inner spacing */
    .elementor-element-b3655e8 .e-con-inner,
    .elementor-element-6c16aed .e-con-inner,
    .elementor-element-17445f1 .e-con-inner,
    .elementor-element-d2b1d49,
    .elementor-element-133cdeb,
    .elementor-element-1844dc4,
    .elementor-element-d2b1d49 .e-con-inner,
    .elementor-element-133cdeb .e-con-inner,
    .elementor-element-1844dc4 .e-con-inner,
    .theplus-tabs-content-wrapper .elementor-widget-container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    /* Video full width, auto aspect-ratio, and no fixed height constraints */
    .theplus-tabs-content-wrapper .elementor-wrapper {
        height: auto !important;
        min-height: unset !important;
        /* aspect-ratio: 2.33333 !important; */
    }

    .theplus-tabs-content-wrapper .elementor-video {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        display: block !important;
        object-fit: cover !important;
    }

    /* Tab 2 specific overrides */
    .elementor-3628 .elementor-element-a6e96f8 .elementor-wrapper {
        width: 100% !important;
        aspect-ratio: 1.33333 !important;
        height: 100% !important;
        padding-bottom: 0 !important;
    }

    .elementor-3628 .elementor-element-a6e96f8 video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}

/* Tab 2 Video Wrapper specific aspect ratio */
.elementor-3628 .elementor-element.elementor-element-a6e96f8 .elementor-wrapper {
    aspect-ratio: 2.33333 !important;
}

/* Mobile-only styles for services section */
@media (max-width: 767px) {
    .custom-services-section .panel-img {
        max-width: 80% !important;
        margin: 0 auto 15px auto !important;
    }
}