@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --pr-color: #f26522;
    --pr-grad: linear-gradient(135deg, #f26522 0%, #ff7733 100%);
    --pr-glow: rgba(242, 101, 34, 0.2);
    --se-color: #12192c;
    --se-grad: linear-gradient(135deg, #12192c 0%, #1e293b 100%);
    --ac-color: #0066cc;
    --ac-grad: linear-gradient(135deg, #0066cc 0%, #2563eb 100%);
    --bg-color: #F8FAFC;
    --su-color: #22C55E;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
    --shadow-premium: 0 20px 40px -10px rgba(15, 23, 42, 0.08), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 12px 25px rgba(242, 101, 34, 0.3);
    --shadow-ac-glow: 0 15px 30px rgba(0, 102, 204, 0.2);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(16px);
    
    /* Fonts */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-alt: 'Poppins', sans-serif;
}

/* Global Overrides */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--se-color);
    font-weight: 700;
}

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

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

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

/* Redesigned Premium Buttons */
.btn-premium {
    font-family: var(--font-alt);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-premium-primary {
    background: var(--pr-grad);
    color: white !important;
    box-shadow: var(--shadow-glow);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(242, 101, 34, 0.35);
    background: linear-gradient(135deg, #ff7733 0%, #f26522 100%);
}

.btn-premium-secondary {
    background: var(--se-color);
    color: white !important;
    box-shadow: var(--shadow-soft);
}

.btn-premium-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
    background: #1E293B;
}

.btn-premium-outline {
    background: transparent;
    color: var(--se-color) !important;
    border: 2px solid var(--se-color);
}

.btn-premium-outline:hover {
    background: var(--se-color);
    color: white !important;
    transform: translateY(-3px);
}

.btn-premium-white {
    background: white;
    color: var(--se-color) !important;
    box-shadow: var(--shadow-soft);
}

.btn-premium-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

/* 1. Header Redesign */
.main-header-modern-wraper {
    position: relative;
    z-index: 1050;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.top-header-modern {
    background: var(--pr-grad);
    padding: 8px 0;
    font-family: var(--font-alt);
    font-size: 13.5px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-header-modern a {
    color: #ffffff;
    transition: all 0.3s;
    text-decoration: none;
}

.top-header-modern a:hover {
    opacity: 0.9;
}

.top-header-socials {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-header-socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff !important;
    transition: all 0.3s;
}

.top-header-socials a:hover {
    background: #ffffff;
    color: var(--pr-color) !important;
    transform: translateY(-2px);
}

.top-header-modern a.btn-pay-now-mini,
.btn-pay-now-mini {
    background: #ffffff !important;
    color: var(--pr-color) !important;
    padding: 6px 18px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.top-header-modern a.btn-pay-now-mini:hover,
.btn-pay-now-mini:hover {
    background: var(--se-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
}

/* Main Navigation Header */
.main-header-modern {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Sticky state after scroll */
.main-header-modern-wraper.sticky-active .main-header-modern,
.main-header-modern.sticky-active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 10px 0;
    z-index: 1090;
}

/* Navigation Links */
.nav-link-modern {
    font-family: var(--font-alt);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--se-color) !important;
    padding: 8px 10px !important;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    position: relative;
    text-decoration: none;
    white-space: nowrap !important;
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 12px;
    right: 12px;
    height: 2.5px;
    background: var(--pr-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.nav-link-modern:hover::after,
.nav-item-modern.active .nav-link-modern::after {
    transform: scaleX(1);
}

.nav-link-modern:hover {
    color: var(--pr-color) !important;
}

/* Disable duplicate pseudo-element chevron arrows */
.nav-item-modern > a::after {
    display: none !important;
}

/* Mega Menu & Dropdown Redesign */
.nav-item-modern {
    position: relative;
}

.dropdown-modern-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-premium);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1010;
}

.nav-item-modern:hover .dropdown-modern-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-modern-menu li a {
    display: block;
    padding: 10px 24px;
    color: var(--se-color);
    font-family: var(--font-alt);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
}

.dropdown-modern-menu li a:hover {
    background: rgba(255, 90, 31, 0.05);
    color: var(--pr-color);
    padding-left: 28px;
}

/* Services Mega Menu */
.mega-menu-modern {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    width: 850px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-premium);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1010;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nav-item-modern:hover .mega-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-col-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 16px;
    color: var(--se-color);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(255, 90, 31, 0.1);
    display: block;
}

.mega-menu-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-sublist li {
    margin-bottom: 6px;
}

.mega-menu-sublist li a {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    padding: 4px 0;
}

.mega-menu-sublist li a:hover {
    color: var(--pr-color);
    transform: translateX(4px);
}

/* Search bar styling */
.header-search {
    position: relative;
}

.search-toggle-modern {
    color: var(--se-color);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 8px;
    display: inline-flex;
    align-items: center;
}

.search-toggle-modern:hover {
    color: var(--pr-color);
}

.header-search .search-box {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    padding: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
}

.header-search.active .search-box,
.header-search:hover .search-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hamburger modern button */
.hamburger-modern {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger-modern span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--se-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.hero-is-dark .main-header-modern:not(.sticky-active) .hamburger-modern span {
    background-color: white;
}

/* 2. Hero Section */
.hero-modern {
    min-height: 800px;
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 10% 20%, rgba(255, 90, 31, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(108, 77, 255, 0.04) 0%, transparent 45%),
                var(--bg-color);
    position: relative;
    overflow: hidden;
}

.glowing-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.6;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 90, 31, 0.12);
    top: 10%;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(108, 77, 255, 0.1);
    bottom: -100px;
    left: -100px;
}

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

.hero-tagline {
    background: rgba(255, 90, 31, 0.07);
    color: var(--pr-color);
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--se-color);
}

@media(max-width: 767px) {
    .hero-title {
        font-size: 38px;
    }
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.65;
    max-width: 600px;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Trust Badges */
.trust-badges-wrapper {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge-icon {
    font-size: 24px;
    color: var(--pr-color);
    background: rgba(255, 90, 31, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-text h6 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--se-color);
}

.trust-badge-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.google-rating-badge {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
}

.google-rating-stars {
    color: #FBBF24;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

/* Hero Right Side Graphic */
.hero-graphic-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 4px solid white;
}

.hero-main-img-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Floating Statistics Card */
.floating-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.floating-stat-card.fsc-1 {
    top: 15%;
    left: -15px;
    animation-delay: 0s;
}

.floating-stat-card.fsc-2 {
    bottom: 12%;
    right: -20px;
    animation-delay: 2s;
}

.floating-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.floating-stat-icon.icon-orange {
    background: var(--pr-grad);
    box-shadow: var(--shadow-glow);
}

.floating-stat-icon.icon-purple {
    background: var(--ac-grad);
    box-shadow: var(--shadow-ac-glow);
}

.floating-stat-data h5 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.floating-stat-data p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
}

/* Wave Divider at Bottom of Hero */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 10;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}

/* Client logos slider */
.hero-clients-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.client-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    opacity: 0.55;
    transition: opacity 0.3s, transform 0.3s;
    padding: 0 20px;
}

.client-logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.client-logo-item img {
    max-height: 38px;
    max-width: 130px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

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

/* 3. Services Section */
.services-section-modern {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.section-title-area {
    max-width: 650px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-tagline {
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--pr-color);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--se-color);
    line-height: 1.25;
}

/* Premium Services Cards */
.service-card-premium {
    background: var(--bg-color);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    background: white;
    border-color: rgba(255, 90, 31, 0.15);
    box-shadow: var(--shadow-premium);
}

.service-card-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 90, 31, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pr-color);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.service-card-premium:hover .service-card-icon-container {
    background: var(--pr-grad);
    color: white;
    box-shadow: var(--shadow-glow);
}

.service-card-premium:hover .service-card-icon-container img {
    filter: brightness(0) invert(1);
}

.service-card-icon-container img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    transition: filter 0.3s;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card-link {
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--pr-color);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.service-card-link i {
    font-size: 10px;
    transition: transform 0.2s;
}

.service-card-link:hover {
    color: var(--ac-color);
}

.service-card-link:hover i {
    transform: translateX(4px);
}

/* 4. Why Choose Us Section */
.why-choose-modern {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.why-choose-graphic-wrapper {
    position: relative;
    padding-right: 30px;
}

.why-choose-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.collage-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 3px solid white;
}

.collage-img-1 {
    grid-column: 1 / 10;
    grid-row: 1;
}

.collage-img-2 {
    grid-column: 7 / 13;
    grid-row: 1;
    margin-top: 60px;
    z-index: 2;
}

.why-choose-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: var(--se-color);
    color: white;
    padding: 22px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-choose-badge h4 {
    font-size: 40px;
    font-weight: 900;
    margin: 0;
    color: white;
    line-height: 1;
}

.why-choose-badge p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.why-choose-checklist {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.why-choose-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
}

.checklist-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: var(--su-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

.checklist-text h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.checklist-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Progress bar redesign */
.progress-list {
    margin-top: 30px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--se-color);
}

.progress-bar-container {
    height: 6px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--pr-grad);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* 5. About Section */
.about-section-modern {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.tabs-modern {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    margin-bottom: 25px;
    padding-bottom: 12px;
}

.tab-btn-modern {
    background: transparent;
    border: none;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
}

.tab-btn-modern.active {
    background: rgba(255, 90, 31, 0.08);
    color: var(--pr-color);
}

.tab-pane-modern {
    display: none;
}

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

/* 6. Timeline Process Section */
.process-section-modern {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.timeline-container {
    position: relative;
    margin-top: 60px;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(15, 23, 42, 0.05);
    z-index: 1;
}

.timeline-line-progress {
    height: 100%;
    width: 50%; /* Animated on viewport enter */
    background: var(--pr-grad);
    box-shadow: var(--shadow-glow);
    transition: width 2s ease;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 5;
}

@media(max-width: 991px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .timeline-line {
        left: 28px;
        top: 0;
        width: 3px;
        height: 100%;
    }
    .timeline-line-progress {
        width: 100%;
        height: 50%;
    }
}

.timeline-item {
    text-align: center;
}

@media(max-width: 991px) {
    .timeline-item {
        text-align: left;
        display: flex;
        gap: 25px;
    }
}

.timeline-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 3px solid rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 18px;
    color: var(--se-color);
    margin: 0 auto 25px auto;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.timeline-item:hover .timeline-node {
    border-color: var(--pr-color);
    background: var(--pr-grad);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.timeline-content-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.03);
    transition: all 0.3s;
}

.timeline-item:hover .timeline-content-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(255, 90, 31, 0.1);
}

.timeline-content-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

/* 7. Industries Section */
.industries-section-modern {
    padding: 100px 0;
    background: #FFFFFF;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media(max-width: 991px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 480px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

.industry-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
}

.industry-card:hover {
    background: white;
    transform: translateY(-6px);
    border-color: rgba(255, 90, 31, 0.2);
    box-shadow: var(--shadow-premium);
}

.industry-card-icon {
    font-size: 32px;
    color: var(--pr-color);
    margin-bottom: 12px;
    transition: all 0.3s;
}

.industry-card:hover .industry-card-icon {
    transform: scale(1.1);
    color: var(--ac-color);
}

.industry-card h5 {
    font-size: 16px;
    font-weight: 750;
    margin: 0;
    color: var(--se-color);
}

/* 8. Testimonials Section */
.testimonials-section-modern {
    padding: 100px 0;
    background: var(--bg-color);
}

.testimonial-card-glass {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.testimonial-card-glass:hover {
    background: white;
    box-shadow: var(--shadow-premium);
    transform: translateY(-3px);
}

.testimonial-rating {
    color: #FBBF24;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #E2E8F0;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-meta h6 {
    font-size: 15px;
    font-weight: 750;
    margin: 0 0 2px 0;
}

.testimonial-author-meta p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
}

/* Testimonial slider navigation customization */
.testimonial-nav-arrows {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.t-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--se-color);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
}

.t-arrow:hover {
    background: var(--pr-grad);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* 9. Blog Section */
.blog-section-modern {
    padding: 100px 0;
    background: #FFFFFF;
}

.blog-card-premium {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(255, 90, 31, 0.12);
}

.blog-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-premium:hover .blog-img-box img {
    transform: scale(1.08);
}

.blog-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pr-grad);
    color: white;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: var(--shadow-glow);
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-family: var(--font-alt);
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 17px;
    font-weight: 750;
    line-height: 1.4;
    color: var(--se-color);
    margin-bottom: 15px;
    margin-top: 0;
    flex-grow: 1;
}

.blog-card-link {
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 13px;
    color: var(--pr-color);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
    margin-top: auto;
}

.blog-card-link i {
    font-size: 10px;
    transition: transform 0.2s;
}

.blog-card-premium:hover .blog-card-link {
    color: var(--ac-color);
}

.blog-card-premium:hover .blog-card-link i {
    transform: translateX(4px);
}

/* 10. Contact Section */
.contact-section-modern {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.02);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(255, 90, 31, 0.1);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 90, 31, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--pr-color);
    flex-shrink: 0;
}

.contact-info-data p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: var(--text-muted);
}

.contact-info-data h6 {
    font-size: 15px;
    font-weight: 750;
    margin: 0;
    color: var(--se-color);
}

.contact-info-data h6 a {
    color: var(--se-color);
    text-decoration: none;
}

.contact-info-data h6 a:hover {
    color: var(--pr-color);
}

/* Grayscale Map */
.map-container-modern {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 3px solid white;
    margin-top: 30px;
    height: 250px;
    filter: grayscale(100%) contrast(1.1) invert(0.05);
    transition: all 0.5s;
}

.map-container-modern:hover {
    filter: grayscale(0%);
}

/* Modern Form Elements */
.glass-form-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: var(--shadow-premium);
}

/* Compact label for tighter rows */
.form-label-compact {
    font-family: var(--font-alt);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: block;
}

/* Compact input/select for tighter rows */
.form-control-compact {
    width: 100%;
    background: white !important;
    border: 1.5px solid rgba(15, 23, 42, 0.10) !important;
    border-radius: 10px !important;
    padding: 9px 14px !important;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--se-color) !important;
    outline: none !important;
    transition: all 0.3s;
    height: auto;
}

.form-control-compact:focus {
    border-color: var(--pr-color) !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.08) !important;
    outline: none !important;
}

.form-group-modern {
    margin-bottom: 20px;
    position: relative;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    background: white !important;
    border: 1.5px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--se-color) !important;
    outline: none !important;
    transition: all 0.3s;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    border-color: var(--pr-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.08) !important;
}

.form-group-modern label {
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.captcha-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    background: white;
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    padding: 8px 14px;
    margin-bottom: 0;
}

.captcha-box-modern {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--se-color);
    user-select: none;
}

.captcha-refresh-btn {
    font-family: var(--font-alt);
    font-size: 12px;
    font-weight: 700;
    color: var(--pr-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 11. CTA Section */
.cta-section-modern {
    padding: 80px 0;
    background: #FFFFFF;
}

.cta-box-premium {
    background: var(--se-grad);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.cta-box-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 77, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.cta-box-glow-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 10;
}

.cta-box-premium h2 {
    font-size: 44px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 18px;
}

.cta-box-premium p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 35px;
}

/* 12. Footer Section */
.footer-modern {
    background: #090D1A;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.footer-wave-svg {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 35px;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave-svg svg {
    display: block;
    width: 100%;
    height: 35px;
}

.footer-wave-svg .shape-fill {
    fill: #090D1A;
}

.footer-main-area {
    padding-top: 100px;
    padding-bottom: 60px;
}

.footer-logo-box {
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-social-links a:hover {
    background: var(--pr-color);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 18px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--pr-color);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: var(--pr-color);
    transform: translateX(4px);
}

/* Newsletter Input Redesign */
.newsletter-form-modern {
    margin-top: 15px;
    position: relative;
}

.newsletter-form-modern input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 14px 120px 14px 20px;
    color: white;
    outline: none;
    font-size: 13.5px;
    transition: all 0.3s;
}

.newsletter-form-modern input:focus {
    border-color: var(--pr-color);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form-modern .btn-subscribe {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--pr-grad);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    color: white;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s;
}

.newsletter-form-modern .btn-subscribe:hover {
    transform: scale(1.03);
}

.footer-bottom-area {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13.5px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Back To Top Button */
.back-to-top-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pr-grad);
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: none;
    text-decoration: none !important;
}

.back-to-top-modern.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 90, 31, 0.4);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 90, 31, 0.15); }
    50% { box-shadow: 0 0 25px rgba(255, 90, 31, 0.3); }
}

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

.reveal-active {
    animation: fadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Modal Popup Modern Design */
#exampleModal .modal-content {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 28px !important;
    box-shadow: var(--shadow-premium) !important;
    overflow: hidden;
}

#exampleModal .modal-header {
    background: var(--se-grad) !important;
    border-bottom: 2px solid var(--pr-color) !important;
    color: white !important;
    padding: 24px 30px !important;
}

#exampleModal .modal-title {
    color: white !important;
    font-size: 22px !important;
    font-weight: 800 !important;
}

#exampleModal .modal-title span {
    color: var(--pr-color);
}

#exampleModal .close {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 24px !important;
    opacity: 0.8 !important;
    cursor: pointer;
}

#exampleModal .close:hover {
    opacity: 1 !important;
    color: var(--pr-color) !important;
}

#exampleModal .modal-body {
    padding: 35px 30px !important;
    background: transparent !important;
}

#exampleModal .modal-footer {
    padding: 0 30px 30px 30px !important;
    background: transparent !important;
    border-top: none !important;
}

#exampleModal .btn-success {
    background: var(--pr-grad) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-family: var(--font-alt) !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-glow) !important;
}

#exampleModal .btn-success:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(255, 90, 31, 0.4) !important;
}

/* Custom dropdown selector support inside modern form group */
.form-group-modern select {
    width: 100%;
    background: white !important;
    border: 1.5px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--se-color) !important;
    outline: none !important;
    transition: all 0.3s;
    height: auto !important;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 16px !important;
}

.form-group-modern select:focus {
    border-color: var(--pr-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.08) !important;
}

/* Mobile responsive padding and border adjustments for glass-form-card */
@media (max-width: 575.98px) {
    .glass-form-card {
        padding: 24px 20px !important;
        border-radius: 20px !important;
    }
}

/* ==========================================================================
   REF DESIGN UI COMPONENTS & STYLING (LOGO & THEME ACCORDING)
   ========================================================================== */

/* Hero Banner Overlay & Content */
.banner-slider__wrapper {
    position: relative;
    background: #0f172a;
}

.slider-item {
    position: relative;
    background-position: center;
    background-size: cover;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(18, 25, 44, 0.92) 0%, rgba(18, 25, 44, 0.65) 60%, rgba(18, 25, 44, 0.4) 100%);
    z-index: 1;
}

.banner__content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 850px;
}

.banner__content .hero-badge {
    display: inline-block;
    background: rgba(242, 101, 34, 0.2);
    border: 1px solid rgba(242, 101, 34, 0.4);
    color: var(--pr-color);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-uppercase: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.banner__content .title {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.banner__content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Feature Cards (Empowering Section) */
.empower-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.empower-img-box::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: 10px; bottom: 10px;
    border: 3px solid var(--pr-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.empower-feature-card {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.empower-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(242, 101, 34, 0.2);
}

.empower-feature-card .icon-box {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: rgba(242, 101, 34, 0.1);
    color: var(--pr-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.empower-feature-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--se-color);
}

.empower-feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Dark Navy Highlight Section */
.dark-navy-section {
    background: var(--se-color);
    padding: 100px 0;
    position: relative;
}

.dark-navy-section .section-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
}

.dark-navy-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.dark-glass-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dark-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--pr-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dark-glass-card .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--pr-grad);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-glow);
}

.dark-glass-card h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.dark-glass-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-card-enquire {
    background: var(--pr-grad);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-glow);
    text-decoration: none !important;
    transition: all 0.3s;
}

.btn-card-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.4);
}

/* Counter / Stats Cards */
.stat-box-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.stat-box-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(242, 101, 34, 0.2);
}

.stat-box-card .number {
    font-family: var(--font-title);
    font-size: 42px;
    font-weight: 800;
    color: var(--pr-color);
    margin-bottom: 5px;
}

.stat-box-card .label {
    font-size: 15px;
    font-weight: 600;
    color: var(--se-color);
}

/* Service Cards Grid (Explore Services) */
.service-card-ref {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-ref:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(242, 101, 34, 0.3);
}

/* Service Card Feature Image Header */
.service-card-img-wrapper {
    height: 160px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #0f172a;
}

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

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

.service-card-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.65) 100%);
}

.service-card-ref .card-top-bar {
    height: 110px;
    background: var(--pr-grad);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-ref .card-top-bar.bar-blue {
    background: linear-gradient(135deg, #0066cc 0%, #2563eb 100%);
}

.service-card-ref .card-top-bar.bar-teal {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.service-card-ref .card-icon-floating {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--pr-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    position: absolute;
    bottom: -32px;
}

.service-card-ref .card-top-bar.bar-blue .card-icon-floating {
    color: #0066cc;
}

.service-card-ref .card-top-bar.bar-teal .card-icon-floating {
    color: #00b894;
}

.service-card-ref .card-body-content {
    padding: 45px 25px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.service-card-ref .service-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--se-color);
    margin-bottom: 12px;
}

.service-card-ref .service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-ref .btn-read-more {
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--pr-color);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}

.service-card-ref .btn-read-more:hover {
    color: var(--se-color);
    transform: translateX(4px);
}

/* Multi-Color Ribbon Divider */
.multi-color-ribbon {
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #22c55e 0%, #0066cc 33%, #f26522 66%, #ef4444 100%);
}

/* Blog Cards Grid (Explore Blogs) */
.blog-card-ref {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-ref:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.blog-card-ref .blog-banner {
    height: 160px;
    background: var(--pr-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.blog-card-ref .blog-banner h5 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.blog-card-ref .blog-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-ref .blog-title {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--se-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-ref .blog-title a {
    color: var(--se-color);
    text-decoration: none;
    transition: color 0.25s;
}

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

.blog-card-ref .blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    color: var(--pr-color);
    text-decoration: none !important;
    margin-top: 15px;
    transition: all 0.3s;
}

.blog-card-ref .blog-btn:hover {
    color: var(--se-color);
    transform: translateX(4px);
}

/* Contact / Form Card */
.contact-form-ref {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

/* ==========================================================================
   RIGHT SIDE FLOATING ACTION BUTTONS (WHATSAPP, CALL, ENQUIRY)
   ========================================================================== */
.floating-actions-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
}

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

.float-btn-whatsapp {
    background: #25D366;
    animation: whatsappPulse 2s infinite;
}

.float-btn-call {
    background: #0066cc;
}

.float-btn-enquiry {
    background: var(--pr-grad);
}

.float-btn-top {
    background: var(--se-color);
    width: 44px;
    height: 44px;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
}

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

/* Tooltip text for float buttons */
.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 62px;
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--font-alt);
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.float-btn::after {
    content: '';
    position: absolute;
    right: 56px;
    border-width: 5px 0 5px 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(15, 23, 42, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.float-btn:hover::before,
.float-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   NEW FEATURES: PAYU BADGE, 2-COLUMN MEGA MENU, RIGHT TAB, BOTTOM BAR
   ========================================================================== */

/* Top Header Request a Call Button */
.btn-request-call-mini {
    background: #ffffff !important;
    color: var(--se-color) !important;
    padding: 5px 16px !important;
    border-radius: 30px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-request-call-mini:hover {
    background: var(--se-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Main Navbar Pay with PayU Badge Button */
.btn-payu-main {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: #000000 !important;
    border: 2px solid var(--pr-color) !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 18px rgba(242, 101, 34, 0.25) !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-payu-main:hover {
    background: var(--pr-grad) !important;
    color: #ffffff !important;
    border-color: var(--pr-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 101, 34, 0.4) !important;
}

.btn-payu-main img {
    height: 18px;
    width: auto;
}

/* STANDARD MODERN 2-COLUMN MEGA MENU */
.mega-menu-modern-ref {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    width: 900px;
    max-width: 95vw;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-premium);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    display: flex;
    overflow: hidden;
}

.nav-item-modern:hover .mega-menu-modern-ref {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-left {
    width: 38%;
    background: var(--pr-grad);
    padding: 15px 0;
}

.mega-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-cat-item {
    padding: 0;
    transition: background 0.2s;
}

.mega-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
    color: #ffffff !important;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none !important;
    transition: all 0.25s;
}

.mega-cat-item:hover,
.mega-cat-item.active {
    background: rgba(255, 255, 255, 0.2);
}

.mega-cat-item:hover .mega-cat-link,
.mega-cat-item.active .mega-cat-link {
    padding-left: 26px;
}

.mega-menu-right {
    width: 62%;
    padding: 25px 30px;
    background: #ffffff;
    min-height: 380px;
}

.mega-sub-panel {
    display: none;
}

.mega-sub-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mega-sub-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 17px;
    color: var(--se-color);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(242, 101, 34, 0.15);
}

.mega-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.mega-sub-list li a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
    padding: 4px 0;
}

.mega-sub-list li a:hover {
    color: var(--pr-color);
    transform: translateX(6px);
}

/* Container as positioning context for centered Mega Menu */
.main-header-modern .container {
    position: relative;
}

.nav-item-mega-parent {
    position: static !important;
}

/* STANDARD MODERN 2-COLUMN MEGA MENU (CENTERED) */
.mega-menu-modern-ref {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    width: 880px;
    max-width: 95vw;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    display: flex;
    overflow: hidden;
}

.nav-item-mega-parent:hover .mega-menu-modern-ref {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Hide Vertical Sticky Side Tab on Right Edge as requested */
.sticky-right-tab {
    display: none !important;
}

/* ==========================================================================
   IMAGE 2 THEME: HERO GLASS BANNER SLIDER
   ========================================================================== */
.hero-glass-slider-wrapper {
    position: relative;
    background: #0f172a;
    overflow: hidden;
}

.hero-glass-slide-item {
    min-height: 560px;
    background-size: cover;
    background-position: center right;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-glass-slide-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.45) 60%, rgba(15, 23, 42, 0.15) 100%);
    z-index: 1;
}

.hero-glass-slide-item .container {
    position: relative;
    z-index: 2;
}

.hero-glass-card {
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    max-width: 640px;
}

.hero-glass-badge {
    display: inline-block;
    background: #00897b;
    color: #ffffff;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 13.5px;
    padding: 8px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.3);
}

.hero-glass-title {
    font-family: var(--font-title);
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-glass-desc {
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-hero-green {
    background: #00897b;
    color: #ffffff !important;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 137, 123, 0.4);
    border: none;
}

.btn-hero-green:hover {
    background: #00796b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 137, 123, 0.6);
}

.hero-slider-arrows {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.hero-arrow-btn {
    width: 44px;
    height: 44px;
    background: #00897b;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-arrow-btn:hover {
    background: #00796b;
    transform: scale(1.05);
}

.hero-thumbnails-strip {
    position: absolute;
    bottom: 35px;
    right: 35px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-thumb-card {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
    cursor: pointer;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.hero-thumb-card:hover,
.hero-thumb-card.active {
    border-color: #00897b;
    transform: translateY(-4px) scale(1.05);
}

.hero-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ==========================================================================
   NEW HERO BANNER SLIDER (MODERN DUAL-COLUMN SPLIT LAYOUT)
   ========================================================================== */
.hero-modern-wrapper {
    position: relative;
    background: #0f172a;
    width: 100%;
    overflow: hidden;
}

.banner-slider_2 {
    position: relative;
    width: 100%;
}

.banner-slider_2 .slick-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 15;
}

.banner-slider_2 .slick-dots li {
    margin: 0;
    list-style: none;
}

.banner-slider_2 .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #ffffff;
    font-size: 0;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-slider_2 .slick-dots li.slick-active button {
    background: var(--pr-color) !important;
    width: 32px !important;
    border-radius: 10px !important;
    border-color: var(--pr-color) !important;
}



.banner-slider_2 .slick-prev,
.banner-slider_2 .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    font-size: 16px;
}

.banner-slider_2 .slick-prev {
    left: 20px;
}

.banner-slider_2 .slick-next {
    right: 20px;
}

.banner-slider_2 .slick-prev:hover,
.banner-slider_2 .slick-next:hover {
    background: var(--pr-color);
    border-color: var(--pr-color);
    transform: translateY(-50%) scale(1.1);
}

.hero-slide-modern-item {
    min-height: 500px;
    padding-top: 30px !important;
    padding-bottom: 50px !important;
    position: relative;
    display: flex;
    align-items: flex-start !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100%;
}

/* Remove dark overlay completely so background banner image is 100% visible */
.hero-slide-modern-item::before {
    display: none !important;
}

.hero-slide-modern-item .container {
    position: relative;
    z-index: 2;
}

/* Transparent Glass Content Card (Left Side) */
.hero-content-glass-card {
    background: rgba(15, 23, 42, 0.40) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

/* Hero Pill Badge - Positioned UP */
.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 101, 34, 0.3);
    border: 1px dashed rgba(242, 101, 34, 0.8);
    color: #ffa46a;
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--font-alt);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.25);
}

/* Hero Title */
.hero-title-modern {
    font-family: var(--font-title);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-title-modern .text-highlight-orange {
    color: #f26522;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Hero Description */
.hero-desc-modern {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 25px;
    max-width: 620px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Feature Check Pills */
.hero-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.hero-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 600;
}

.hero-feature-pill i {
    color: #f26522;
}

/* Hero Action Buttons */
.hero-actions-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.btn-hero-primary {
    background: var(--pr-grad);
    color: #ffffff !important;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.4);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(242, 101, 34, 0.6);
}

.btn-hero-outline {
    background: rgba(15, 23, 42, 0.45);
    color: #ffffff !important;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-outline:hover {
    background: #ffffff;
    color: var(--se-color) !important;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Transparent Right Showcase Growth Card Container */
.hero-showcase-container {
    position: relative;
    padding: 0;
}

.hero-growth-card {
    background: rgba(15, 23, 42, 0.40) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    position: relative;
}

.hero-growth-card-title {
    font-family: var(--font-title);
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-market-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.3s ease;
}

.hero-market-box:hover {
    background: rgba(242, 101, 34, 0.18);
    border-color: rgba(242, 101, 34, 0.4);
    transform: translateY(-4px);
}

.hero-market-box .market-icon {
    font-size: 24px;
    color: #f26522;
    margin-bottom: 8px;
}

.hero-market-box h6 {
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    margin-bottom: 4px;
}

.hero-market-box span {
    color: #38bdf8;
    font-size: 12.5px;
    font-weight: 600;
}

/* Floating Stats Badge */
.floating-stat-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatStat 3s ease-in-out infinite;
}

@keyframes floatStat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 991.98px) {
    .hero-title-modern {
        font-size: 34px;
    }
    .hero-showcase-container {
        margin-top: 40px;
    }
}

/* Bottom Fixed Action Bar - Slim & Compact Height */
.bottom-action-bar-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1090;
    box-shadow: 0 -3px 15px rgba(15, 23, 42, 0.2);
    display: flex;
    background: #ffffff;
    height: 38px;
}

.bottom-action-btn {
    flex: 1;
    padding: 6px 10px !important;
    text-align: center;
    color: #ffffff !important;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 12px !important;
    text-decoration: none !important;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.3s;
    cursor: pointer;
    line-height: 1;
}

.action-whatsapp { background: #25D366; }
.action-whatsapp:hover { background: #1eb957; }

.action-call { background: #0066cc; }
.action-call:hover { background: #0052a3; }

.action-enquiry { background: var(--pr-color); }
.action-enquiry:hover { background: #e05310; }


/* Responsive adjustments */
@media (max-width: 991.98px) {
    .floating-actions-container {
        bottom: 50px;
    }
}

/* ======================================================
   CUSTOM STYLES MATCHING USER REFERENCE IMAGES
   ====================================================== */

/* Image 1: Three Feature Cards */
.three-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.three-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.three-feature-icon {
    font-size: 32px;
    color: #e11d48;
    min-width: 45px;
}

.three-feature-card h5 {
    color: #0f172a;
    font-weight: 800;
    font-size: 19px;
    margin-bottom: 10px;
}

.three-feature-card p {
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* Image 2: Marketplace Growth Cards */
.marketplace-growth-card {
    background: #ffffff;
    border: 1.5px solid #e0f2fe;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.marketplace-growth-card:hover {
    border-color: #f26522;
    box-shadow: 0 12px 30px rgba(242, 101, 34, 0.15);
    transform: translateY(-5px);
}

.marketplace-logo-box {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.marketplace-logo-box img {
    max-height: 60px;
    max-width: 160px;
    object-fit: contain;
}

.marketplace-logo-icon {
    font-size: 44px;
    color: #f26522;
}

.marketplace-growth-card h5 {
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Image 3: About Company & Stats */
.about-company-img-wrapper {
    position: relative;
}

.about-exp-blue-box {
    background: #3b82f6;
    color: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.about-exp-blue-box h2 {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.about-exp-blue-box p {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 8px;
    margin-bottom: 0;
}

.about-stat-panel {
    background: #fef2f2;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
}

.about-stat-panel .stat-sub-label {
    color: #e11d48;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.about-stat-panel h3 {
    color: #0f172a;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 8px;
}

.about-stat-panel p {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

/* Image 4: Orange Header Service Cards */
.other-service-orange-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.other-service-orange-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(242, 101, 34, 0.15);
}

.other-service-header-orange {
    background: #f97316;
    padding: 35px 20px;
    text-align: center;
    color: #ffffff;
}

.other-service-header-orange i {
    font-size: 48px;
    color: #ffffff;
}

.other-service-body-white {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.other-service-body-white h5 {
    font-size: 17px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Image 5: Claim Growth CTA Box */
.growth-cta-dark-section {
    background: #1e1e1e;
    padding: 60px 0;
    color: #ffffff;
}

.growth-cta-box-inner {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.growth-cta-box-inner h3 {
    color: #ffffff;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 8px;
}

.growth-cta-box-inner p {
    color: #9ca3af;
    font-size: 13.5px;
    margin-bottom: 25px;
}

.btn-growth-orange {
    background: #ff7700;
    color: #ffffff !important;
    font-family: var(--font-alt);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

/* Pay with PayU Single Line Fix */
.btn-payu-main {
    white-space: nowrap !important;
    word-break: normal !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 8px 18px !important;
    background: #f26522 !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(242, 101, 34, 0.3) !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    border: none !important;
    min-width: max-content !important;
}

.btn-payu-main:hover {
    background: #12192c !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Clean Image Banner Slider Fix (Height 540px & Object-Fit Cover) */
.hero-modern-wrapper {
    background: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
}

.banner-slider_2,
.banner-slider_2 .slick-list,
.banner-slider_2 .slick-track,
.banner-slider_2 .slick-slide {
    background: #ffffff !important;
}

.hero-clean-banner-slide {
    width: 100%;
    height: 540px;
    overflow: hidden;
    display: block;
    background: #ffffff !important;
}

.hero-clean-banner-img {
    width: 100% !important;
    height: 540px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 auto !important;
}

@media (max-width: 991px) {
    .hero-clean-banner-slide,
    .hero-clean-banner-img {
        height: 360px !important;
    }
}

@media (max-width: 576px) {
    .hero-clean-banner-slide,
    .hero-clean-banner-img {
        height: 240px !important;
    }
}

/* Slick Slider Arrows & Dots */
.banner-slider_2 .slick-prev,
.banner-slider_2 .slick-next {
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(15, 23, 42, 0.6) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.banner-slider_2 .slick-prev:hover,
.banner-slider_2 .slick-next:hover {
    background: #f26522 !important;
}

.banner-slider_2 .slick-prev {
    left: 20px !important;
}

.banner-slider_2 .slick-next {
    right: 20px !important;
}

.banner-slider_2 .slick-dots {
    bottom: 15px !important;
    z-index: 20 !important;
}

.banner-slider_2 .slick-dots li button:before {
    font-size: 11px !important;
    color: #f26522 !important;
    opacity: 0.4 !important;
}

.banner-slider_2 .slick-dots li.slick-active button:before {
    color: #f26522 !important;
    opacity: 1 !important;
}

/* Services Solid Orange 2-Column Flyout Menu (Matching Image 3) */
.services-flyout-parent {
    position: relative;
}

.services-orange-flyout-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 660px;
    display: flex;
    background: #f26522;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 99999;
    overflow: hidden;
    border-top: 3px solid #d45113;
}

.services-flyout-parent:hover .services-orange-flyout-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-parent-col {
    width: 48%;
    background: #e65c00;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 0;
}

.services-parent-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-parent-list li {
    position: relative;
}

.services-parent-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.services-parent-list li a i {
    font-size: 11px;
    opacity: 0.85;
}

.services-parent-list li:hover a,
.services-parent-list li.active a {
    background: #ff7700 !important;
    color: #ffffff !important;
    padding-left: 20px;
}

.services-child-col {
    width: 52%;
    background: #ff7700;
    padding: 10px 0;
}

.services-child-panel {
    display: none;
}

.services-child-panel.active {
    display: block;
}

.services-child-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-child-panel ul li a {
    display: block;
    padding: 10px 18px;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none !important;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.services-child-panel ul li a:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    padding-left: 22px;
    font-weight: 700;
}

/* Generic 2-Column Parent-Child Flyout Dropdown Menu System */
.parent-child-flyout-parent {
    position: relative;
}

.parent-child-flyout-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 660px;
    display: flex;
    background: #12192c;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 99999;
    overflow: hidden;
    border-top: 3px solid #f26522;
}

.parent-child-flyout-parent:hover .parent-child-flyout-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.flyout-parent-col {
    width: 44%;
    background: #0f172a;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
}

.flyout-parent-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.flyout-parent-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    color: #cbd5e1 !important;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.flyout-parent-list li a i {
    font-size: 11px;
    opacity: 0.7;
}

.flyout-parent-list li:hover a,
.flyout-parent-list li.active a {
    background: #f26522 !important;
    color: #ffffff !important;
    padding-left: 20px;
}

.flyout-child-col {
    width: 56%;
    background: #1e293b;
    padding: 10px 0;
}

.flyout-child-panel {
    display: none;
}

.flyout-child-panel.active {
    display: block;
}

.flyout-child-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.flyout-child-panel ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: #f1f5f9 !important;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none !important;
    line-height: 1.4;
    transition: all 0.2s ease;
}

/* Hero Clean Banner Slider */
.hero-clean-banner-slide {
    width: 100%;
    background: #0f172a;
    text-align: center;
}

.hero-clean-banner-img {
    width: 100% !important;
    height: 500px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
}

@media (max-width: 768px) {
    .hero-clean-banner-img {
        height: auto !important;
        max-height: 260px !important;
    }
}

/* Main Menu Navigation Row Relative Positioning for Central Flyouts */
.main-menu {
    position: relative !important;
}

.main-menu > ul > li.nav-item-modern {
    position: static !important;
}

/* Center all mega menus perfectly relative to navbar row with 100% consistent styling */
.services-orange-flyout-wrapper,
.parent-child-flyout-wrapper {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(12px) !important;
    width: 820px !important;
    max-width: 92vw !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    z-index: 1200 !important;
    display: flex !important;
    overflow: hidden !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.services-flyout-parent:hover .services-orange-flyout-wrapper,
.parent-child-flyout-parent:hover .parent-child-flyout-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Left Parent Column (Unified Dark Theme across all mega menus) */
.services-parent-col,
.flyout-parent-col {
    width: 42% !important;
    background: #0f172a !important;
    padding: 12px 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.services-parent-list,
.flyout-parent-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.services-parent-list li a,
.flyout-parent-list li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 20px !important;
    color: #cbd5e1 !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.services-parent-list li.active a,
.services-parent-list li:hover a,
.flyout-parent-list li.active a,
.flyout-parent-list li:hover a {
    background: #ff6a00 !important;
    color: #ffffff !important;
    padding-left: 24px !important;
}

/* Right Child Column (Unified Clean White Theme across all mega menus) */
.services-child-col,
.flyout-child-col {
    width: 58% !important;
    background: #ffffff !important;
    padding: 14px 10px !important;
}

.services-child-panel,
.flyout-child-panel {
    display: none;
}

.services-child-panel.active,
.flyout-child-panel.active {
    display: block !important;
}

.services-child-panel ul,
.flyout-child-panel ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.services-child-panel ul li a,
.flyout-child-panel ul li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 16px !important;
    color: #1e293b !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.services-child-panel ul li a:hover,
.flyout-child-panel ul li a:hover {
    background: #fff8f2 !important;
    color: #ff6a00 !important;
    transform: translateX(4px) !important;
}

/* Other Services Slider Section */
.other-services-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.other-services-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(242, 101, 34, 0.15);
    border-color: #f26522;
}

.other-services-card .card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #fff8f2;
    color: #f26522;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.other-services-card h5 {
    color: #0f172a;
    font-weight: 800;
    font-size: 19px;
    margin-bottom: 12px;
}

.other-services-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.other-services-card .service-subtags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.other-services-card .service-subtag {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Contact Us Page Style - Marketplace Growth Services Grid */
.services-grid-section {
    background-color: #ffffff !important;
    padding: 70px 0 !important;
}

.services-grid-section .title-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.services-grid-section .title-wrapper h2 {
    font-size: 38px;
    font-weight: 900;
    color: #111111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.services-grid-section .title-wrapper h2 span {
    color: #ff6a00;
}

.services-grid-section .title-wrapper p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.services-choose__item {
    background: #ffffff !important;
    border: 1px solid rgba(74, 144, 226, 0.4) !important;
    border-radius: 12px !important;
    padding: 30px 20px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    height: 350px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 24px;
}

.services-choose__item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.18) !important;
    border-color: #3b82f6 !important;
}

.services-choose__item .icon-wrapper {
    height: 140px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
    width: 100% !important;
}


/* Marketplace Landing Page Premium Redesign Styles */
.marketplace-landing-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 90px 0 70px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.marketplace-brand-strip {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
}

.brand-logo-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #334155;
    transition: all 0.3s ease;
}

.brand-logo-pill:hover {
    border-color: #ff6a00;
    color: #ff6a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,106,0,0.15);
}

.service-highlight-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,106,0,0.15);
    border-color: #ff6a00;
}

.service-highlight-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #fff8f2;
    color: #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.premium-marketplace-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-marketplace-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.16);
    border-color: #ff6a00;
}

.premium-marketplace-logo-area {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
}

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

.kpi-metric-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.kpi-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,106,0,0.12);
    border-color: #ff6a00;
}

.kpi-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fff8f2;
    color: #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px auto;
}

/* Zero-out header gutter to eliminate space between header and banner slider */
.header-gutter,
.header-gutter.home {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Premium Section Spacing & 8px System */
.section-space-lg {
    padding: 90px 0;
}

@media (max-width: 991px) {
    .section-space-lg {
        padding: 60px 0;
    }
}

.max-w-1280 {
    max-width: 1280px;
    margin: 0 auto;
}

/* Hero Section Enhancements */
.hero-v2-container {
    background: radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(30, 41, 59, 0.8) 0%, transparent 60%),
                linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 90px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-v2-pill {
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.3);
    color: #ff6a00;
    font-weight: 700;
    font-size: 13.5px;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-illustration-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-illustration-wrapper img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Modern Hover Effects for Feature Cards & Brand Cards */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Glassmorphic Contact Card */
.contact-form-card-v2 {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.contact-form-card-v2 .form-control,
.contact-form-card-v2 .form-select {
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 14px 18px;
    font-size: 14.5px;
    transition: all 0.25s ease;
}

.contact-form-card-v2 .form-control:focus,
.contact-form-card-v2 .form-select:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.15);
}

/* Blog Cards Modern V2 */
.blog-card-v2 {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(255, 106, 0, 0.12);
    border-color: #ff6a00;
}

.blog-card-v2 .blog-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-card-v2 .blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-v2 .blog-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff6a00;
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 30px;
}

.blog-card-v2 .blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

/* Premium Dark Footer */
.footer-enterprise-dark {
    background: #0f172a;
    color: #94a3b8;
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 14.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-enterprise-dark h5 {
    color: #ffffff;
    font-weight: 800;
    font-size: 17px;
    margin-bottom: 24px;
    position: relative;
}

.footer-enterprise-dark h5::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: #ff6a00;
    border-radius: 2px;
    margin-top: 8px;
}

.footer-enterprise-dark ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-enterprise-dark ul li {
    margin-bottom: 12px;
}

.footer-enterprise-dark ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-enterprise-dark ul li a:hover {
    color: #ff6a00;
    transform: translateX(4px);
}

.footer-social-pill {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-pill:hover {
    background: #ff6a00;
    color: white;
    transform: translateY(-3px);
}

/* Ensure all mega menu and flyout menu links/text are strictly left aligned */
.services-orange-flyout-wrapper,
.parent-child-flyout-wrapper,
.mega-menu-modern,
.dropdown-modern-menu,
.services-parent-list li a,
.flyout-parent-list li a,
.services-child-panel ul li a,
.flyout-child-panel ul li a {
    text-align: left !important;
}

.services-parent-list li a *,
.flyout-parent-list li a *,
.services-child-panel ul li a *,
.flyout-child-panel ul li a * {
    text-align: left !important;
}

/* Slick Slider Custom Styles for Other Services Slider (4 cards per view / col-3) */
.other-services-slider {
    margin: 0 -12px;
    padding-bottom: 50px;
}

.other-services-slider .slick-slide {
    padding: 0 12px;
    height: auto;
}

.other-services-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.other-services-slider .slick-slide > div {
    height: 100%;
}

.other-services-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.other-services-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.15);
    border-color: #ff6a00;
}

/* Slick Arrows & Dots styling */
.other-services-slider .slick-prev,
.other-services-slider .slick-next {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.other-services-slider .slick-prev {
    left: -20px;
}

.other-services-slider .slick-next {
    right: -20px;
}

.other-services-slider .slick-prev:hover,
.other-services-slider .slick-next:hover {
    background: #ff6a00;
    border-color: #ff6a00;
}

.other-services-slider .slick-prev:before,
.other-services-slider .slick-next:before {
    color: #0f172a;
    font-size: 18px;
    opacity: 1;
    transition: color 0.3s ease;
}

.other-services-slider .slick-prev:hover:before,
.other-services-slider .slick-next:hover:before {
    color: #ffffff;
}

.other-services-slider .slick-dots {
    bottom: 0px;
}

.other-services-slider .slick-dots li button:before {
    font-size: 10px;
    color: #cbd5e1;
    opacity: 1;
}

.other-services-slider .slick-dots li.slick-active button:before {
    color: #ff6a00;
}


