:root {
    --primary-color: #FD6900;
    --primary-hover: #e05c00;
    --secondary-color: #111827;
    --secondary-hover: #1F2937;
    --accent-color: #FD6900;
    --gold-highlight: #FD6900;
    --success-color: #10B981;
    --danger-color: #EF4444;
    --bg-light: #FFFDF9;
    --bg-white: #FFFFFF;
    --bg-gray: #F8FAFC;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --font-heading: 'Arial';
    --font-body: 'Arial';
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.3);
    --primary-gradient: #FD6900;
    --dark-gradient: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 35px rgba(253, 105, 0, 0.2);
    --card-radius: 20px;
    --button-radius: 14px;
    --input-radius: 14px;
    --hero-img-radius: 28px;
    --gallery-radius: 20px;
}

[data-theme="dark"] {
    --bg-light: #0B0F17;
    --bg-white: #111827;
    --bg-gray: #1F2937;
    --text-dark: #F9FAFB;
    --text-muted: #9CA3AF;
    --border-color: #374151;
    --glass-bg: rgba(17, 24, 39, 0.92);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

html {
    background-color: #0B0F19;
}

body {
    font-family: var(--font-body);
    background-color: #FFFFFF;
    color: var(--text-dark);
    line-height: 1.75;
    font-size: 0.9375rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0;
}

/* Container Layout System (Max-Width 1320px) */
.container, .container-lg, .container-xl, .container-xxl {
    max-width: 1320px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* Override - footer action bar and navbar side padding */
.footer-three-action-bar .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
}
.agency-navbar .container-fluid {
    padding-left: clamp(1.2rem, 3.5vw, 3rem) !important;
    padding-right: clamp(1.2rem, 3.5vw, 3rem) !important;
    max-width: 100% !important;
}

.container-inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Typography Hierarchy (Poppins & Inter) */
h1, .h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 4rem; /* 64px Desktop */
    color: var(--secondary-color);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

@media (max-width: 991px) {
    h1, .h1 { font-size: 3rem; } /* 48px Tablet */
}

@media (max-width: 575px) {
    h1, .h1 { font-size: 2.125rem; } /* 34px Mobile */
}

h2, .h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem; /* 48px Section Heading */
    color: var(--secondary-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (max-width: 991px) {
    h2, .h2 { font-size: 2.25rem; }
}

@media (max-width: 575px) {
    h2, .h2 { font-size: 1.75rem; }
}

h3, .h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.125rem; /* 34px Sub Heading */
    color: var(--secondary-color);
    line-height: 1.25;
}

h4, .h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem; /* 24px Card Heading */
    color: var(--secondary-color);
    line-height: 1.3;
}

h5, .h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

h6, .h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary-color);
}

p {
    font-family: var(--font-body);
    font-size: 16px; /* 16px Body */
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.small, small {
    font-size: 0.875rem; /* 14px Small */
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
    color: var(--text-muted);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary-dark {
    color: var(--secondary-color) !important;
}

.text-gold {
    color: var(--gold-highlight) !important;
}

.text-success-green {
    color: var(--success-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light-orange {
    background-color: var(--bg-light) !important;
}

.bg-gray-section {
    background-color: var(--bg-gray) !important;
}

/* Section Spacing & Rhythm (100px gap, 60px mobile, 120px top/bottom) */
section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.section-padding-lg {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section-padding-lg {
        padding: 70px 0;
    }
}

/* Section Badges & Titles */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .section-title { font-size: 2.25rem; }
}

/* Input Fields & Forms (14px radius, Inter font) */
.form-control,
.form-select {
    font-family: var(--font-body);
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    border-radius: var(--input-radius) !important;
    border: 1px solid var(--border-color);
    background-color: #FFFFFF;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
    border-radius: 12px !important;
    border: 1px solid #E2E8F0;
    transition: all 0.25s ease;
}

.input-group .form-control {
    margin-bottom: 0 !important;
    border-radius: 0 12px 12px 0 !important;
}

.input-group .input-group-text {
    border-radius: 12px 0 0 12px !important;
    background: #F8FAFC;
    border-color: #E2E8F0;
    padding: 0.7rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
}

form button[type="submit"] {
    margin-top: 0.5rem !important;
}

/* Page horizontal safe area */
.container,
.container-fluid {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

html {
    font-size: 14.5px;
}

body {
    font-size: 0.95rem;
    padding-bottom: 46px !important;
}

/* Top Orange Bar */
.top-orange-bar {
    background: #3072F0;
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0;
    transition: transform 0.35s ease, opacity 0.3s ease, max-height 0.35s ease;
    max-height: 48px;
    min-height: 40px;
    overflow: hidden;
    z-index: 1040;
    display: flex;
    align-items: center;
}

.top-orange-bar .container {
    min-height: 40px;
    display: flex !important;
    align-items: center !important;
    padding-top: 6px;
    padding-bottom: 6px;
}

body.scrolled .top-orange-bar {
    transform: translateY(-100%);
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

/* Sticky Navbar */
.agency-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    padding: 0.6rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Reference Matching Flyout Mega Menu (Vibrant Orange Background #FD6900 & Pure White Text) */
.services-flyout-parent {
    position: relative;
}

.services-flyout-container {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: none !important;
    border-radius: 4px;
    overflow: visible !important;
    max-height: none !important;
    border: none !important;
}

.services-flyout-parent:hover .services-flyout-container {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-parent-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    background: #FD6900; /* Exact Vibrant Brand Orange matching screenshot */
    width: max-content;
    min-width: 250px;
    border-radius: 4px;
    position: relative;
    box-shadow: none !important;
    border: none !important;
}

.parent-menu-item {
    position: relative !important;
    border-bottom: none;
}

.parent-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.86rem;
    text-decoration: none !important;
    white-space: nowrap;
    gap: 15px;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.parent-menu-item:hover > .parent-link {
    background: #D95300; /* Darker orange active highlight matching screenshot */
    padding-left: 18px;
    font-weight: 700;
}

.parent-link .chevron-icon {
    font-size: 0.82rem;
    color: #FFFFFF;
    transition: transform 0.2s ease;
}

.parent-menu-item:hover > .parent-link .chevron-icon {
    transform: translateX(3px);
    color: #FFFFFF;
}

/* Secondary Child Flyout Box (Aligns exactly in front of the hovered parent item) */
.services-child-box {
    position: absolute !important;
    left: 100% !important;
    top: 0 !important;
    width: max-content;
    min-width: 280px;
    background: #FD6900; /* Exact Vibrant Brand Orange matching screenshot */
    display: none;
    flex-direction: column;
    box-shadow: none !important;
    border-radius: 0 4px 4px 4px;
    padding: 4px 0;
    z-index: 1060;
    min-height: auto !important;
    height: auto !important;
    white-space: nowrap;
    border: none !important;
}

.parent-menu-item:hover .services-child-box {
    display: flex;
}

.services-child-box a {
    display: block;
    padding: 8px 18px;
    color: #FFFFFF !important;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s ease, padding-left 0.2s ease;
    border-bottom: none;
}

.services-child-box a:hover {
    background: #D95300; /* Matching active darker orange highlight */
    padding-left: 20px;
    font-weight: 700;
}

/* Right-Edge Navigation Protection (Left Opening Flyout for rightmost nav items) */
.services-flyout-parent.flyout-left .services-flyout-container,
.services-flyout-parent:nth-last-child(-n+2) .services-flyout-container {
    left: auto;
    right: 0;
}

.services-flyout-parent.flyout-left .services-child-box,
.services-flyout-parent:nth-last-child(-n+2) .services-child-box {
    left: auto !important;
    right: 100% !important;
    border-radius: 4px 0 0 4px;
    box-shadow: none !important;
}

/* Pay With PayU Button */

.agency-navbar .nav-link {
    font-weight: 700;
    color: #1E293B;
    padding: 0.55rem 0.95rem;
    font-size: 1.08rem; /* Increased Header Menu Font Size */
    white-space: nowrap;
    transition: all 0.25s ease;
    position: relative;
}

.agency-navbar .nav-link:hover,
.agency-navbar .nav-link.active {
    color: var(--primary-color);
}

.agency-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.85rem;
    right: 0.85rem;
    height: 2.5px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

/* Logo Styling */
.dti-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.dti-logo-img:hover {
    transform: scale(1.02);
}

/* =====================================================
   PREMIUM MEGA MENU SYSTEM & SUB-ITEMS
   ===================================================== */

.mega-menu-parent {
    position: static;
}

.mega-menu-trigger .bi-chevron-down {
    transition: transform 0.25s ease;
    display: inline-block;
}

.mega-menu-parent:hover .mega-menu-trigger .bi-chevron-down,
.mega-menu-parent.open .mega-menu-trigger .bi-chevron-down {
    transform: rotate(180deg);
}

.mega-menu-panel {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    border-top: 2px solid #f26522;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 20px 50px rgba(11, 15, 25, 0.12);
    z-index: 1035;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
}

.mega-menu-parent:hover .mega-menu-panel,
.mega-menu-panel.mega-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.mega-col {
    padding: 0 1.15rem;
}

.mega-col-border {
    border-right: 1px solid #F1F5F9;
}

.mega-col-label {
    font-size: 0.725rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0F172A;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(242, 101, 34, 0.2);
    margin-bottom: 0.85rem;
}

.mega-group-box {
    margin-bottom: 0.75rem;
}

.mega-group-title {
    font-size: 0.735rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #334155;
    margin-bottom: 0.25rem;
    display: block;
}

.mega-subitem {
    display: block;
    font-size: 0.81rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: all 0.22s ease;
    line-height: 1.3;
}

.mega-subitem:hover {
    color: #f26522;
    background: rgba(242, 101, 34, 0.08);
    transform: translateX(3px);
}

.mega-simple-dropdown .dropdown-item {
    font-weight: 600;
    color: #334155;
    transition: all 0.2s ease;
}

.mega-simple-dropdown .dropdown-item:hover {
    background: rgba(242, 101, 34, 0.08);
    color: #f26522;
}

/* Individual menu item row */
.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.22s ease;
    margin-bottom: 2px;
    cursor: pointer;
}

.mega-item:hover {
    background: #F8FAFC;
    transform: translateX(4px);
}

/* Icon box inside mega item */
.mega-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.mega-item:hover .mega-item-icon {
    transform: scale(1.08);
}

/* Text inside mega item */
.mega-item-text {
    display: flex;
    flex-direction: column;
}

.mega-item-title {
    font-size: 0.845rem;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.25;
    transition: color 0.2s ease;
}

.mega-item:hover .mega-item-title {
    color: #f26522;
}

.mega-item-desc {
    font-size: 0.75rem;
    color: #94A3B8;
    margin-top: 1px;
    line-height: 1.3;
}

/* Featured CTA Card (Col 4) */
.mega-featured-card {
    background: linear-gradient(135deg, #0B0F19 0%, #1a2540 100%);
    border-radius: 16px;
    padding: 1.4rem 1.25rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(242, 101, 34, 0.3);
}

.mega-featured-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(242, 101, 34, 0.15);
    border-radius: 50%;
}

.mega-featured-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.mega-featured-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.mega-featured-desc {
    font-size: 0.76rem;
    color: #94A3B8;
    line-height: 1.45;
    margin-bottom: 1rem;
}

.mega-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f26522 0%, #ff7733 100%);
    color: #FFFFFF !important;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.35);
}

.mega-featured-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 101, 34, 0.5);
}

/* Insight link at bottom of col 4 */
.mega-insight-card {
    padding: 0.85rem 0;
}

.mega-insight-link {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.mega-insight-link:hover {
    color: #f26522;
}

/* Backdrop overlay */
.mega-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 15, 25, 0.35);
    z-index: 1034;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
    pointer-events: none;
}

.mega-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
@media (max-width:767px){

    .top-orange-bar .d-flex{
        flex-wrap:wrap;
    }

    .top-orange-bar .d-flex > div{
        width:100% !important;
        text-align:center !important;
        margin:2px 0;
    }

}
/* Responsive — collapse mega menu on mobile */
@media (max-width: 991.98px) {
    .mega-menu-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid #F1F5F9;
        display: none;
        pointer-events: auto;
    }

    .mega-menu-parent.open .mega-menu-panel {
        display: block;
    }

    .mega-menu-inner {
        padding: 0.75rem 0;
    }

    .mega-col {
        padding: 0.5rem 0;
        border-right: none !important;
        border-bottom: 1px solid #F1F5F9;
    }

    .mega-featured-card { display: none; }
    .mega-menu-backdrop { display: none; }
}

/* Global Button Standards: #FF6F00 theme, 10px border radius, 6px padding */
/* Global Button Design System (14px radius, 16px font-size, 600 weight) */
.btn,
.btn-primary,
.btn-secondary,
.btn-orange,
.btn-outline-orange,
.btn-outline-primary,
.btn-outline-secondary,
.btn-dark,
.btn-outline-dark,
.btn-light,
form button[type="submit"] {
    border-radius: var(--button-radius) !important;
    padding: 0.75rem 1.75rem !important;
    font-family: var(--font-heading);
    font-size: 1rem !important; /* 16px */
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-primary, .btn-orange {
    background: #FD6900 !important;
    border: none !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(253, 105, 0, 0.28) !important;
}

.btn-primary:hover, .btn-orange:hover {
    background: #e05c00 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(253, 105, 0, 0.4) !important;
}

.btn-secondary, .btn-dark {
    background: var(--dark-gradient) !important;
    border: none !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.2) !important;
}

.btn-secondary:hover, .btn-dark:hover {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.35) !important;
}

.btn-outline-primary, .btn-outline-orange {
    border: 2px solid #FD6900 !important;
    color: #FD6900 !important;
    background: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

.btn-outline-primary:hover, .btn-outline-orange:hover {
    background: #FD6900 !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3) !important;
}

.btn-ghost {
    background: transparent !important;
    border: none !important;
    color: var(--secondary-color) !important;
}

.btn-ghost:hover {
    background: rgba(255, 107, 0, 0.08) !important;
    color: var(--primary-color) !important;
}

/* Card Design System (20px radius, 32px inside padding, hover lift, soft shadows) */
.card, .service-card, .feature-card, .testimonial-card, .team-card, .stat-card, .process-card, .pricing-card {
    border-radius: var(--card-radius) !important;
    padding: 32px !important;
    background: #FFFFFF;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--card-shadow);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.card:hover, .service-card:hover, .feature-card:hover, .testimonial-card:hover, .team-card:hover, .stat-card:hover, .process-card:hover, .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(255, 107, 0, 0.3) !important;
}

/* Background Design Systems (Soft SVG Pattern, Orange Glow Effects, Blur Gradients) */
.bg-hero-glow {
    background-color: #FFFFFF;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(253, 186, 59, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 138, 38, 0.04) 0%, transparent 60%);
    position: relative;
}

.blur-shape-orange {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 0, 0.12);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.blur-shape-gold {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(253, 186, 59, 0.12);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.dot-pattern-bg {
    background-image: radial-gradient(rgba(17, 24, 39, 0.07) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

/* Dynamic Hero Section */
.hero-section {
    padding: 80px 0 80px !important;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-heading {
    font-size: 3.5rem; /* smaller desktop size */
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
    .hero-heading { font-size: 2.8rem; }
}

@media (max-width: 575px) {
    .hero-heading { font-size: 1.95rem; }
}

.hero-contact-card .form-control,
.hero-contact-card .form-control-sm,
.hero-contact-card .form-select,
.hero-contact-card .form-select-sm,
.hero-contact-card textarea {
    border-radius: 0 !important;
}

.hero-contact-card {
    border-radius: 0 !important;
    overflow: hidden;
}

.hero-contact-card .form-control,
.hero-contact-card .form-control-sm,
.hero-contact-card .form-select,
.hero-contact-card .form-select-sm,
.hero-contact-card textarea {
    border-radius: 0 !important;
}

.hero-image-frame {
    border-radius: var(--hero-img-radius) !important;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(17, 24, 39, 0.12);
    border: 1px solid rgba(229, 231, 235, 0.8);
    transition: transform 0.4s ease;
}

.hero-image-frame:hover {
    transform: scale(1.015);
}

/* Dynamic Hero Background Slider with Zoom-In Zoom-Out Ken Burns Effect */
.hero-slider-section {
    position: relative;
    padding: 30px 0 50px !important;
    overflow: hidden;
    background-color: #0B0F19;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 3.5s ease-out;
    transform: scale(1);
}

.hero-bg-slide.active {
    opacity: 0.85;
    transform: scale(1.12);
}

.hero-bg-slide.active.zoom-out {
    transform: scale(1);
}

.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.45) 0%, rgba(18, 25, 44, 0.62) 100%);
    z-index: 2;
}

.bg-ai-hero {
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.9) 0%, rgba(18, 25, 44, 0.94) 100%),
                url('../images/hero_bg_1.jpg') center/cover no-repeat;
}

.bg-ai-about {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.97) 100%),
                url('../images/bg-about-corporate.jpg') center/cover no-repeat;
}

.bg-ai-cta {
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.92) 0%, rgba(18, 25, 44, 0.95) 100%),
                url('../images/bg-cta-dark.jpg') center/cover no-repeat;
}

.bg-ai-calculator {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.97) 100%),
                url('../images/bg-calculator-tech.jpg') center/cover no-repeat;
}

/* Hero Glass Card */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 22px;
    padding: 2.25rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-dashboard-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    border: 1.5px solid rgba(242, 101, 34, 0.3);
}

.hero-dashboard-preview img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-dashboard-preview:hover img {
    transform: scale(1.03);
}

.floating-growth-pill {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(18, 25, 44, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.55rem 1.15rem;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 0.825rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Auto-Scrolling Logo Marquee Slider */
.logo-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    background: #FFFFFF;
    padding: 26px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
}

.logo-marquee-wrapper::before,
.logo-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF, transparent);
}

.logo-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF, transparent);
}

.logo-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: scrollMarquee 28s linear infinite;
}

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

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 8px 22px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(242, 101, 34, 0.12);
    transform: translateY(-2px);
}

.logo-item img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(15%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

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

/* Marketplace Cards */
.marketplace-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 2rem 1.6rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.marketplace-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 101, 34, 0.4);
    box-shadow: var(--hover-shadow);
}

.marketplace-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.12) 0%, rgba(255, 119, 51, 0.05) 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: 0 auto 1.15rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.marketplace-card:hover .marketplace-icon-box {
    transform: scale(1.06);
    background: var(--primary-gradient);
    color: #FFFFFF;
}

/* SG Feature Validation Section */
.sg-validation-section {
    background: #FFFFFF;
    border-radius: 26px;
    padding: 3.25rem 2.75rem;
    box-shadow: 0 18px 50px rgba(18, 25, 44, 0.06);
    border: 1px solid #E2E8F0;
}

.sg-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1rem;
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    height: 100%;
}

.sg-feature-item:hover {
    background: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(242, 101, 34, 0.1);
    transform: translateY(-2px);
}

.sg-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(242, 101, 34, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* 4-Step Growth Model */
.growth-step-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.15rem 1.5rem;
    border: 1px solid #E2E8F0;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.growth-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow);
}

.step-number-badge {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: var(--primary-gradient);
    color: #FFFFFF;
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 18px rgba(242, 101, 34, 0.35);
}

/* Let's Talk Numbers Section */
.numbers-section {
    background: linear-gradient(135deg, #FFF7F2 0%, #FFEEE5 100%);
    padding: 85px 0;
    border-top: 1px solid #FFE4D6;
    border-bottom: 1px solid #FFE4D6;
}

.number-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.25rem 1.25rem;
    text-align: center;
    border: 1px solid #FFE4D6;
    box-shadow: 0 10px 28px rgba(242, 101, 34, 0.07);
    transition: transform 0.3s ease;
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(242, 101, 34, 0.16);
}

.number-count {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Ready to Grow Your Business Section */
.ready-grow-card {
    border-radius: 26px;
    padding: 3.75rem 3.25rem !important;
    color: #FFFFFF;
    box-shadow: 0 22px 55px rgba(11, 15, 25, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.ready-grow-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF !important;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.32);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.48);
}

/* Compact Accordion FAQs */
.custom-faq-accordion .accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: 18px !important;
    margin-bottom: 1.15rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.custom-faq-accordion .accordion-button {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    background: #FFFFFF;
    padding: 1.25rem 1.6rem;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: rgba(242, 101, 34, 0.06);
    box-shadow: none;
}

/* Agency Card Styling */
.agency-card {
    background: #FFFFFF;
    border-radius: 22px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    padding: 2.25rem;
}

/* Sidebar Box */
.sidebar-sticky-box {
    background: #FFFFFF;
    border-radius: 22px;
    border: 1px solid #E2E8F0;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

/* Footer */
.agency-footer {
    background: #0B0F19;
    color: #94A3B8;
    padding: 50px 0 30px;
    margin-top: 0 !important;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.agency-footer::after {
    display: none !important;
}

.agency-footer h5 {
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.35rem;
}

.agency-footer a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.agency-footer a:hover {
    color: var(--primary-color);
}

/* Floating Action Hub (Enquiry, Call, WhatsApp Chatbot & Back to Top) */
.floating-action-hub {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.floating-action-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 1.4rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.floating-action-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.floating-action-btn .tooltip-label {
    position: absolute;
    right: 64px;
    background: #0B0F19;
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-action-btn:hover .tooltip-label {
    opacity: 1;
    visibility: visible;
    right: 60px;
}

.btn-float-enquiry {
    background: linear-gradient(135deg, #f26522 0%, #ff7733 100%);
}

.btn-float-call {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
}

.btn-float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.btn-float-chatbot {
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
}

.btn-float-top {
    background: #0F172A;
    opacity: 0;
    visibility: hidden;
}

body.scrolled .btn-float-top {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Interactive Chatbot Box */
.whatsapp-chat-box {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 350px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    z-index: 1060;
    display: none;
    animation: slideUpFade 0.35s ease forwards;
}

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

.chat-box-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    color: #FFFFFF;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-avatar-status {
    position: relative;
}

.chat-avatar-status .status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #25D366;
    border: 2px solid #075E54;
    border-radius: 50%;
}

.chat-box-body {
    background: #E5DDD5;
    padding: 1.25rem;
    min-height: 220px;
    max-height: 320px;
    overflow-y: auto;
}

.chat-bubble {
    background: #FFFFFF;
    padding: 0.85rem 1rem;
    border-radius: 0 14px 14px 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 0.86rem;
    color: #1E293B;
    margin-bottom: 0.85rem;
    line-height: 1.45;
}

.chat-bubble.bot-reply {
    background: #DCF8C6;
    border-radius: 14px 0 14px 14px;
    margin-left: auto;
}

.chat-quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.chat-option-btn {
    background: #FFFFFF;
    border: 1px solid #128C7E;
    color: #128C7E;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-option-btn:hover {
    background: #128C7E;
    color: #FFFFFF;
}

.chat-box-footer {
    padding: 0.75rem 1rem;
    background: #F0F2F5;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #E2E8F0;
}

/* Custom Glass Quick Enquiry Modal */
.modal-glass-content {
    background: #FFFFFF;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden;
}

.modal-glass-header {
    background: #0B0F19 !important;
    color: #FFFFFF;
    border-radius: 12px 12px 0 0 !important;
    padding: 0.75rem 1.25rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Security & Honeypot Utilities */
.honeypot-field {
    display: none !important;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

.security-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Blog Card Hover Animation */
.blog-card {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12) !important;
}

.blog-card:hover .blog-card-img-wrapper img {
    transform: scale(1.06);
}

.hover-orange:hover {
    color: var(--primary-color) !important;
}

@media (max-width: 991.98px) {
    h1, .h1 { font-size: 1.95rem; }
    h2, .h2 { font-size: 1.55rem; }
    .hero-slider-section h1 { font-size: 2.1rem; }
    .section-title { font-size: 1.65rem; }
    .ready-grow-card { padding: 2.5rem 1.75rem !important; }
    .whatsapp-chat-box { width: 310px; right: 15px; bottom: 85px; }
}

/* =====================================================
   ULTRA-PREMIUM MODERN DESIGN SYSTEM & UI LAYOUT
   ===================================================== */

/* Ultra-Modern AI Hero Banner */
.bg-ai-hero-ultra {
    background: linear-gradient(135deg, #0B0F19 0%, #161F33 40%, #2A170A 100%);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.bg-ai-hero-ultra::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.25) 0%, rgba(255, 111, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}

.bg-ai-hero-ultra::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(50px);
}

.hero-mesh-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
}

.hero-content-relative {
    position: relative;
    z-index: 2;
}

/* Sub-Nav Pill Navigation Bar */
.subnav-pills-bar {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.subnav-pill-item {
    color: #475569;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 22px;
    border-radius: 40px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.subnav-pill-item:hover {
    color: var(--primary-color);
    background: rgba(255, 111, 0, 0.06);
}

.subnav-pill-item.active {
    background: var(--primary-gradient);
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(255, 111, 0, 0.35);
}

/* Premium Contact Header Section */
.ultra-header-box {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3.5rem;
}

.ultra-header-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 900;
    color: #0F172A;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.ultra-header-title .text-gradient-orange {
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ultra-header-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 0.6rem;
}

/* Contact Info 4-Grid Cards */
.contact-info-card-premium {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-info-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.contact-info-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(255, 111, 0, 0.12);
    border-color: rgba(255, 111, 0, 0.3);
}

.contact-info-card-premium:hover::before {
    background: var(--primary-gradient);
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 111, 0, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.contact-info-card-premium:hover .contact-icon-circle {
    background: var(--primary-gradient);
    color: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.35);
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.4rem;
}

.contact-info-text {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-info-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.contact-info-link:hover {
    gap: 8px;
    color: #E66400;
}

/* Marketplace Growth Services Grid */
.marketplace-card-ultra {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.marketplace-card-ultra:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
    border-color: rgba(255, 111, 0, 0.35);
}

.marketplace-badge-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 111, 0, 0.08);
    color: var(--primary-color);
}

.marketplace-logo-holder {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    margin-top: 0.5rem;
    padding: 10px;
    border-radius: 16px;
    background: #F8FAFC;
    transition: transform 0.3s ease;
}

.marketplace-card-ultra:hover .marketplace-logo-holder {
    transform: scale(1.08);
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.marketplace-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.marketplace-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.35rem;
}

.marketplace-card-desc {
    font-size: 0.82rem;
    color: #64748B;
    line-height: 1.45;
    margin-bottom: 1.25rem;
}

.btn-marketplace-explore {
    width: 100%;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 30px;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    color: #1E293B;
    transition: all 0.25s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.marketplace-card-ultra:hover .btn-marketplace-explore {
    background: var(--primary-gradient);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

/* Why Contact Us Grid Cards */
.why-card-ultra {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 1.8rem 1.6rem;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.why-card-ultra:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(255, 111, 0, 0.25);
}

.why-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 111, 0, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.15rem;
}

.why-card-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.why-card-desc {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

/* Dark Glass Banner "Ready To Grow Your Business?" */
.ready-grow-banner-ultra {
    background: linear-gradient(135deg, #090D16 0%, #151C2C 50%, #291508 100%);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    box-shadow: 0 25px 60px rgba(11, 15, 25, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ready-grow-banner-ultra::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.3) 0%, rgba(255, 111, 0, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.ready-grow-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.ready-grow-subtitle {
    font-size: 1.05rem;
    color: #94A3B8;
    line-height: 1.6;
    max-width: 650px;
    margin: 0;
}

.btn-ultra-orange {
    background: var(--primary-gradient);
    color: #FFFFFF !important;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 111, 0, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
}

.btn-ultra-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 111, 0, 0.55);
    background: linear-gradient(135deg, #FF7F1A 0%, #FFB01A 100%);
}

.btn-ultra-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    backdrop-filter: blur(10px);
}

.btn-ultra-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

/* 4-Step Growth Model Cards */
.growth-step-card-ultra {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.growth-step-card-ultra:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
    border-color: rgba(255, 111, 0, 0.35);
}

.growth-step-img-box {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #0F172A;
}

.growth-step-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.growth-step-card-ultra:hover .growth-step-img-box img {
    transform: scale(1.08);
    opacity: 1;
}

.growth-step-num-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary-gradient);
    color: #FFFFFF;
    font-weight: 900;
    font-size: 0.82rem;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.4);
    letter-spacing: 0.05em;
}

.growth-step-body {
    padding: 1.6rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.growth-step-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.growth-step-desc {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

/* Stats Counter 4 Cards */
.stats-card-ultra {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.stats-card-ultra:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(255, 111, 0, 0.12);
    border-color: rgba(255, 111, 0, 0.3);
}

.stats-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 111, 0, 0.08);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.stats-number {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 900;
    color: #0F172A;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stats-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748B;
    margin: 0;
}

/* Start Selling Lead Form Section */
.lead-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.1rem;
}

.lead-benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 111, 0, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.lead-benefit-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.15rem;
}

.lead-benefit-text {
    font-size: 0.83rem;
    color: #64748B;
    margin: 0;
    line-height: 1.45;
}

.form-card-ultra {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
}

.form-label-ultra {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.4rem;
}

.form-control-ultra,
.form-select-ultra {
    border-radius: 12px !important;
    border: 1px solid #CBD5E1 !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.88rem !important;
    background: #F8FAFC !important;
    transition: all 0.25s ease !important;
}

.form-control-ultra:focus,
.form-select-ultra:focus {
    background: #FFFFFF !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.15) !important;
}

/* ================================================================= */
/* HERO LIGHT ANIMATED IMAGE SLIDER WITH KEN-BURNS ZOOM IN/OUT EFFECT */
/* ================================================================= */
.hero-light-slider-section {
    min-height: 580px;
    position: relative;
    background: #FFF8F3;
}

.hero-bg-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenburns-zoom 25s infinite ease-in-out;
}

.hero-slide-bg:nth-child(1) { animation-delay: 0s; }
.hero-slide-bg:nth-child(2) { animation-delay: 5s; }
.hero-slide-bg:nth-child(3) { animation-delay: 10s; }
.hero-slide-bg:nth-child(4) { animation-delay: 15s; }
.hero-slide-bg:nth-child(5) { animation-delay: 20s; }

@keyframes kenburns-zoom {
    0% {
        opacity: 0;
        transform: scale(1.0);
    }
    4% {
        opacity: 0.9;
    }
    20% {
        opacity: 0.9;
    }
    24% {
        opacity: 0;
        transform: scale(1.12);
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}

.hero-light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.72) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}

.hero-light-slider-section {
    min-height: 500px !important;
    padding-top: 10px !important;
    padding-bottom: 25px !important;
    display: flex;
    align-items: flex-start !important;
}

.social-icon-btn {
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #94A3B8 !important;
    font-size: 0.85rem !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

.social-icon-btn:hover {
    background-color: #FF5722 !important;
    border-color: #FF5722 !important;
    color: #FFFFFF !important;
}

.hero-light-slider-section .hero-bg-slider-track {
    position: absolute !important;
}

/* Hero form card sharp corners */
.hero-form-card {
    border-radius: 0 !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12) !important;
}

/* ================================================================= */
/* FAQ SECTION - 3 COLUMN DESIGN (Category Tabs | Image | Q&A)        */
/* ================================================================= */
.faq-homepage-section {
    background: #F8FAFC;
    padding: 80px 0;
}

.faq-category-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
}

.faq-category-item {
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: #FFFFFF;
    color: #374151;
    border-bottom: 1px solid #E2E8F0;
    transition: all 0.2s ease;
    border: none;
    text-align: left;
    width: 100%;
}

.faq-category-item:last-child {
    border-bottom: none;
}

.faq-category-item:hover {
    background: #FFF3ED;
    color: var(--primary-color);
}

.faq-category-item.active {
    background: var(--primary-color);
    color: #FFFFFF;
}

.faq-center-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.faq-question-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-question-item {
    padding: 14px 16px;
    border-bottom: 1px solid #E2E8F0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question-item:last-child {
    border-bottom: none;
}

.faq-question-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.faq-question-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
    line-height: 1.45;
}

.faq-plus-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.faq-question-item:hover .faq-plus-btn,
.faq-question-item.open .faq-plus-btn {
    background: var(--primary-color);
    color: #FFFFFF;
}

.faq-answer-text {
    font-size: 0.83rem;
    color: #64748B;
    margin: 8px 0 0 0;
    line-height: 1.55;
    display: none;
}

.faq-question-item.open .faq-answer-text {
    display: block;
}

/* Marketplace Solutions Card Redesign (Image 5 style) */
.mktpl-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.mktpl-card:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.12);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-4px);
}

.mktpl-logo-wrap {
    width: 165px;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    background: transparent;
}

.mktpl-logo-wrap img {
    max-width: 165px;
    max-height: 155px;
    object-fit: contain;
}

.mktpl-title-line1 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    line-height: 1.3;
}

.mktpl-title-line2 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    line-height: 1.3;
}

.mktpl-title-platform {
    font-size: 0.95rem;
    font-weight: 900;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
    margin-top: 2px;
}

/* ================================================================= -->
/* LARGER MARKETPLACE LOGOS (TRANSPARENT BACKGROUND & EQUAL SIZE)     -->
/* ================================================================= */
/* LOGO MARQUEE SLIDER (Faster speed & reduced gap between logos) */
/* ================================================================= */
/* Wrapper */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
}

/* Moving Track */
.logo-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 40px;
    animation: logoMarquee 15s linear infinite;
    will-change: transform;
}

.logo-marquee-track:hover {
    animation-play-state: running !important;
}
/* Infinite Animation */
@keyframes logoMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Logo Box */
.logo-item-large {
    flex: 0 0 auto;
    width: 200px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Logo Image */
.logo-item-large img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}/* ================================================================= -->
/* 2 RIGHT SIDE FLOATING ACTION BUTTONS (WHATSAPP & CALL - IMAGE 2)  -->
/* ================================================================= */
.floating-action-hub-two {
    position: fixed;
    right: 16px;
    bottom: 60px; /* sits above footer 3-btn bar (46px) */
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    text-decoration: none !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-float-wa {
    background-color: #16C75A !important;
}

.btn-float-call {
    background-color: #FD6900 !important;
}

.float-circle-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* ================================================================= */
/* BOTTOM FOOTER ACTION BUTTONS BAR (Exact match to Image 1)         */
/* ================================================================= */
.footer-three-action-bar {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    z-index: 9997 !important;
    display: flex !important;
    border-top: 3px solid #FD6900 !important;
    background: #181818;
}

.footer-three-action-bar > .container-fluid {
    padding: 0 !important;
    width: 100% !important;
}

.action-bar-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.4rem 0.5rem !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: filter 0.2s ease;
    height: 48px;
    gap: 0.35rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
}

.action-bar-item:hover {
    filter: brightness(1.1);
    color: #FFFFFF;
    text-decoration: none;
}

.bg-dark-black {
    background-color: #181818 !important;
}

.bg-wa-green {
    background-color: #16C75A !important;
}

.bg-enquiry-orange {
    background-color: #FD6900 !important;
}

.action-bar-flame-btn {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-left: 1px solid #E2E8F0 !important;
    background: #FFFFFF !important;
    cursor: pointer;
    transition: background 0.2s ease;
}

.action-bar-flame-btn:hover {
    background: #F8FAFC !important;
}

/* Vertical Quick Enquiry Side Tab (Image 5) */
.quick-enquiry-side-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: #FD6900;
    color: #FFFFFF;
    padding: 7px 16px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease;
}

.quick-enquiry-side-tab:hover {
    background: #e05c00;
}

/* Glassmorphism Metric Cards */
.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* ================================================================= */
/* CARD ZERO PADDING & FULL-WIDTH FLUSH IMAGE LAYOUT RULES           */
/* ================================================================= */
.card.p-0, 
.service-card.p-0, 
.feature-card.p-0, 
.testimonial-card.p-0, 
.team-card.p-0, 
.stat-card.p-0, 
.process-card.p-0, 
.pricing-card.p-0,
.card.overflow-hidden {
    padding: 0 !important;
    overflow: hidden !important;
}

.card.p-0 .position-relative img,
.service-card.p-0 img,
.feature-card.p-0 img,
.process-card.p-0 img,
.card.p-0 > img {
    border-radius: 0 !important;
    width: 100% !important;
    margin: 0 !important;
}

/* ================================================================= */
/* DROPDOWN MENU FLYOUT OVERRIDES & MOBILE BREAKPOINT                */
/* ================================================================= */
@media (max-width: 991px) {
    .services-flyout-container {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        filter: none !important;
        width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .services-parent-list {
        width: 100% !important;
        border-radius: 8px !important;
        margin-top: 8px;
    }

    .parent-menu-item:hover .services-child-box,
    .services-child-box {
        position: static !important;
        display: flex !important;
        width: 100% !important;
        min-width: 100% !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        border-left: none !important;
        background: rgba(0, 0, 0, 0.12) !important;
        padding-left: 10px;
    }
}

/* ================================================================= */
/* FAQ SECTION - EXACT MATCH TO IMAGE 5                              */
/* ================================================================= */
.faq-category-item-card {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 18px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: #1E293B;
    transition: all 0.2s ease;
    box-shadow: none !important;
    cursor: pointer;
    margin-bottom: 12px;
}

.faq-category-item-card:hover {
    border-color: #FD6900;
    color: #FD6900;
}

.faq-category-item-card.active {
    background: #FD6900 !important;
    color: #FFFFFF !important;
    border-color: #FD6900 !important;
    box-shadow: none !important;
}

.faq-question-item {
    padding: 16px 0;
    border-bottom: 1px solid #F1F5F9;
    cursor: pointer;
}

.faq-question-item:last-child {
    border-bottom: none;
}

.faq-question-item h6 {
    font-size: 0.96rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.45;
}

.faq-toggle-icon {
    font-size: 1.35rem;
    font-weight: 700;
    color: #FD6900;
    line-height: 1;
}
