/* 
================================================================
   MARPIXEL - MARKETING AGENCY PREMIUM CLONE STYLE SHEET
================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:wght@100..900&display=swap');

:root {
    /* Color Palette */
    --primary: #FF6B4A;
    --primary-rgb: 255, 107, 74;
    --color-orange: #FF7C42;
    --color-yellow: #FFB627;
    --color-lime: #8FC658;
    --color-gold: #FFB00B;
    --color-indigo: #3D3F7F;
    --dark: #0D1B2A;
    --dark-bg: #151515;
    --light-bg: #F8F9FA;
    --gray-text: #666666;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Lenis Smooth Scroll Config */
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overflow: clip;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ff522b;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader-logo {
    position: relative;
    width: 80px;
    height: 80px;
}
.preloader-logo img {
    width: 100%;
    height: 100%;
    animation: pulseLogo 2s infinite ease-in-out;
}
@keyframes pulseLogo {
    0%, 100% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* Scroll To Top */
.ax-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}
.ax-up.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ax-scrollup {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(255, 107, 74, 0.4);
    font-size: 18px;
}
.ax-scrollup:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-5px);
}

/* Premium Buttons */
.ax-btn1 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--white) !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 107, 74, 0.2);
}
.ax-btn1 span {
    position: relative;
    z-index: 2;
}
.ax-btn1 i {
    font-size: 14px;
    transition: transform 0.3s ease;
}
.ax-btn1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 50px;
    z-index: -1;
}
.ax-btn1:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.ax-btn1:hover i {
    transform: translateX(5px);
}

/* Header & Navigation */
#ax-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}
#ax-header.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
    animation: slideDown 0.5s ease forwards;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.ax-header-content {
    align-items: center;
    justify-content: space-between;
}
.brand-logo img {
    height: 42px;
}
.main-navigation ul {
    display: flex;
    gap: 35px;
}
.main-navigation ul li {
    position: relative;
}
.main-navigation ul li a {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    padding: 10px 0;
}
.main-navigation ul li a:hover {
    color: var(--primary);
}
.main-navigation ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: none;
    border-radius: 12px;
    padding: 15px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dropdown-menu li a {
    font-size: 15px;
    font-weight: 600;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
}
.dropdown-menu li a:hover {
    background: rgba(255, 107, 74, 0.08);
    color: var(--primary) !important;
}

.header-cta {
    gap: 20px;
}
.cta-btn a {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
}
.cta-btn a:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255, 107, 74, 0.25);
}

.off-canvas-btn {
    gap: 12px;
}
.canvas-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
}
.canvas-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}
.canvas-trigger:hover span:nth-child(2) {
    transform: translateX(4px);
}

/* Off-Canvas Sidebar Widget Drawer */
.xs-sidebar-group {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.xs-sidebar-group.open {
    visibility: visible;
}
.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.xs-sidebar-group.open .xs-overlay {
    opacity: 1;
}
.xs-sidebar-widget {
    position: absolute;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background: var(--dark);
    color: var(--white);
    padding: 50px 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}
.xs-sidebar-group.open .xs-sidebar-widget {
    right: 0;
}
.close-side-widget {
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    color: var(--white);
    opacity: 0.7;
    float: right;
    transition: var(--transition);
}
.close-side-widget:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.sidebar-info-contents {
    margin-top: 60px;
}
.sidebar-info-contents .logo img {
    height: 38px;
    margin-bottom: 40px;
}
.content-box h5 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}
.content-box h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}
.content-box p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 40px;
}
.zoom-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}
.zoom-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}
.zoom-gallery img:hover {
    transform: scale(1.05);
}
.social-box {
    display: flex;
    gap: 15px;
}
.social-box li a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.social-box li a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Mobile Menu Slide */
.mobile_menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: var(--dark);
    z-index: 9999;
    padding: 40px 30px;
    transition: var(--transition);
}
.mobile_menu.open {
    left: 0;
}
.mobile_menu_close {
    font-size: 24px;
    color: var(--white);
    float: right;
    cursor: pointer;
}
.m-brand-logo img {
    height: 38px;
    margin-bottom: 40px;
}
.mobile-main-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.mobile-main-navigation ul li a {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}
.mobile-main-navigation ul li.dropdown .dropdown-menu {
    position: relative;
    top: 0;
    background: rgba(255,255,255,0.05);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
}
.mobile-main-navigation ul li.dropdown.active .dropdown-menu {
    display: flex;
}

/* Hero Section */
.ax-hero1-sec {
    background: #09090b;
    padding: 240px 0 160px;
    color: var(--white);
    overflow: hidden;
}
.ax-hero1-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}
.ax-hero1-content {
    position: relative;
    z-index: 2;
}
.hero_text_left h1 {
    font-size: 110px;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 10px;
}
.hero_text_left h1 span {
    color: var(--primary);
}
.hero_text_left h2 {
    font-size: 90px;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 25px;
}
.hero_text_left p {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.hero_text_right {
    text-align: right;
    margin-top: -60px;
}
.ax_text_wrap h1 {
    font-size: 120px;
    line-height: 0.8;
}
.ax_text3 span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
}
.ax_text4 span {
    color: var(--white);
    opacity: 0.15;
}
.item-desc-btn {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}
.item-desc-btn .item-area {
    max-width: 480px;
    text-align: left;
}
.item-desc-btn p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.ax-hero1-img {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    pointer-events: none;
    z-index: -1;
}
.ax-hero1-img img {
    width: 100%;
}

.ax-hero-bottom {
    bottom: -150px;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0.6;
}
.wave-path {
    animation: waveAnim 15s infinite linear;
}
@keyframes waveAnim {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -2000; }
}

/* Feature/Info Section */
.ax-ft1-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}
.ax-ft1-item {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    transition: var(--transition);
}
.ax-ft1-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 107, 74, 0.12);
    border-color: rgba(255, 107, 74, 0.2);
}
.item-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 74, 0.08);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}
.item-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}
.ax-ft1-item:hover .item-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}
.item-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.item-text p {
    font-size: 15px;
    color: var(--gray-text);
}

/* About Us Section */
.ax-ab1-sec {
    padding: 135px 0;
    background: var(--white);
}
.ax-ab1-content {
    gap: 80px;
    align-items: flex-start;
}
.ax-ab1-img {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}
.ax-ab1-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 1s ease;
}
.ax-ab1-img:hover img {
    transform: scale(1.04);
}
.ax-ab1-text-wrap {
    flex: 1.1;
}
.ax-sec-title .subtitle {
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}
.ax-sec-title h1 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.ax-ab1-feature {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.ax-ab1-exp, .ax-ab1-client {
    flex: 1;
    background: var(--light-bg);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}
.ax-ab1-exp h3, .ax-ab1-client h3 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 10px;
}
.ax-ab1-exp p, .ax-ab1-client p {
    font-size: 15px;
    font-weight: 700;
}
.cl-img-list ul {
    display: flex;
    margin-bottom: 10px;
}
.cl-img-list ul li {
    margin-right: -12px;
}
.cl-img-list ul li img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.ax-ab1-tab-wrap {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}
.nav-tabs {
    border: none;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.nav-tabs .nav-item {
    flex: 1;
}
.nav-tabs .nav-link {
    border: none;
    background: var(--white);
    color: var(--dark);
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.nav-tabs .nav-link.active {
    background: var(--primary);
    color: var(--white);
}
.tab-content p {
    font-size: 15px;
    color: var(--gray-text);
}

/* Review Marquee Section */
.ax-review-sec {
    background: var(--dark);
    padding: 40px 0;
    overflow: hidden;
}
.ax-review-content {
    display: flex;
    align-items: center;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 25s infinite linear;
}
.ax-review-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 22px;
}
.ax-review-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.ax-review-item span {
    color: var(--primary);
}

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

/* Our Services Section */
.ax-ser1-sec {
    padding: 135px 0;
    background: #fafafa;
    position: relative;
}
.ax-ser1-content {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}
.ax-ser1-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ax-ser1-btn ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.ax-ser1-btn ul li .nav-link {
    display: block;
    background: var(--white);
    padding: 22px 30px;
    border-radius: 16px;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.03);
    cursor: pointer;
    transition: var(--transition);
}
.ax-ser1-btn ul li .nav-link span {
    color: var(--primary);
    margin-right: 15px;
}
.ax-ser1-btn ul li .nav-link.active {
    background: var(--dark);
    color: var(--white);
}
.ax-ser1-btn .read_more {
    margin-top: 40px;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

.ax-ser1-tab-wrap {
    flex: 1.5;
}
.ax-ser1-item {
    display: flex;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.04);
}
.item-card {
    flex: 1.2;
    padding: 50px;
}
.item-desc {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 30px;
}
.item-list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.item-list ul li {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.item-list ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
}
.ax-ser1-item .item-img {
    flex: 1;
    overflow: hidden;
}
.ax-ser1-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Us Section */
.ax-wc1-sec {
    padding: 135px 0;
    background: var(--white);
}
.ax-wc1-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}
.ax-wc1-wrapper1 {
    display: grid;
    grid-template-rows: auto auto;
    gap: 30px;
}
.ax-wc1-item1 {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 40px;
}
.ax-wc1-item1 .item-title {
    margin-bottom: 25px;
}
.ax-marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.item-marque-area {
    display: flex;
    gap: 20px;
    overflow: hidden;
    white-space: nowrap;
}
.ax-item-marque {
    display: inline-flex;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.ax-wc1-item2 {
    background: var(--dark);
    color: var(--white);
    border-radius: 24px;
    padding: 40px;
}
.ax-wc1-item2 h3 {
    color: var(--white);
    font-size: 55px;
}

.ax-wc1-wrapper2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ax-wc1-item3 {
    background: var(--primary);
    color: var(--white);
    border-radius: 24px;
    padding: 40px;
}
.cl-rate ul {
    display: flex;
    gap: 5px;
    color: var(--color-yellow);
    margin-bottom: 8px;
}
.ax-client-satis h3 {
    font-size: 65px;
    color: var(--white);
}

.ax-wc1-item4 {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 45px 40px;
    height: 100%;
}
.item-chat-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.chat-item {
    display: flex;
    gap: 15px;
    align-items: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.chat-item.show {
    opacity: 1;
    transform: translateY(0);
}
.chat-item .item-img img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}
.chat-item .item-text {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.ax-wc1-item5 {
    grid-column: span 2;
    background: var(--dark);
    color: var(--white);
    border-radius: 24px;
    padding: 50px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ax-wc1-item5 .item-text {
    max-width: 600px;
}
.ax-wc1-item5 h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 20px;
}
.ax-wc1-item5 ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}
.ax-wc1-item5 ul li {
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ax-wc1-item5 ul li img {
    width: 18px;
}
.ax-wc1-item5 .item-btn a {
    background: var(--primary);
    color: var(--white);
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 50px;
}

/* Work Process Section */
.ax-workp-sec {
    background: var(--dark);
    padding: 135px 0;
    color: var(--white);
}
.ax-workp-sec h2 {
    color: var(--white);
    font-size: 45px;
    max-width: 700px;
    margin: 0 auto 60px;
}
.ax-workp-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.ax-workp-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 30px;
    transition: var(--transition);
}
.ax-workp-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-8px);
}
.ax-workp-item .item-icon {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    margin: 0 0 35px 0;
}
.title-serial {
    margin-bottom: 15px;
}
.title-serial h3 {
    color: var(--white);
    font-size: 20px;
}
.title-serial span {
    font-size: 18px;
    font-weight: 700;
    opacity: 0.3;
}
.ax-workp-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

/* Case Studies Slider */
.ax-cs-content {
    overflow: hidden;
}
.ax-cs-item {
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}
.item-img-meta {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.item-img-meta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ax-cs-item:hover img {
    transform: scale(1.08);
}
.item-meta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}
.item-meta a {
    background: var(--white);
    color: var(--dark);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 50px;
}
.item-text {
    padding: 30px;
}
.item-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.item-text p {
    color: var(--gray-text);
    font-size: 15px;
}

/* Team Section */
.ax-team-sec {
    padding: 135px 0;
    background: var(--white);
}
.ax-team-content {
    gap: 50px;
}
.ax-team-text-wrap {
    flex: 1;
}
.ax-team-text-wrap h2 {
    font-size: 42px;
    line-height: 1.2;
}
.ax-btn-desc {
    gap: 40px;
}
.ax-btn-desc p {
    max-width: 320px;
    font-size: 15px;
    color: var(--gray-text);
}

.ax-team-member-wrap {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.ax-team1-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}
.ax-team1-item .item-img {
    aspect-ratio: 1;
    overflow: hidden;
}
.ax-team1-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ax-team1-item:hover .item-img img {
    transform: scale(1.05);
}
.item-text-social {
    padding: 25px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item-name h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.item-name span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}
.item-social {
    display: flex;
    gap: 10px;
}
.item-social a {
    width: 36px;
    height: 36px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    color: var(--dark);
}
.item-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Testimonial Section */
.ax-testi1-sec {
    background: var(--dark);
    color: var(--white);
    padding: 135px 0;
}
.ax-testi-content {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 80px;
}
.ax-testi1-nav {
    gap: 15px;
}
.ax-testi1-prev, .ax-testi1-next {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}
.ax-testi1-prev:hover, .ax-testi1-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.ax-testi1-slider-area {
    overflow: hidden;
}
.ax-testi1-item {
    gap: 40px;
    align-items: center;
}
.ax-testi1-item .item-text {
    flex: 1.5;
    background: none;
    box-shadow: none;
    padding: 0;
}
.ax-testi1-item .item-text ul {
    display: flex;
    gap: 5px;
    color: var(--color-yellow);
    margin-bottom: 25px;
}
.ax-testi1-item .item-text p {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 35px;
}
.author-name h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
}
.author-name span {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
}
.ax-testi1-item .item-img {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.ax-testi1-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog & News Section */
.ax-blog1-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.ax-blog1-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    background: var(--white);
}
.ax-blog1-item .item-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.ax-blog1-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ax-blog1-item:hover .item-img img {
    transform: scale(1.05);
}
.ax-blog1-item .item-text {
    padding: 35px 30px;
}
.item-meta {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.blg_title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 25px;
}
.ax-blog1-item .read_more {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}
.ax-blog1-item:hover .read_more {
    color: var(--primary);
}

/* Accordion FAQs */
.ax-faq1-content {
    max-width: 800px;
    margin: 50px auto 0;
}
.accordion-item {
    border: none;
    background: var(--light-bg);
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
}
.accordion-button {
    background: none !important;
    box-shadow: none !important;
    padding: 24px 30px;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.accordion-button span {
    display: flex;
    align-items: center;
    gap: 15px;
}
.accordion-button::after {
    display: none;
}
.accordion-body {
    padding: 0 30px 30px;
    color: var(--gray-text);
    font-size: 15px;
}

/* Contact & Form Section */
.ax-contact-wrapper {
    background: var(--dark);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px;
    margin-top: 135px;
}
.ax-cont-text {
    position: absolute;
    top: 50px;
    left: 80px;
    color: rgba(255,255,255,0.03);
    font-size: 70px;
    line-height: 1;
    font-weight: 900;
}
.ax-contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    opacity: 0.15;
}
.ax-contact-content {
    width: 100%;
    z-index: 2;
}
.ax-contact-form {
    width: 55%;
    margin-left: auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
}
.ax-contact-form label {
    display: block;
    color: var(--white);
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.ax-contact-form input, .ax-contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 25px;
    transition: var(--transition);
}
.ax-contact-form input:focus, .ax-contact-form textarea:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
    outline: none;
}
.ax-contact-form button {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 18px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}
.ax-contact-form button:hover {
    background: var(--white);
    color: var(--primary);
}

/* Footer Section */
.ax-ftr1-sec {
    background: #09090b;
    color: var(--white);
    overflow: hidden;
}
.newslatter-widget h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 15px;
}
.newslatter-widget p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin-bottom: 30px;
}
.newslatter-widget form {
    position: relative;
    max-width: 380px;
}
.newslatter-widget input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 18px 25px;
    color: var(--white);
    font-size: 15px;
}
.newslatter-widget button {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

.ax-ftr1-wrapper {
    gap: 80px;
}
.widget-title {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.menu-widget ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.menu-widget ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}
.menu-widget ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.item-info-wrap {
    gap: 15px;
    margin-bottom: 25px;
}
.item-info-wrap .item-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 182, 39, 0.1);
    color: var(--color-yellow);
    margin: 0;
}
.item-info-wrap .item-text span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.item-info-wrap .item-text a {
    font-weight: 700;
    font-size: 18px;
}

.ax-ftr1-social {
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 30px 0;
}
.logo_site-size {
    height: 38px;
}
.ax-ftr1-social .item-social {
    display: flex;
    gap: 20px;
}
.ax-ftr1-social .item-social a {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
}
.ax-ftr1-social .item-social a:hover {
    color: var(--primary);
}

.ax-copyright1 {
    padding: 30px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}
.ax-copyright1 ul {
    display: flex;
    gap: 25px;
}
.ax-copyright1 ul li a:hover {
    color: var(--primary);
}

/* General Layout Utilities */
.img-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.fade {
    animation-name: fadeIn;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero_text_left h1 { font-size: 80px; }
    .hero_text_left h2 { font-size: 70px; }
    .ax_text_wrap h1 { font-size: 90px; }
    .ax-ft1-content { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
    .ax-wc1-content { grid-template-columns: 1fr; }
    .ax-wc1-item5 { grid-column: span 1; }
    .ax-workp-content { grid-template-columns: repeat(2, 1fr); }
    .ax-team-member-wrap { grid-template-columns: 1fr; }
    .ax-testi-content { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
    .main-navigation, .cta-btn { display: none; }
    .mobile_menu_button { display: block; }
    .ax-ab1-content { flex-direction: column; gap: 40px; }
    .ax-ser1-content { flex-direction: column; }
    .ax-ser1-btn ul { flex-direction: row; flex-wrap: wrap; }
    .ax-blog1-content { grid-template-columns: 1fr; }
    .ax-contact-form { width: 100%; padding: 30px; }
    .ax-contact-wrapper { padding: 40px; }
    .ax-ftr1-content { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
    .hero_text_left h1 { font-size: 55px; }
    .hero_text_left h2 { font-size: 45px; }
    .ax_text_wrap h1 { font-size: 60px; }
    .ax-ft1-content { grid-template-columns: 1fr; }
    .ax-ab1-feature { flex-direction: column; }
    .ax-wc1-item5 { padding: 30px; flex-direction: column; gap: 30px; text-align: center; }
    .ax-wc1-item5 ul { grid-template-columns: 1fr; }
    .ax-workp-content { grid-template-columns: 1fr; }
    .ax-testi1-item { flex-direction: column; }
    .ax-contact-wrapper { margin-top: 80px; }
    .ax-copyright1 { flex-direction: column; gap: 15px; text-align: center; }
}

/* ================================================================
   TICKET-STYLE FLOATING HEADER
   ================================================================ */
.floating-header {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-ticket-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

/* Connecting Line */
.ticket-connector {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #ffb00b;
    z-index: 1;
    transform: translateY(-50%);
    opacity: 0.8;
}

/* Capsules */
.ticket-capsule {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.nav-capsule {
    padding: 12px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-grow: 1;
    max-width: 820px;
}

.action-capsule {
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* Inward Notches - CSS Magic */
/* Nav Capsule Left Notch */
.ticket-capsule::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 24px;
    background: #050505; /* Blends into dark background */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: none;
    border-radius: 0 14px 14px 0;
    z-index: 5;
    transition: background-color 0.4s ease;
}

/* Nav Capsule Right Notch */
.ticket-capsule::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 24px;
    background: #050505; /* Blends into dark background */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-right: none;
    border-radius: 14px 0 0 14px;
    z-index: 5;
    transition: background-color 0.4s ease;
}

/* Adjust notch background on sticky or other backgrounds */
#ax-header.sticky .ticket-capsule::before,
#ax-header.sticky .ticket-capsule::after {
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
}

/* Logo Area */
.logo-area a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0d1b2a;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: #888888;
    letter-spacing: 1px;
}

/* Desktop Menu Styles */
.desktop-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.desktop-menu ul li {
    position: relative;
}

.desktop-menu ul li a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #333333;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.desktop-menu ul li a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.desktop-menu ul li:hover > a {
    color: #ff7c42;
}

.desktop-menu ul li:hover > a i {
    transform: rotate(180deg);
}

/* Submenu / Dropdowns */
.desktop-menu ul li .submenu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 10px;
    min-width: 190px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 100;
}

.desktop-menu ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.desktop-menu ul li .submenu li a {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 8px;
    color: #555555;
    width: 100%;
    display: block;
}

.desktop-menu ul li .submenu li a:hover {
    background: rgba(255, 124, 66, 0.08);
    color: #ff7c42 !important;
    padding-left: 20px;
}

/* Free Consultation Button */
.btn-consultation {
    background: #ff7c42;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 8px;
    text-transform: none;
    box-shadow: 0 5px 15px rgba(255, 124, 66, 0.2);
    transition: var(--transition);
}

.btn-consultation:hover {
    background: #ff522b;
    box-shadow: 0 8px 20px rgba(255, 124, 66, 0.45);
    transform: translateY(-2px);
}

/* Grid Menu Button (9 dots) */
.grid-menu-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 9px;
    cursor: pointer;
    transition: var(--transition);
}

.grid-menu-btn:hover {
    border-color: #ff7c42;
    box-shadow: 0 5px 15px rgba(255, 124, 66, 0.1);
    transform: translateY(-2px);
}

.grid-dot {
    background: #ffb00b;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    margin: auto;
    transition: var(--transition);
}

.grid-menu-btn:hover .grid-dot {
    background: #ff7c42;
    transform: scale(1.2);
}

/* Hamburger for Mobile Nav inside Left Capsule */
.mobile-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    padding: 0;
}

.mobile-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333333;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-hamburger:hover span:nth-child(2) {
    transform: translateX(3px);
}

/* ================================================================
   STICKY HEADER CONVERSION
   ================================================================ */
#ax-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    z-index: 1000;
}

#ax-header.sticky .header-ticket-wrapper {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

#ax-header.sticky .ticket-capsule {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

#ax-header.sticky .ticket-capsule::before,
#ax-header.sticky .ticket-capsule::after {
    display: none; /* Hide notches in sticky mode */
}

#ax-header.sticky .ticket-connector {
    display: none !important; /* Hide connector line in sticky mode */
}

#ax-header.sticky .nav-capsule {
    max-width: 100%;
}

/* ================================================================
   RESPONSIVE LAYOUT FOR HEADER
   ================================================================ */
@media (max-width: 991px) {
    .floating-header {
        top: 15px;
    }
    
    .header-ticket-wrapper {
        width: 92%;
    }
    
    .nav-capsule {
        padding: 12px 20px;
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
    }
    
    /* Make ticket connector invisible */
    .ticket-connector {
        display: none !important;
    }
    
    #ax-header.sticky .header-ticket-wrapper {
        padding: 0 20px;
    }
}

/* ================================================================
   OVERLAPPING FEATURES SECTION
   ================================================================ */
.features-overlap-sec {
    position: relative;
    z-index: 10;
    margin-top: -100px; /* Overlaps hero section from bottom */
    padding-bottom: 80px;
    background-color: #050505; /* Seamless transition with homepage dark color */
}

.features-panel {
    background: #f8f9fa; /* Light grey panel background */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.feature-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.card-img-wrap {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: visible; /* Allows the center overlapping circle badge */
    margin-bottom: 30px;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: var(--transition);
}

.feature-card:hover .card-img-wrap img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.02);
}

/* Inward center-bottom circle badge */
.card-icon-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #ffe3db; /* Delicate brand peach background */
    border: 3px solid #f8f9fa; /* Seamless cut effect matching panel bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    z-index: 3;
}

.card-icon-badge i {
    color: #ff7c42; /* Digi Cresso corporate orange */
    font-size: 20px;
    display: inline-flex;
}

.feature-card:hover .card-icon-badge {
    background: #ff7c42;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 124, 66, 0.35);
}

.feature-card:hover .card-icon-badge i {
    color: #ffffff;
}

.card-body-wrap {
    padding: 0 10px;
}

.feature-title {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 12px;
    transition: var(--transition);
}

.feature-card:hover .feature-title {
    color: #ff7c42;
}

.feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for features section */
@media (max-width: 991px) {
    .features-overlap-sec {
        margin-top: -60px; /* Reduced overlap on smaller viewports */
        padding-bottom: 60px;
    }
    
    .features-panel {
        padding: 35px 25px;
    }
    
    .card-img-wrap {
        height: 140px;
    }
}

/* ================================================================
   ABOUT NARRATIVE & STATS SECTION
   ================================================================ */
.about-narrative-sec {
    background-color: #ffffff; /* White background for high contrast flow */
    padding: 120px 0;
    color: #333333;
    position: relative;
    overflow: hidden;
}

/* Faint watermark background in the bottom right corner */
.about-narrative-sec::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.03) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.about-visual-wrapper {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.about-main-img {
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-visual-wrapper:hover .about-main-img {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

@media (min-width: 992px) {
    .about-visual-wrapper {
        height: 100%;
    }
    .about-main-img {
        height: 100%;
    }
}

/* Floating top-left badge inside visual showcase */
.floating-badge-box {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: #0d1b2a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.floating-badge-box i {
    color: #ffffff;
    font-size: 18px;
}

/* Narrative content styles */
.narrative-pill-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 74, 0.08);
    color: #ff7c42;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.narrative-heading {
    font-family: 'Figtree', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    color: #0d1b2a;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

/* Stats Cards Grid */
.stats-card {
    background: #f4f5f6; /* Stats card base background */
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 124, 66, 0.15);
}

.card-customers {
    background: #e9ebec; /* Secondary gray background */
}

.stats-num {
    font-family: 'Figtree', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #ff7c42;
    line-height: 1.1;
    margin-bottom: 12px;
}

.card-customers .stats-num {
    color: #0d1b2a; /* Darker gray stats number */
}

.stats-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #555555;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.stats-watermark {
    position: absolute;
    right: 15px;
    bottom: -15px;
    font-size: 72px;
    color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    line-height: 1;
    z-index: 1;
    transition: var(--transition);
}

.stats-card:hover .stats-watermark {
    transform: scale(1.15) rotate(10deg);
    color: rgba(255, 124, 66, 0.06);
}

/* Avatar overlap stack inside card-customers */
.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e9ebec;
    margin-left: -10px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

/* Custom Stats Cards Accent Colors */
.card-businesses {
    background: #fdf5f2; /* extremely light warm orange */
    border-color: rgba(255, 107, 74, 0.08);
}
.card-businesses .stats-num {
    color: var(--color-orange);
}
.card-businesses:hover {
    border-color: rgba(255, 107, 74, 0.3);
}

.card-revenue {
    background: #fefcf3; /* extremely light warm yellow */
    border-color: rgba(255, 182, 39, 0.08);
}
.card-revenue .stats-num {
    color: var(--color-yellow);
}
.card-revenue:hover {
    border-color: rgba(255, 182, 39, 0.3);
}
.card-revenue:hover .stats-watermark {
    color: rgba(255, 182, 39, 0.06);
}

.card-leads {
    background: #f6faf2; /* extremely light warm green */
    border-color: rgba(143, 198, 88, 0.08);
}
.card-leads .stats-num {
    color: var(--color-lime);
}
.card-leads:hover {
    border-color: rgba(143, 198, 88, 0.3);
}
.card-leads:hover .stats-watermark {
    color: rgba(143, 198, 88, 0.06);
}

.card-satisfaction {
    background: #f4f6fc; /* extremely light warm blue/indigo */
    border-color: rgba(61, 63, 127, 0.08);
}
.card-satisfaction .stats-num {
    color: #4a54c4; /* beautiful indigo color */
}
.card-satisfaction:hover {
    border-color: rgba(61, 63, 127, 0.3);
}
.card-satisfaction:hover .stats-watermark {
    color: rgba(61, 63, 127, 0.06);
}


/* Premium Tabs Box */
.about-tabs-box {
    background: #0c1a24; /* Dark slate background */
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(12, 26, 36, 0.15);
}

.tabs-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.tab-trigger {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 18px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-trigger:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.tab-trigger.active {
    background: linear-gradient(90deg, #ff7c42 0%, #ff522b 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 124, 66, 0.35);
}

.tab-pane-custom {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    display: none;
}

.tab-pane-custom.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.narrative-para {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Gradient CTA Button with Arrow Badge */
.btn-narrative-more {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(90deg, #ff8c42 0%, #b8e92d 100%);
    color: #000000 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(184, 233, 45, 0.2);
    transition: var(--transition);
}

.btn-narrative-more .arrow-badge {
    background: #000000;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-narrative-more .arrow-badge i {
    font-size: 14px;
    display: inline-flex;
}

.btn-narrative-more:hover {
    box-shadow: 0 15px 30px rgba(184, 233, 45, 0.45);
    transform: translateY(-2px);
}

.btn-narrative-more:hover .arrow-badge {
    transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-narrative-sec {
        padding: 80px 0;
    }
    
    .narrative-heading {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .about-tabs-box {
        padding: 20px;
    }
}

/* ================================================================
   CONTINUOUS REVIEWS MARQUEE BAND (ORANGE)
   ================================================================ */
.reviews-marquee-sec {
    background-color: #ffb00b; /* Bright orange/yellow background */
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
}

.reviews-marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    animation: reviewsMarquee 35s infinite linear;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0d1b2a; /* Dark text matching the screenshot */
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.marquee-item img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(13, 27, 42, 0.15);
}

.marquee-item.text-highlight {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

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

/* ================================================================
   SERVICES TAB SHOWCASE SECTION
   ================================================================ */
.services-showcase-sec {
    background-image: linear-gradient(rgba(28, 29, 34, 0.95), rgba(28, 29, 34, 0.95)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Elegant Parallax Scroll */
    padding: 120px 0;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.services-showcase-sec .subtitle {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 74, 0.08);
    color: #ff7c42;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.services-showcase-sec .sec-title-large {
    font-family: 'Figtree', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
}

/* Service Navigation List (Left) */
.service-nav-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-nav-btn {
    background: rgba(0, 0, 0, 0.25); /* Dark translucent background */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px 25px;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.service-nav-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12);
}

.service-nav-btn.active {
    background: #0d1b2a;
    border-color: #ff7c42;
    color: #ffffff;
    box-shadow: inset 0 0 15px rgba(255, 124, 66, 0.15), 0 5px 15px rgba(255, 124, 66, 0.1);
}

.service-nav-btn .num-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 800;
}

.service-nav-btn.active .num-label {
    color: #ff7c42;
}

/* Service Detail Card (Middle) */
.service-detail-card {
    background: rgba(0, 0, 0, 0.3); /* Premium dark translucent background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    backdrop-filter: blur(15px); /* Premium Glassmorphism */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-box {
    margin-bottom: 30px;
}

.service-icon-box svg {
    width: 60px;
    height: 60px;
}

.service-detail-pane {
    display: none;
    height: 100%;
}

.service-detail-pane.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.service-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-card-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    padding: 0;
}

.service-card-bullets li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-card-bullets li::before {
    content: '•';
    color: #ff7c42;
    font-size: 20px;
    line-height: 0;
}

.read-more-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.read-more-link:hover {
    color: #ff7c42;
}

.read-more-link .arrow-icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.read-more-link:hover .arrow-icon-circle {
    background: #ff7c42;
    color: #ffffff;
}

/* Service Image Box (Right) */
.service-img-box {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-display-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-display-img.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}



/* Bottom CTA inside Showcase Section */
.btn-view-services {
    background: linear-gradient(90deg, #ffb627 0%, #8fc658 100%);
    color: #000000 !important;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 0;
    border-radius: 12px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(143, 198, 88, 0.15);
    transition: var(--transition);
    border: none;
    margin-top: 15px;
}

.btn-view-services:hover {
    box-shadow: 0 12px 25px rgba(143, 198, 88, 0.35);
    transform: translateY(-2px);
}

/* ================================================================
   CLIENTS BRAND GRID SECTION
   ================================================================ */
.clients-grid-sec {
    position: relative;
    background: linear-gradient(135deg, #f0f4ff 0%, #fdf4ff 25%, #fff0fa 50%, #f0f9ff 75%, #f5f0ff 100%);
    background-size: 400% 400%;
    animation: clientsGradientFlow 12s ease infinite;
    padding: 120px 0;
    color: #0f172a;
    overflow: hidden;
    border-top: 1px solid rgba(99, 102, 241, 0.08);
}

@keyframes clientsGradientFlow {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 100% 50%; }
    50%  { background-position: 100% 0%; }
    75%  { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

.clients-grid-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(6, 182, 212, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 90%, rgba(236, 72, 153, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 10%, rgba(251, 146, 60, 0.07) 0%, transparent 45%);
    animation: clientsOrbs 18s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes clientsOrbs {
    0%   { transform: scale(1) translate(0px, 0px); }
    33%  { transform: scale(1.08) translate(20px, -15px); }
    66%  { transform: scale(0.95) translate(-15px, 20px); }
    100% { transform: scale(1.05) translate(10px, -10px); }
}

.clients-grid-sec .container {
    position: relative;
    z-index: 1;
}

.clients-grid-sec .subtitle {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.10);
    color: #7c3aed;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.clients-grid-sec .heading-title {
    font-family: 'Figtree', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    max-width: 600px;
    letter-spacing: -1px;
}

.clients-border-grid {
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    border-left: 1px solid rgba(99, 102, 241, 0.15);
    margin-top: 50px;
}

.client-grid-cell {
    border-right: 1px solid rgba(99, 102, 241, 0.15);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background: transparent;
    transition: var(--transition);
}

.client-grid-cell:hover:not(.blank-cell):not(.text-desc-cell) {
    background: rgba(139, 92, 246, 0.06);
}

.text-desc-cell {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px 25px;
}

.text-desc-cell p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(15, 23, 42, 0.6);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.client-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.client-logo-text:hover {
    color: #7c3aed;
}

.logo-with-icon {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-with-icon i {
    color: #ff7c42;
    font-size: 14px;
}

.accent-text {
    color: #ff7c42;
}

.border-start-none {
    border-left: none !important;
}

.blank-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
}

.small-sub {
    font-size: 9px;
    display: block;
    line-height: 1;
    font-weight: 500;
    margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .services-showcase-sec, .clients-grid-sec {
        padding: 80px 0;
    }
    
    .services-showcase-sec .sec-title-large, .clients-grid-sec .heading-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .service-nav-box {
        margin-bottom: 25px;
    }
    
    .service-detail-card {
        padding: 30px;
    }
    
    .client-grid-cell {
        padding: 30px 20px;
    }
}

/* ================================================================
   PREMIUM BENTO GRID SECTION
   ================================================================ */
.why-choose-bento-sec {
    background-color: #f3f5f8; /* Elegant premium off-white background */
    padding: 120px 0;
    color: #333333;
    position: relative;
    overflow: hidden;
}

.why-choose-bento-sec .subtitle {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 74, 0.08);
    color: #ff7c42;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.why-choose-bento-sec .sec-title-large {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #0d1b2a;
    letter-spacing: -1.5px;
    margin-bottom: 0;
}

.header-desc-right {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #55606e;
    line-height: 1.7;
    margin: 0;
}

/* Bento Grid CSS */
.bento-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    margin-top: 50px;
}

.bento-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.06);
}

.bento-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* Card 1: Industries tag scroll */
.card-industries {
    background: linear-gradient(135deg, #fdf5f2 0%, #fffcf9 100%);
    overflow: hidden; /* Clips the tilted/rotated tags inside card boundaries */
}

.chips-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 25px;
    position: relative;
    transform: rotate(-6deg) scale(1.15); /* Rotates the scrolling rows to match mockup */
    padding: 10px 0;
}

/* Gradient fade overlays at left & right borders */
.chips-scroll-container::before,
.chips-scroll-container::after {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    width: 60px;
    z-index: 3;
    pointer-events: none;
}

.chips-scroll-container::before {
    left: -20px;
    background: linear-gradient(90deg, #fdf5f2 10%, transparent 100%);
}

.chips-scroll-container::after {
    right: -20px;
    background: linear-gradient(-90deg, #fffcf9 10%, transparent 100%);
}

.chips-row {
    display: flex;
    gap: 12px;
    white-space: nowrap;
    width: max-content;
}

.chip-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.04);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.015);
    transition: all 0.3s ease;
}

.chip-item:hover {
    border-color: rgba(255, 124, 66, 0.3);
    color: #ff7c42;
    transform: translateY(-2px);
}

.chip-item i {
    color: #ff7c42;
    font-size: 14px;
}

/* Seamless infinite linear marquees */
.chips-scroll-left {
    animation: marqueeScrollLeft 22s infinite linear;
}

.chips-scroll-right {
    animation: marqueeScrollRight 22s infinite linear;
}

@keyframes marqueeScrollLeft {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeScrollRight {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

/* Card 2: Projects completed */
.organic-mask-box {
    position: relative;
    width: 100%;
    height: 180px;
    clip-path: url(#organic-blob-mask); /* High-fidelity SVG organic mask cutout! */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: #000000;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.organic-mask-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .organic-mask-box img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.mask-overlay-text {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    z-index: 2;
}

.mask-overlay-text .large-num {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
}

.mask-overlay-text .sub-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.cta-prompt {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
}

.phone-dialer-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #ffb00b; /* Golden border matching screenshot */
    color: #ffb00b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(255, 176, 11, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.phone-dialer-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 176, 11, 0.2); /* Double-ring effect */
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.phone-dialer-btn:hover {
    background: #ffb00b;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 176, 11, 0.4);
    transform: scale(1.05);
}

.phone-dialer-btn:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

/* Card 3: Why Choose Us (Right Spanning Card) */
.card-why-choose-us {
    grid-column: 3;
    grid-row: 1 / span 2;
    background: #000000 !important;
    color: #ffffff !important;
    min-height: 580px;
    overflow: visible;
    padding-bottom: 200px;
}

.logo-chart-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 124, 66, 0.15);
    color: #ff7c42;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    z-index: 3;
}

.why-choose-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
}

.why-choose-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    position: relative;
    z-index: 3;
}

.why-choose-bullets li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95) !important;
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    z-index: 3;
}

.starburst-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.why-choose-bullets li:hover .starburst-icon {
    transform: scale(1.2) rotate(45deg);
}

.why-choose-visual-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
}

.why-choose-visual-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.8s ease;
}

/* Premium red dark vignette gradients over the bottom picture */
.why-choose-visual-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0c1a24 0%, rgba(12, 26, 36, 0.4) 30%, transparent 100%),
                linear-gradient(to top, rgba(41, 8, 8, 0.8) 0%, transparent 70%);
    pointer-events: none;
}

.card-why-choose-us:hover .why-choose-visual-wrap img {
    transform: scale(1.05);
}

.btn-free-consultation {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    width: calc(100% - 50px);
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    z-index: 3;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-free-consultation:hover {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Card 4: Clients Stat (Bottom-Left) */
.card-clients-stat {
    background: #080d16; /* Clean deep slate-black color */
    color: #ffffff;
}

.white-pill-capsule {
    background: #ffffff;
    border-radius: 50px;
    padding: 5px 16px 5px 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.white-pill-capsule:hover {
    transform: scale(1.03);
}

.pill-avatars {
    display: flex;
    align-items: center;
}

.pill-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-left: -8px;
}

.pill-avatars img:first-child {
    margin-left: 0;
}

.pill-count-text {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0d1b2a;
}

.stars-box .stars-row {
    font-size: 14px;
}

.stars-box .stars-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.stat-big-num {
    font-family: 'Outfit', sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-big-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Card 5: Chat support */
.card-chat-support {
    background: #f0f3f6;
    position: relative;
    overflow: hidden;
}

.support-num-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.1;
}

.support-label-sub {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #55606e;
}

.headphones-watermark {
    position: absolute;
    right: -25px;
    top: -10px;
    width: 110px;
    height: 110px;
    pointer-events: none;
    transform: rotate(15deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-chat-support:hover .headphones-watermark {
    transform: rotate(5deg) scale(1.06);
    stroke: rgba(13, 27, 42, 0.08);
}

.chat-bubbles-box {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-item-bubble {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-item-bubble.show {
    opacity: 1;
    transform: translateY(0);
}

.chat-item-bubble img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-item-bubble .bubble-text {
    background: #0d1b2a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 0 15px 15px 15px;
    box-shadow: 0 3px 8px rgba(13, 27, 42, 0.1);
}

/* Bento responsive adjustments */
@media (max-width: 991px) {
    .why-choose-bento-sec {
        padding: 80px 0;
    }
    
    .why-choose-bento-sec .sec-title-large {
        font-size: 34px;
    }
    
    .bento-grid-container {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    
    .card-why-choose-us {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
        padding-bottom: 250px;
    }
}


/* ================================================================
   PREMIUM WORK PROCESS SECTION
   ================================================================ */
.work-process-sec {
    position: relative;
    padding: 120px 0 100px;
    background-image: url('assets/work_process_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

/* Deep cinematic dark overlay */
.work-process-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 8, 0.92) 0%,
        rgba(5, 5, 8, 0.60) 45%,
        rgba(5, 5, 8, 0.92) 100%
    );
    z-index: 1;
}

.work-process-sec .container {
    position: relative;
    z-index: 2;
}

/* Badge pill */
.process-pill-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 124, 66, 0.12);
    border: 1px solid rgba(255, 124, 66, 0.25);
    color: #ff7c42;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

/* Section heading */
.process-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    max-width: 660px;
    margin: 0 auto 72px;
    letter-spacing: -1.5px;
}

/* Each step card */
.process-step-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 4px;
}

/* Circular white icon badge */
.process-icon-wrap {
    width: 68px;
    height: 68px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7c42;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    margin-bottom: 28px;
    flex-shrink: 0;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover .process-icon-wrap {
    background: #ff7c42;
    color: #ffffff;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 16px 40px rgba(255, 124, 66, 0.4);
}

/* Title + serial row */
.step-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
    transition: border-color 0.4s ease;
}

.process-step-card:hover .step-meta-row {
    border-color: #00d2c4;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.process-step-card:hover .step-title {
    color: #00d2c4;
}

/* Teal serial number */
.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #00d2c4;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* Description text */
.step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.process-step-card:hover .step-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 991px) {
    .work-process-sec {
        padding: 80px 0 70px;
    }
    .process-heading {
        font-size: 32px;
        margin-bottom: 48px;
    }
}

@media (max-width: 575px) {
    .process-heading {
        font-size: 28px;
    }
    .process-icon-wrap {
        width: 56px;
        height: 56px;
    }
}


/* ================================================================
   CASE STUDIES SECTION
   ================================================================ */
.case-studies-sec {
    background: #ffffff;
    padding: 100px 0 80px;
    overflow: hidden;
}

/* Badge */
.cs-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 107, 74, 0.08);
    border: 1px solid rgba(255, 107, 74, 0.2);
    color: #ff7c42;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

/* Section heading */
.cs-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin: 0;
}

/* "View All Projects" button */
.cs-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff7c42;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.35s ease;
    white-space: nowrap;
    align-self: center;
    margin-top: 6px;
}

.cs-view-all-btn:hover {
    background: #e86830;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 124, 66, 0.35);
}

.cs-arrow-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.cs-view-all-btn:hover .cs-arrow-circle {
    background: rgba(0, 0, 0, 0.25);
}

/* Slider wrapper — clips overflow */
.cs-slider-wrapper {
    overflow: hidden;
    margin: 0 -8px;
}

/* Sliding track */
.cs-track {
    display: flex;
    gap: 24px;
    padding: 0 8px 8px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Individual project card */
.cs-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Image wrapper */
.cs-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
    margin-bottom: 20px;
}

.cs-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-card:hover .cs-img-wrap img {
    transform: scale(1.05);
}

/* Dark tag pill top-left */
.cs-tag-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(13, 27, 42, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.2px;
    z-index: 2;
}

/* Hover overlay with "Read Case Study" link */
.cs-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.5);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.cs-card:hover .cs-hover-overlay {
    opacity: 1;
}

.cs-read-more {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    background: rgba(255, 124, 66, 0.9);
    padding: 8px 18px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.cs-read-more:hover {
    background: #ff7c42;
    color: #ffffff;
}

/* Card body */
.cs-card-body {
    padding: 0 4px;
}

.cs-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.cs-card:hover .cs-card-title {
    color: #ff7c42;
}

.cs-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Pagination dots */
.cs-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
}

.cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.35s ease;
}

.cs-dot.active {
    width: 28px;
    border-radius: 4px;
    background: #ff7c42;
}

/* Responsive */
@media (max-width: 991px) {
    .case-studies-sec {
        padding: 70px 0 60px;
    }
    .cs-heading {
        font-size: 32px;
    }
    .cs-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 575px) {
    .cs-heading {
        font-size: 26px;
    }
    .cs-card {
        flex: 0 0 calc(100% - 16px);
    }
    .cs-view-all-btn {
        font-size: 13px;
        padding: 10px 18px;
    }
}

/* ================================================================
   HOME BLOG & NEWS SECTION
   ================================================================ */
.home-blog-sec {
    background-color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-pill-badge {
    display: inline-block;
    background: rgba(255, 107, 74, 0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
}

.blog-section-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-text);
    max-width: 480px;
}

/* Home Blog Card */
.home-blog-card {
    transition: var(--transition);
    height: 100%;
}

.blog-card-img-link {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.blog-card-img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 20px;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-card-meta {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.blog-meta-badge {
    background: rgba(143, 198, 88, 0.15);
    color: #4b8510;
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-meta-date {
    background: #f3f4f6;
    color: #4b5563;
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 12px 0 0;
}

.blog-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

/* Footer / Read More */
.blog-card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-read-more {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #555555;
    transition: color 0.3s ease;
}

.home-blog-card:hover .blog-read-more {
    color: var(--primary);
}

.blog-card-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.blog-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 14px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-blog-card:hover .blog-arrow-btn {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

/* View All Blogs Button */
.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 10px 10px 24px;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(13, 27, 42, 0.15);
}

.blog-view-all-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-yellow);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.35s ease;
}

.blog-view-all-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 74, 0.3);
}

.blog-view-all-btn:hover .blog-view-all-icon {
    transform: rotate(45deg);
}

/* Dotted Watermark Pattern */
.blog-dotted-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .home-blog-sec {
        padding: 80px 0 60px;
    }
    .blog-section-title {
        font-size: 32px;
    }
    .blog-card-title {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .blog-section-title {
        font-size: 26px;
    }
    .blog-section-desc {
        font-size: 14px;
    }
    .blog-card-title {
        font-size: 18px;
    }
}

/* ================================================================
   HOME FAQ SECTION (FREQUENTLY ASKED ANSWERED)
   ================================================================ */
.home-faq-sec {
    background-color: #faf3e0; /* Warm beige background */
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.home-faq-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.035; /* Very subtle watermark matching the screenshot background image */
    pointer-events: none;
    z-index: 1;
}

.home-faq-sec .container {
    position: relative;
    z-index: 2;
}

.faq-pill-badge {
    display: inline-block;
    background: rgba(255, 107, 74, 0.12);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
}

.faq-accordion-wrap {
    max-width: 850px;
}

.faq-item {
    border-bottom: 1px solid rgba(13, 27, 42, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.35s ease;
}

.faq-cross {
    font-size: 16px;
    margin-right: 20px;
    transition: color 0.35s ease;
}

.faq-question {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    flex-grow: 1;
    padding-right: 20px;
    transition: color 0.35s ease;
}

.faq-toggle-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-toggle-btn::after {
    content: '+';
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

/* Expanded state (Active) */
.faq-header:not(.collapsed) .faq-toggle-btn {
    background-color: var(--color-yellow);
    color: var(--dark);
    box-shadow: 0 4px 10px rgba(255, 182, 39, 0.2);
}

.faq-header:not(.collapsed) .faq-toggle-btn::after {
    content: '−';
}

.faq-header:not(.collapsed) .faq-cross {
    color: var(--dark);
}

.faq-header:not(.collapsed) .faq-question {
    color: var(--dark);
}

/* Collapsed state (Inactive) */
.faq-header.collapsed .faq-toggle-btn {
    background-color: rgba(13, 27, 42, 0.08);
    color: var(--dark);
}

.faq-header.collapsed .faq-cross {
    color: rgba(13, 27, 42, 0.4);
}

.faq-header.collapsed .faq-question {
    color: rgba(13, 27, 42, 0.9);
}

/* Accordion Body */
.faq-body {
    padding: 0 0 24px 38px;
}

.faq-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    max-width: 780px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .home-faq-sec {
        padding: 80px 0 60px;
    }
    .faq-section-title {
        font-size: 32px;
    }
    .faq-question {
        font-size: 18px;
    }
    .faq-body {
        padding-left: 30px;
    }
}

@media (max-width: 575px) {
    .faq-section-title {
        font-size: 26px;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-body {
        padding-left: 24px;
        padding-bottom: 20px;
    }
    .faq-header {
        padding: 18px 0;
    }
    .faq-cross {
        margin-right: 12px;
        font-size: 14px;
    }
}

/* ================================================================
   HOME CONTACT FORM SECTION (GLASSMORPHISM)
   ================================================================ */
.home-contact-sec {
    position: relative;
    padding: 135px 0;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1400&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media (min-width: 992px) {
    .home-contact-sec {
        position: sticky;
        bottom: 0;
        z-index: 1; /* Underlay level */
        width: 100%;
        display: block;
        margin-top: 0;
        transform: translateZ(0);
        will-change: transform;
    }
}

.home-contact-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.4); /* Dark elegant overlay over team background */
    pointer-events: none;
    z-index: 1;
}

.home-contact-sec .container {
    position: relative;
    z-index: 2;
}

.glass-contact-card {
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.glass-form-label {
    display: block;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.glass-form-control {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: var(--white) !important;
    padding: 10px 0 12px !important;
    font-size: 15px !important;
    transition: border-color 0.3s ease !important;
    border-radius: 0 !important;
}

.glass-form-control:focus {
    outline: none !important;
    border-bottom-color: var(--color-yellow) !important;
    box-shadow: none !important;
}

.glass-form-control::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 15px !important;
}

.text-area-adjust {
    resize: none !important;
}

.glass-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-yellow);
    color: var(--dark);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 10px 10px 24px;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.glass-submit-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.35s ease;
}

.glass-submit-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 107, 74, 0.35);
}

.glass-submit-btn:hover .glass-submit-icon {
    background: var(--white);
    color: var(--primary);
    transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .home-contact-sec {
        padding: 80px 0;
    }
    .glass-contact-card {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .glass-contact-card {
        padding: 30px 20px;
    }
    .glass-form-label {
        font-size: 13px;
    }
    .glass-submit-btn {
        font-size: 14px;
    }
}

/* ================================================================
   HOME FOOTER SECTION
   ================================================================ */
.home-footer {
    background-color: #0f0f11; /* Very dark charcoal */
    padding: 100px 0 0;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 992px) {
    .home-footer {
        z-index: 3; /* Sit on top of sticky contact section */
        box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.15); /* Cast drop shadow upwards */
    }
}

.footer-widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.footer-widget-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    max-width: 320px;
}

.footer-newsletter-form {
    position: relative;
    max-width: 340px;
}

.footer-newsletter-form input {
    width: 100%;
    background: #1c1c20;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 14px 55px 14px 22px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
    background: #ff8567;
}

.footer-link-heading {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link-list li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-question-box {
    gap: 15px;
}

.footer-phone-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 182, 39, 0.3);
    color: var(--color-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-phone-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-phone-num {
    font-size: 18px;
    font-weight: 700;
}

.footer-join-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-join-link:hover {
    color: var(--primary);
}

/* Middle Row */
.footer-middle-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 130px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.82);
    line-height: 0.85;
    margin: 0;
    letter-spacing: -3px;
}

.footer-brand-subtitle {
    display: none;
}

.footer-social-stack {
    display: flex;
    flex-direction: column;
    width: 360px;
}

.footer-social-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.35s ease;
}

.footer-social-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-item:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-social-item i.bi-arrow-up-right {
    opacity: 0.4;
    transition: all 0.35s ease;
}

.footer-social-item:hover i.bi-arrow-up-right {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Bottom Row */
.footer-bottom-row {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 1199px) {
    .footer-brand-title {
        font-size: 80px;
    }
    .footer-brand-subtitle {
        font-size: 14px;
        letter-spacing: 8px;
    }
}

@media (max-width: 991px) {
    .footer-brand-title {
        font-size: 60px;
    }
    .footer-brand-subtitle {
        font-size: 12px;
        letter-spacing: 6px;
    }
    .footer-social-stack {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .footer-brand-title {
        font-size: 45px;
    }
    .footer-brand-subtitle {
        font-size: 10px;
        letter-spacing: 4px;
    }
    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ================================================================
   RESULTS & CASE STUDIES SECTION (PRISTINE LIGHT THEME)
   ================================================================ */
.results-case-studies-sec {
    background-color: #f8fafc; /* Crisp Slate light background */
    padding: 120px 0;
    color: #18181b;
    position: relative;
    overflow: hidden;
    /* Grid background pattern */
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

.results-case-studies-sec .subtitle {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 74, 0.08);
    color: #ff7c42;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.results-case-studies-sec .sec-title-large {
    font-family: 'Figtree', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    color: #18181b; /* High-contrast slate-dark heading */
    margin-bottom: 0px;
    letter-spacing: -1px;
}

.premium-cs-card {
    background: #ffffff; /* Pure white card */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Extremely subtle border */
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Elegant soft shadow */
}

.premium-cs-card:hover {
    transform: translateY(-12px);
    border-color: #ff7c42;
    box-shadow: 0 30px 60px rgba(255, 107, 74, 0.12); /* Subtle glow shadow */
}

.cs-image-container {
    height: 280px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cs-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-cs-card:hover .cs-bg-img {
    transform: scale(1.08);
}

/* Beautiful Orange Glow Overlay on hover */
.cs-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 124, 66, 0) 30%, rgba(255, 124, 66, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.premium-cs-card:hover .cs-border-glow {
    opacity: 1;
}

.cs-cat-pill {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #18181b;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Figtree', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.06);
    letter-spacing: 0.5px;
    z-index: 3;
}

/* Massive Attracting Metrics Badge */
.cs-metric-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 107, 74, 0.95); /* Vibrant orange brand color */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(255, 107, 74, 0.35);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 3;
}

.premium-cs-card:hover .cs-metric-badge {
    transform: scale(1.05) translateY(-5px);
    background: #ff7c42;
    box-shadow: 0 15px 30px rgba(255, 124, 66, 0.5);
}

.cs-metric-badge .metric-num {
    font-family: 'Figtree', sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
}

.cs-metric-badge .metric-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    opacity: 0.9;
}

.premium-cs-content {
    padding: 30px;
    background: #ffffff; /* Clean white block */
}

.premium-cs-content .cs-title {
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #18181b;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.premium-cs-card:hover .cs-title {
    color: #ff7c42;
}

.premium-cs-content .cs-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #52525b; /* Slate-grey description text */
    line-height: 1.6;
    margin-bottom: 25px;
}

.cs-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #18181b;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cs-btn-link:hover {
    color: #ff7c42;
}

.cs-btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #18181b;
}

.cs-btn-link:hover .cs-btn-icon {
    background: #ff7c42;
    color: #ffffff;
    transform: rotate(45deg);
}

@media (max-width: 991px) {
    .results-case-studies-sec {
        padding: 80px 0;
    }
    .cs-image-container {
        height: 240px;
    }
}

/* Methodology Cards Styling */
.methodology-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    gap: 20px;
}

.methodology-card:hover {
    transform: translateY(-8px);
    border-color: #ff7c42;
    box-shadow: 0 20px 40px rgba(255, 107, 74, 0.08);
}

.method-num {
    font-family: 'Figtree', sans-serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 107, 74, 0.15); /* Soft glowing orange outline look */
    transition: color 0.3s ease;
}

.methodology-card:hover .method-num {
    color: #ff7c42; /* Vibrant orange on hover */
}

.method-title {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #18181b;
    margin-bottom: 12px;
}

.method-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #52525b;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .methodology-card {
        flex-direction: column;
        gap: 10px;
        padding: 30px;
    }
}

/* ================================================================
   INDUSTRIES WE SERVE SECTION
   ================================================================ */
.industries-serve-sec {
    background-color: #ffffff; /* Clean pure white background */
    padding: 120px 0;
    color: #18181b;
    position: relative;
    overflow: hidden;
}

.ind-pill-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 74, 0.08);
    color: #ff7c42;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
}

.ind-sec-title {
    font-family: 'Figtree', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    color: #18181b;
    letter-spacing: -1px;
}

.ind-sec-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #52525b;
    max-width: 600px;
    line-height: 1.6;
}

.industry-premium-card {
    background: #f8fafc; /* Subtle grey background */
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.industry-premium-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #ff7c42;
    box-shadow: 0 20px 40px rgba(255, 107, 74, 0.08);
}

.ind-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 107, 74, 0.08);
    color: #ff7c42;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.industry-premium-card:hover .ind-icon-wrap {
    background: #ff7c42;
    color: #ffffff;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 107, 74, 0.2);
}

.ind-title {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #18181b;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.industry-premium-card:hover .ind-title {
    color: #ff7c42;
}

.ind-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #52525b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Custom interactive line animation on hover */
.ind-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #ff7c42;
    transition: width 0.4s ease;
}

.industry-premium-card:hover .ind-hover-line {
    width: 100%;
}

@media (max-width: 991px) {
    .industries-serve-sec {
        padding: 80px 0;
    }
}

/* ================================================================
   MEGA MENU SYSTEM
   ================================================================ */
@media (min-width: 992px) {
    /* Set header relative positioning context */
    .header-ticket-wrapper {
        position: relative;
    }
    
    .desktop-menu ul li.has-megamenu {
        position: static; /* Let the mega menu expand relative to wrapper */
    }

    .desktop-menu ul li.has-megamenu:hover .megamenu-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .megamenu-panel {
        position: absolute;
        top: calc(100% + 15px);
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        width: 92vw;
        max-width: 1200px;
        background: #fdfdfd; /* Crisp off-white premium panel */
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
        text-align: left;
    }

    .megamenu-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .megamenu-row {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; /* Matching discover and middle links ratio */
        gap: 30px;
    }

    .mega-col-discover {
        background: #f4f5f6; /* Translucent grey side column */
        padding: 25px;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.04);
        text-align: left;
    }

    .mega-col-discover .mega-title {
        color: #18181b;
        font-family: 'Figtree', sans-serif;
        font-weight: 800;
        font-size: 16px;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 0;
    }

    .mega-col-links .mega-title {
        color: #ff7c42; /* Orange accent title */
        font-family: 'Figtree', sans-serif;
        font-weight: 800;
        font-size: 15px;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1.5px solid rgba(255, 107, 74, 0.15);
        padding-bottom: 8px;
        margin-top: 0;
        text-align: left;
    }

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

    .mega-links li {
        margin: 0;
        padding: 0;
    }

    .mega-links li a {
        font-family: 'Inter', sans-serif;
        font-size: 13.5px;
        color: #52525b !important;
        text-decoration: none !important;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        padding: 0;
        background: transparent;
    }

    .mega-links li a:hover {
        color: #ff7c42 !important;
        transform: translateX(3px);
    }

    .mega-col-discover .mega-links li a {
        color: #18181b !important;
        font-weight: 700;
    }

    .mega-col-discover .mega-links li a:hover {
        color: #ff7c42 !important;
    }

    /* Bottom Banners Row Styling */
    .megamenu-banners-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 30px;
    }

    .mega-banner {
        display: flex;
        border-radius: 12px;
        padding: 20px;
        text-decoration: none !important;
        position: relative;
        overflow: hidden;
        min-height: 110px;
        flex-direction: column;
        justify-content: flex-end;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        text-align: left;
    }

    .mega-banner:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    }

    /* Unique beautiful gradient styles for each banner matching the user's LG screenshot */
    .banner-ai {
        background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    }
    .banner-ai:hover {
        border-color: #ff7c42;
    }

    .banner-premium {
        background: linear-gradient(135deg, #ff7c42 0%, #ff9f68 100%);
    }

    .banner-audit {
        background: linear-gradient(135deg, #f4f5f6 0%, #e4e4e7 100%);
    }

    .banner-about {
        background: #ffffff;
    }

    .mega-banner .banner-badge {
        font-family: 'Figtree', sans-serif;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
        display: inline-block;
    }

    .banner-ai .banner-badge {
        color: #ff7c42;
    }

    .banner-premium .banner-badge {
        color: #ffffff;
    }

    .banner-audit .banner-badge {
        color: #ff7c42;
    }

    .banner-about .banner-badge {
        color: #52525b;
    }

    .mega-banner .banner-text {
        font-family: 'Figtree', sans-serif;
        font-weight: 800;
        font-size: 14px;
        line-height: 1.35;
    }

    .banner-ai .banner-text {
        color: #ffffff;
    }

    .banner-premium .banner-text {
        color: #ffffff;
    }

    .banner-audit .banner-text {
        color: #18181b;
    }

    .banner-about .banner-text {
        color: #18181b;
    }
}









