/* ==========================================================
   OMA TECH SOLUTIONS - Premium Modern Styles
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1e3a5f;
    --primary-light: #3b82f6;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --gradient-main: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #0ea5e9 100%);
    --gradient-card: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 64px rgba(37,99,235,0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 72px;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-primary);
    color: #334155;
    overflow-x: hidden;
    background: #f8fafc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 116px;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

::selection {
    background: var(--primary);
    color: #fff;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ================================================================
   🚀 NEW MODERN HEADER
   ================================================================ */

.oma-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -- TOP BAR -- */
.oma-topbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
    z-index: 101;
}
.oma-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px 20px;
}
.oma-topbar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.oma-topbar-link {
    color: rgba(255,255,255,0.75) !important;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}
.oma-topbar-link i {
    color: var(--accent);
    font-size: 12px;
}
.oma-topbar-link:hover {
    color: #fff !important;
}
.oma-topbar-location {
    color: rgba(255,255,255,0.55) !important;
    font-size: 12px;
}

.oma-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.oma-topbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.oma-topbar-links a {
    color: rgba(255,255,255,0.65) !important;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}
.oma-topbar-links a:hover {
    color: var(--accent) !important;
}
.oma-topbar-divider {
    color: rgba(255,255,255,0.15);
    font-size: 12px;
}

.oma-topbar-social {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.oma-topbar-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: rgba(255,255,255,0.6) !important;
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition);
}
.oma-topbar-social a:hover {
    background: var(--accent);
    color: #0f172a !important;
    transform: translateY(-1px);
}

/* -- MAIN NAVBAR -- */
.oma-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
}
.oma-navbar {
    position: relative;
    z-index: 100;
    background: #fff;
}
.oma-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

/* Logo */
.oma-logo {
    flex-shrink: 0;
}
.oma-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.oma-logo img {
    max-height: 44px;
    width: auto;
    transition: var(--transition);
}
.oma-logo a:hover img {
    transform: scale(1.03);
}

/* Navigation */
.oma-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.oma-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.oma-nav-list > li {
    position: relative;
}
.oma-nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.2px;
}
.oma-nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 3px;
    background: var(--gradient-card);
    border-radius: 4px;
    transition: var(--transition);
}
.oma-nav-list > li:hover > a,
.oma-nav-list > li.oma-active > a {
    color: var(--primary);
    background: rgba(37,99,235,0.06);
}
.oma-nav-list > li:hover > a::after,
.oma-nav-list > li.oma-active > a::after {
    transform: translateX(-50%) scaleX(1);
}
.oma-drop-icon {
    font-size: 10px;
    transition: transform 0.3s;
}
.oma-nav-list > li:hover .oma-drop-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.oma-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    border: 1px solid #f1f5f9;
}
.oma-dropdown:hover .oma-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.oma-dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.oma-dropdown-menu li a:hover {
    color: var(--primary);
    background: #f8fafc;
    border-left-color: var(--primary);
    padding-left: 30px;
}

/* Right Actions */
.oma-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Phone Button */
.oma-phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    border-radius: 50px;
    background: #f8fafc;
    text-decoration: none !important;
    transition: var(--transition);
    border: 1px solid transparent;
}
.oma-phone-btn:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}
.oma-phone-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    flex-shrink: 0;
}
.oma-phone-text {
    line-height: 1.2;
}
.oma-phone-text small {
    display: block;
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.oma-phone-text strong {
    font-size: 13px;
    color: #1e293b;
    font-weight: 700;
}

/* CTA Button */
.oma-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}
.oma-btn-primary {
    background: var(--gradient-card);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(37,99,235,0.25);
}
.oma-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}
.oma-btn-primary:hover::before {
    transform: translateX(100%);
}
.oma-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,99,235,0.35);
    color: #fff !important;
}
.oma-btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* Hamburger Menu Toggle */
.oma-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.oma-menu-toggle:hover {
    background: var(--primary);
}
.oma-menu-toggle:hover .oma-hamburger-line {
    background: #fff;
}
.oma-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.oma-hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #1e293b;
    border-radius: 4px;
    transition: var(--transition);
}

/* ===== STICKY HEADER ===== */
.oma-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.oma-sticky.oma-sticky-visible {
    transform: translateY(0);
}
.oma-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 20px;
}
.oma-sticky-logo img {
    max-height: 38px;
}
.oma-sticky-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.oma-sticky-nav .oma-nav-list > li > a {
    padding: 8px 14px;
    font-size: 13px;
}
.oma-sticky-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ===== MOBILE OVERLAY ===== */
.oma-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.oma-mobile-overlay.oma-open {
    opacity: 1;
    visibility: visible;
}
.oma-mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.oma-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.oma-mobile-overlay.oma-open .oma-mobile-panel {
    transform: translateX(0);
}
.oma-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}
.oma-mobile-logo {
    max-height: 36px;
}
.oma-mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #64748b;
    transition: var(--transition);
}
.oma-mobile-close:hover {
    background: var(--primary);
    color: #fff;
}
.oma-mobile-nav {
    flex: 1;
    padding: 16px 0;
}
.oma-mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.oma-mobile-list > li {
    border-bottom: 1px solid #f8fafc;
}
.oma-mobile-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: var(--transition);
}
.oma-mobile-list > li > a:hover {
    color: var(--primary);
    background: #f8fafc;
    padding-left: 28px;
}
.oma-mobile-list > li > ul {
    list-style: none;
    padding: 0 0 8px 36px;
    margin: 0;
    display: none;
    background: #fafbfc;
}
.oma-mobile-list > li > ul.oma-open {
    display: block;
}
.oma-mobile-list > li > ul li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    transition: var(--transition);
}
.oma-mobile-list > li > ul li a:hover {
    color: var(--primary);
}

.oma-mobile-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
}
.oma-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}
.oma-mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.oma-mobile-contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 14px;
}
.oma-mobile-contact-item div {
    line-height: 1.3;
}
.oma-mobile-contact-item div span {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}
.oma-mobile-contact-item div strong {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
}
.oma-mobile-contact-item a div strong {
    color: var(--primary);
}

.oma-mobile-social {
    display: flex;
    gap: 8px;
}
.oma-mobile-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    color: #475569;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}
.oma-mobile-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 1199px) {
    .oma-phone-btn {
        display: none;
    }
}
@media (max-width: 991px) {
    body {
        padding-top: 64px;
    }
    .oma-topbar {
        display: none;
    }
    .oma-navbar-inner {
        height: 64px;
    }
    .oma-logo img {
        max-height: 36px;
    }
    .oma-nav {
        display: none;
    }
    .oma-phone-btn {
        display: none;
    }
    .oma-btn-primary {
        display: none;
    }
    .oma-menu-toggle {
        display: flex !important;
    }
    .oma-sticky .oma-sticky-nav {
        display: none;
    }
    .oma-sticky .oma-btn-primary {
        display: none;
    }
    .oma-sticky .oma-menu-toggle {
        display: flex !important;
    }
}
@media (max-width: 576px) {
    .oma-container {
        padding: 0 14px;
    }
}

/* ================================================================
   HIDE OLD HEADER CLASSES (from style.css)
   ================================================================ */
.main-header,
.header-top,
.header-lower,
.sticky-header,
.mobile-menu {
    display: none !important;
}

/* ================================================================
   OLD STYLES (preserved for content)
   ================================================================ */

/* ===== BANNER / HERO ===== */
.banner-section .slide-item {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
}
.banner-section .slide-item .bg-image {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center !important;
}
.banner-section .slide-item .bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,58,95,0.75) 50%, rgba(37,99,235,0.55) 100%);
}
.banner-section .slide-item .content-box { 
    position: relative; 
    z-index: 2; 
    max-width: 720px; 
    padding: 60px 0;
}
.banner-section .slide-item .content-box .sub-title {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
.banner-section .slide-item .content-box h1.title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.banner-section .slide-item .content-box .text {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}
.banner-section .slide-item .content-box .btn-box { display: flex; gap: 15px; flex-wrap: wrap; }

/* Banner Navigation Dots */
.banner-section .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.banner-section .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    outline: none;
}
.banner-section .owl-dots .owl-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .banner-section .slide-item { min-height: 480px; }
    .banner-section .slide-item .content-box h1.title { font-size: 32px; }
    .banner-section .slide-item .content-box .text { font-size: 15px; }
}

/* ===== PAGE BANNER ===== */
.page-banner {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-main);
    text-align: center;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
    animation: bannerOrbA 8s ease-in-out infinite;
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
    pointer-events: none;
    animation: bannerOrbB 10s ease-in-out infinite;
}
@keyframes bannerOrbA {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}
@keyframes bannerOrbB {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 30px); }
}
.page-banner h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.page-banner .breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}
.page-banner .breadcrumb li,
.page-banner .breadcrumb li a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: var(--transition);
}
.page-banner .breadcrumb li a:hover { color: var(--accent); }
.page-banner .breadcrumb li.active { color: var(--accent); font-weight: 600; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.2); }

/* ===== SECTION TITLE ===== */
.sec-title { margin-bottom: 50px; }
.sec-title .sub-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.sec-title .sub-title::before,
.sec-title .sub-title::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gradient-card);
    border-radius: 2px;
}
.sec-title.text-center .sub-title::before,
.sec-title.text-center .sub-title::after { display: none; }
.sec-title.text-center .sub-title {
    background: rgba(37,99,235,0.08);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
}
.sec-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.sec-title .text { font-size: 16px; color: #64748b; line-height: 1.8; }

/* ===== SECTION PADDING ===== */
section { padding: 100px 0; }
@media (max-width: 991px) { section { padding: 70px 0; } }
@media (max-width: 576px) { section { padding: 50px 0; } }

/* ===== SERVICE CARD (Small - Homepage) ===== */
.service-block-six .inner-box {
    padding: 35px 20px;
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-height: 170px;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}
.service-block-six .inner-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-card);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-block-six .inner-box:hover::before { transform: scaleX(1); }
.service-block-six .inner-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-block-six .inner-box .icon { 
    font-size: 40px; 
    color: var(--primary); 
    margin-bottom: 15px; 
    display: block;
    transition: var(--transition);
}
.service-block-six .inner-box:hover .icon { 
    transform: scale(1.15);
    background: var(--gradient-card);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-block-six .inner-box .title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
    line-height: 1.4;
}

/* ===== SERVICE HIGHLIGHT CARD ===== */
.service-highlight {
    padding: 30px 22px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}
.service-highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(37,99,235,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}
.service-highlight:hover::before { opacity: 1; }
.service-highlight:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.service-highlight .icon-box {
    width: 64px; height: 64px;
    line-height: 64px;
    background: #eff6ff;
    border-radius: 16px;
    text-align: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.service-highlight:hover .icon-box {
    background: var(--gradient-card);
    color: #fff;
    border-radius: 50%;
    transform: rotateY(180deg);
}
.service-highlight h5 { 
    font-size: 15px; 
    font-weight: 700; 
    margin-bottom: 6px; 
    color: #0f172a;
    position: relative; z-index: 1; 
}
.service-highlight p { 
    font-size: 12px; 
    color: #94a3b8; 
    margin-bottom: 0; 
    line-height: 1.6; 
    position: relative; z-index: 1; 
}

/* ===== MODERN CARD ===== */
.modern-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    height: 100%;
}
.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.modern-card .card-img {
    height: 200px;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}
.modern-card .card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}
.modern-card .card-img .badge {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 2;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}
.modern-card .card-body { padding: 24px; }
.modern-card .card-body .cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}
.modern-card .card-body h5 { 
    font-size: 18px; 
    font-weight: 700; 
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
}
.modern-card .card-body h5 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.modern-card .card-body h5 a:hover { color: var(--primary); }
.modern-card .card-body p { 
    font-size: 14px; 
    color: #64748b; 
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===== PROJECT CARD ===== */
.project-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    height: 100%;
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.project-card .img-box {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    background: var(--gradient-card);
    position: relative;
    overflow: hidden;
}
.project-card .img-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}
.project-card:hover .img-box::before { opacity: 1; }
.project-card .img-box i {
    transition: var(--transition);
}
.project-card:hover .img-box i {
    transform: scale(1.2);
}
.project-card .content { padding: 20px 22px; }
.project-card .content .cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}
.project-card .content h5 { 
    font-size: 16px; 
    font-weight: 700; 
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.3;
}
.project-card .content p { 
    font-size: 13px; 
    color: #64748b; 
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== OFFICE CARD ===== */
.office-card {
    padding: 40px 30px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}
.office-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-card);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.office-card:hover::after { transform: scaleX(1); }
.office-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.office-card .icon { 
    font-size: 40px; 
    color: var(--primary); 
    margin-bottom: 18px;
    display: inline-block;
    padding: 16px;
    background: #eff6ff;
    border-radius: 20px;
}
.office-card h4 { 
    font-size: 20px; 
    font-weight: 700; 
    margin-bottom: 10px; 
    color: #0f172a; 
}
.office-card p { 
    font-size: 14px; 
    color: #64748b; 
    line-height: 1.8; 
}
.office-card p strong { color: #334155; }

/* ===== STATS ===== */
.stat-item {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-card);
}
.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.stat-item .number { 
    font-size: 38px; 
    font-weight: 800; 
    background: var(--gradient-card);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; 
    margin-bottom: 6px; 
}
.stat-item .label { font-size: 14px; color: #64748b; font-weight: 500; }

/* ===== EXPERIENCE BADGE ===== */
.experience-badge {
    display: inline-block;
    background: var(--gradient-card);
    color: #fff;
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 15px 40px rgba(37,99,235,0.25);
    position: relative;
    overflow: hidden;
}
.experience-badge .number { font-size: 52px; font-weight: 900; line-height: 1; display: block; }
.experience-badge .text { font-size: 15px; font-weight: 600; margin-top: 4px; color: rgba(255,255,255,0.9); }

/* ===== CONTACT INFO CARD ===== */
.contact-info-card {
    padding: 35px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}
.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.contact-info-card .icon { 
    font-size: 40px; 
    color: var(--primary); 
    margin-bottom: 15px;
    display: inline-block;
    padding: 14px;
    background: #eff6ff;
    border-radius: 16px;
}
.contact-info-card h5 { 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 10px; 
    color: #0f172a; 
}
.contact-info-card p { font-size: 14px; color: #64748b; margin-bottom: 3px; }
.contact-info-card a { 
    color: var(--primary); 
    font-weight: 600; 
    text-decoration: none;
    transition: var(--transition);
}
.contact-info-card a:hover { color: var(--primary-dark); }

/* ===== TEAM CARD ===== */
.team-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid #f1f5f9;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.team-card .img-box {
    height: 200px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.team-card .img-box .avatar-letter {
    width: 80px; height: 80px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,99,235,0.2);
}
.team-card .img-box .social-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}
.team-card:hover .img-box .social-overlay { opacity: 1; }
.team-card .img-box .social-overlay a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #0f172a;
    transition: var(--transition);
    text-decoration: none;
}
.team-card .img-box .social-overlay a:hover { background: var(--primary); color: #fff; }
.team-card .content { padding: 24px 20px; }
.team-card .content h5 { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
.team-card .content .desig { font-size: 13px; color: var(--primary); font-weight: 600; }
.team-card .content p { font-size: 13px; color: #94a3b8; margin-top: 10px; margin-bottom: 0; line-height: 1.6; }

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid #f1f5f9;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 64px;
    color: rgba(37,99,235,0.06);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.testimonial-card .stars { 
    color: var(--accent); 
    font-size: 13px; 
    margin-bottom: 12px; 
    letter-spacing: 2px;
    display: flex;
    gap: 2px;
}
.testimonial-card .text { 
    font-size: 15px; 
    color: #475569; 
    line-height: 1.8; 
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author .avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient-card);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 16px;
    flex-shrink: 0;
}
.testimonial-card .author .info h6 { font-size: 15px; font-weight: 700; margin: 0; color: #0f172a; }
.testimonial-card .author .info span { font-size: 12px; color: #94a3b8; }

/* ===== PROCESS CARD ===== */
.process-card {
    text-align: center;
    padding: 24px;
}
.process-card .step-num {
    width: 56px; height: 56px;
    line-height: 56px;
    background: var(--gradient-card);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.2);
    position: relative;
    transition: var(--transition);
}
.process-card:hover .step-num {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37,99,235,0.3);
}
.process-card .step-num::after {
    content: '';
    position: absolute;
    top: 50%; left: calc(100% + 20px);
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}
.process-card:last-child .step-num::after { display: none; }
.process-card h5 { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.process-card p { font-size: 14px; color: #64748b; line-height: 1.7; margin-bottom: 0; }

/* ===== BLOG CARD ===== */
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.blog-card .img-box {
    height: 200px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: rgba(37,99,235,0.3);
    position: relative;
}
.blog-card .img-box .date {
    position: absolute;
    bottom: 0; left: 0;
    background: var(--gradient-card);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 var(--radius) 0 0;
    font-size: 13px;
    font-weight: 600;
}
.blog-card .content { padding: 24px; }
.blog-card .content .meta { 
    font-size: 12px; 
    color: #94a3b8; 
    margin-bottom: 10px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.blog-card .content .meta i { margin-right: 4px; }
.blog-card .content h5 { 
    font-size: 17px; 
    font-weight: 700; 
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-card .content h5 a { color: inherit; text-decoration: none; transition: var(--transition); }
.blog-card .content h5 a:hover { color: var(--primary); }
.blog-card .content p { font-size: 14px; color: #64748b; margin-bottom: 16px; line-height: 1.7; }
.blog-card .content .read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.blog-card .content .read-more:hover { 
    gap: 10px; 
    color: var(--primary-dark);
}

/* ===== PRICING CARD ===== */
.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    position: relative;
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(37,99,235,0.12);
    transform: scale(1.03);
}
.pricing-card:not(.featured):hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.pricing-card.featured .pricing-header {
    background: var(--gradient-card);
    color: #fff;
}
.pricing-card.featured .pricing-header h5,
.pricing-card.featured .pricing-header .price { color: #fff; }
.pricing-card .popular-badge {
    position: absolute;
    top: 20px; right: -32px;
    background: var(--gradient-accent);
    color: #0f172a;
    padding: 4px 40px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.pricing-header {
    padding: 32px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}
.pricing-header h5 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.pricing-header .price { 
    font-size: 42px; 
    font-weight: 800; 
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-header .price span { font-size: 16px; font-weight: 500; color: #94a3b8; }
.pricing-header p { font-size: 13px; color: #64748b; margin-bottom: 0; }
.pricing-body { padding: 32px; }
.pricing-body ul { list-style: none; padding: 0; margin: 0; }
.pricing-body ul li {
    padding: 10px 0;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #f8fafc;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-body ul li i { color: var(--success); font-size: 12px; }
.pricing-body ul li i.fa-times { color: #ef4444; }
.pricing-footer { padding: 0 32px 32px; text-align: center; }

/* ===== FAQ ===== */
.accordion-box .accordion { 
    margin-bottom: 8px; 
    border-radius: var(--radius-sm); 
    overflow: hidden; 
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}
.accordion-box .accordion:hover { border-color: #e2e8f0; }
.accordion-box .accordion .acc-btn {
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-box .accordion .acc-btn .icon {
    font-size: 12px;
    color: var(--primary);
    transition: var(--transition);
    width: 28px; height: 28px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.accordion-box .accordion .acc-btn.active { background: #f8fafc; color: var(--primary); }
.accordion-box .accordion .acc-btn.active .icon { 
    transform: rotate(45deg);
    background: var(--primary); 
    color: #fff; 
}
.accordion-box .accordion .acc-content { display: none; }
.accordion-box .accordion .acc-content.current { display: block; }
.accordion-box .accordion .acc-content .content { 
    padding: 4px 22px 18px;
    animation: fadeInAccordion 0.3s ease;
}
@keyframes fadeInAccordion {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.accordion-box .accordion .acc-content .content .text { font-size: 14px; color: #64748b; line-height: 1.8; }

/* ===== CALLBACK FORM ===== */
.callback-form {
    background: var(--gradient-main);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.callback-form::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.callback-form h3 { font-size: 26px; font-weight: 800; margin-bottom: 6px; color: #fff; position: relative; z-index: 1; }
.callback-form p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 24px; position: relative; z-index: 1; }
.callback-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}
.callback-form .form-control::placeholder { color: rgba(255,255,255,0.5); }
.callback-form .form-control:focus { 
    background: rgba(255,255,255,0.15); 
    border-color: var(--accent); 
    box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
    color: #fff;
    outline: none;
}
.callback-form .form-control option { color: #0f172a; }
.callback-form .btn-submit {
    background: var(--gradient-accent);
    color: #0f172a;
    font-weight: 700;
    padding: 13px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
}
.callback-form .btn-submit:hover { 
    opacity: 0.95; 
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}
.callback-form .btn-submit:active {
    transform: translateY(0);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    width: 54px; height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 32px rgba(37,211,102,0.5);
    color: #fff;
}
.whatsapp-float .pulse-ring {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: waPulse 2s infinite;
    pointer-events: none;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ===== CALL FLOAT ===== */
.call-float {
    position: fixed;
    bottom: 24px; left: 24px;
    z-index: 999;
    width: 54px; height: 54px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 24px rgba(37,99,235,0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: callPulse 2s infinite;
}
.call-float:hover {
    transform: scale(1.1);
    color: #fff;
}
@keyframes callPulse {
    0% { box-shadow: 0 6px 24px rgba(37,99,235,0.4); }
    50% { box-shadow: 0 6px 36px rgba(37,99,235,0.6); }
    100% { box-shadow: 0 6px 24px rgba(37,99,235,0.4); }
}

/* ===== CLIENT LOGO ===== */
.client-logo-item {
    display: flex;
    align-items: center; justify-content: center;
    padding: 20px;
    height: 70px;
    background: #fff;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}
.client-logo-item:hover { 
    color: var(--primary); 
    border-color: var(--primary); 
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

/* ===== ABOUT HIGHLIGHT ===== */
.about-intro { padding: 100px 0; }
.about-intro .text-large { font-size: 16px; line-height: 1.9; color: #475569; }
.about-intro .highlight-box {
    background: #f8fafc;
    border-left: 4px solid var(--primary);
    padding: 22px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 20px 0;
    transition: var(--transition);
}
.about-intro .highlight-box:hover {
    background: #eff6ff;
    transform: translateX(6px);
}
.about-intro .highlight-box h4 { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.about-intro .highlight-box p { font-size: 14px; color: #64748b; margin: 0; }

/* ===== SERVICE CATEGORY HEADER ===== */
.service-category-header {
    background: var(--gradient-card);
    padding: 16px 24px;
    border-radius: var(--radius);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.2);
}
.service-category-header span { font-size: 22px; }

/* ===== BOTTOM TEXT CTA ===== */
.bottom-text { margin-top: 40px; }
.bottom-text .inner {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
    border: 1px solid #e2e8f0;
}
.bottom-text .inner .text { 
    font-size: 16px; 
    color: #334155;
    font-weight: 500;
    margin-bottom: 16px;
}
.bottom-text .inner .text .color2 { color: var(--primary); font-weight: 700; }

/* ===== SCROLL TO TOP ===== */
.scroll-to-top { 
    background: var(--gradient-card);
    width: 44px; height: 44px;
    line-height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37,99,235,0.3);
    transition: var(--transition);
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.scroll-to-top:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.scroll-to-top .fa { color: #fff; }

/* ===== COUNTER BLOCK ===== */
.counter-block .inner {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}
.counter-block .inner:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.counter-block .icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    display: inline-block;
}
.counter-block .count-box { 
    font-size: 40px; 
    font-weight: 800;
    background: var(--gradient-card);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 4px;
}
.counter-block .counter-title {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0;
}

/* ===== FUN FACT SECTION ===== */
.fun-fact-section .fact-counter { margin-top: 30px; }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .page-banner { padding: 70px 0; }
    .page-banner h1 { font-size: 32px; }
    .sec-title h2 { font-size: 28px; }
    .about-intro { padding: 60px 0; }
    .experience-badge { padding: 24px 28px; }
    .experience-badge .number { font-size: 40px; }
    .callback-form { padding: 28px; }
    .pricing-card.featured { transform: none; }
    .process-card .step-num::after { display: none; }
}

@media (max-width: 576px) {
    .page-banner h1 { font-size: 26px; }
    .sec-title h2 { font-size: 24px; }
    .service-highlight { margin-bottom: 16px; }
    .whatsapp-float { width: 46px; height: 46px; font-size: 20px; bottom: 16px; right: 16px; }
    .call-float { width: 46px; height: 46px; font-size: 18px; bottom: 16px; left: 16px; }
    .banner-section .slide-item .content-box .btn-box { flex-direction: column; }
    .banner-section .slide-item .content-box h1.title { font-size: 28px; }
}

/* ===== LOADING SPINNER ===== */
.preloader { 
    background: #fff;
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader::after {
    content: '';
    width: 40px; height: 40px;
    border: 3px solid #f1f5f9;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FORM STYLES ===== */
.contact-form .form-group { margin-bottom: 16px; }
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 14px;
    color: #334155;
    transition: var(--transition);
    width: 100%;
    background: #fff;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    outline: none;
}
.contact-form .title-box {
    margin-bottom: 24px;
}
.contact-form .title-box .sub-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    display: block;
    margin-bottom: 6px;
}
.contact-form .title-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

/* ===== ALERT ===== */
.alert { 
    border-radius: var(--radius-sm); 
    padding: 14px 18px; 
    font-size: 14px;
    margin-bottom: 20px;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== MISC ===== */
section.bg-color3 { background: #f8fafc; }
.sponsors-outer { padding: 20px 0; }
.list-style-three { 
    list-style: none; 
    padding: 0; 
    margin: 0;
}
.list-style-three li { 
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}
.list-style-three li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}
.list-style-two {
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-style-two li {
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}
.list-style-two li i { color: var(--success); }

.blockquote-style-one {
    background: #f8fafc;
    border-left: 4px solid var(--primary);
    padding: 18px 22px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14px;
    color: #475569;
    font-style: italic;
    margin: 20px 0;
}

/* ===== FOOTER OVERRIDES ===== */
.main-footer { background: #0f172a; position: relative; overflow: hidden; }
.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-card);
}
.main-footer .widgets-section { padding: 70px 0 40px; }
.main-footer .footer-widget .widget-title { 
    color: #fff; 
    font-size: 18px; 
    font-weight: 700; 
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.main-footer .footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-card);
    border-radius: 4px;
}
.main-footer .footer-widget.about-widget .text { 
    color: #94a3b8; 
    font-size: 14px; 
    line-height: 1.8; 
    margin: 16px 0;
}
.main-footer .footer-widget .user-links { list-style: none; padding: 0; margin: 0; }
.main-footer .footer-widget .user-links li { margin-bottom: 6px; }
.main-footer .footer-widget .user-links li a { 
    color: #94a3b8; 
    font-size: 14px; 
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.main-footer .footer-widget .user-links li a:hover { 
    color: var(--accent); 
    padding-left: 6px; 
}
.main-footer .footer-widget.contact-widget .widget-content .text { 
    color: #94a3b8; 
    font-size: 14px; 
    line-height: 1.8; 
    margin-bottom: 12px;
}
.main-footer .footer-widget.contact-widget .contact-info { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.main-footer .footer-widget.contact-widget .contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-footer .footer-widget.contact-widget .contact-info li i {
    color: var(--accent);
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 13px;
}
.main-footer .footer-widget.contact-widget .contact-info li a { 
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}
.main-footer .footer-widget.contact-widget .contact-info li a:hover { 
    color: var(--accent); 
}
.main-footer .footer-bottom { 
    background: #0b1120; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    padding: 20px 0;
}
.main-footer .footer-bottom .inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.main-footer .footer-bottom .copyright-text { 
    color: #64748b; 
    font-size: 13px;
    margin: 0;
}
.main-footer .footer-bottom .copyright-text a { 
    color: var(--accent);
    text-decoration: none;
}
.main-footer .footer-bottom .copyright-text a:hover { text-decoration: underline; }
.social-icon-two {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    gap: 10px;
}
.social-icon-two li a { 
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: var(--transition);
    text-decoration: none;
}
.social-icon-two li a:hover { 
    background: var(--primary); 
    color: #fff; 
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Marquee */
.marquee-section { 
    background: var(--gradient-dark);
    padding: 16px 0;
    overflow: hidden;
}
.marquee-section .marquee {
    display: flex;
    gap: 0;
    overflow: hidden;
    user-select: none;
}
.marquee-section .marquee .marquee-group {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
    padding: 0 20px;
    flex-shrink: 0;
    min-width: 100%;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
.marquee-section:hover .marquee .marquee-group { animation-play-state: paused; }
.marquee-section .marquee .marquee-group .text { 
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
    padding: 4px 0;
}

/* =====================================================================
   PREMIUM ANIMATION EFFECTS
   ===================================================================== */

/* 🎯 Counter Number Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.counter-block .count-text { animation: countUp 0.6s ease forwards; }

/* 🎯 Entrance Stagger */
@keyframes staggerFadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.service-block-six { opacity: 0; }
.service-block-six.wow { animation: staggerFadeIn 0.6s ease forwards; }
.service-block-six:nth-child(1) { animation-delay: 0.05s; }
.service-block-six:nth-child(2) { animation-delay: 0.1s; }
.service-block-six:nth-child(3) { animation-delay: 0.15s; }
.service-block-six:nth-child(4) { animation-delay: 0.2s; }
.service-block-six:nth-child(5) { animation-delay: 0.25s; }
.service-block-six:nth-child(6) { animation-delay: 0.3s; }
.service-block-six:nth-child(7) { animation-delay: 0.35s; }
.service-block-six:nth-child(8) { animation-delay: 0.4s; }
.service-block-six:nth-child(9) { animation-delay: 0.45s; }
.service-block-six:nth-child(10) { animation-delay: 0.5s; }
.service-block-six:nth-child(11) { animation-delay: 0.55s; }
.service-block-six:nth-child(12) { animation-delay: 0.6s; }

/* 🎯 Glow Pulse Effect */
@keyframes glowPulse {
    0% { box-shadow: 0 0 20px rgba(37,99,235,0.1); }
    50% { box-shadow: 0 0 40px rgba(37,99,235,0.2); }
    100% { box-shadow: 0 0 20px rgba(37,99,235,0.1); }
}
.experience-badge { animation: glowPulse 3s ease-in-out infinite; }

/* 🎯 Shimmer Effect on Buttons */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.oma-btn-primary {
    background: linear-gradient(90deg, #2563eb, #0ea5e9, #2563eb);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
}

/* 🎯 Rotate Icon on Hover */
.service-highlight .icon-box,
.office-card .icon,
.contact-info-card .icon { transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.service-highlight:hover .icon-box,
.office-card:hover .icon,
.contact-info-card:hover .icon { transform: scale(1.1) rotate(-5deg); }

/* 🎯 Banner Shape Animation */
.anim-icons img { animation: floatShape 6s ease-in-out infinite; }
@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* 🎯 Team Card Image Zoom */
.team-card .img-box { overflow: hidden; }
.team-card .img-box .avatar-letter { 
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.team-card:hover .img-box .avatar-letter { 
    transform: scale(1.15) rotate(10deg);
}

/* 🎯 Pricing Featured Card Glow */
.pricing-card.featured { 
    animation: featuredGlow 3s ease-in-out infinite;
}
@keyframes featuredGlow {
    0%, 100% { box-shadow: 0 20px 60px rgba(37,99,235,0.12); }
    50% { box-shadow: 0 30px 80px rgba(37,99,235,0.2); }
}

/* 🎯 Blog Card Image Icon Animation */
.blog-card .img-box i { 
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.blog-card:hover .img-box i { transform: scale(1.3) rotate(-10deg); }

/* 🎯 Modern Card Icon Animation */
.modern-card .card-img i {
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.modern-card:hover .card-img i { transform: scale(1.4); }

/* 🎯 List Check Animation */
.list-style-three li::before {
    animation: checkPop 0.4s ease forwards;
    opacity: 0;
    transform: scale(0);
}
@keyframes checkPop {
    to { opacity: 1; transform: scale(1); }
}
.list-style-three li:nth-child(1)::before { animation-delay: 0.1s; }
.list-style-three li:nth-child(2)::before { animation-delay: 0.2s; }
.list-style-three li:nth-child(3)::before { animation-delay: 0.3s; }
.list-style-three li:nth-child(4)::before { animation-delay: 0.4s; }
.list-style-three li:nth-child(5)::before { animation-delay: 0.5s; }
.list-style-three li:nth-child(6)::before { animation-delay: 0.6s; }
.list-style-three li:nth-child(7)::before { animation-delay: 0.7s; }

/* 🎯 Responsive Animation Tweaks */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}