:root {
    /* Light Mode Variables (Default) */
    --bg-color: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
    --primary: #007bff; /* HelloTech Blue */
    --accent: #ff9900;
    --card-bg: #f8f9fa;
    --input-bg: #ffffff;
    --border: #eeeeee;
    --section-light-2: #eff7ff;
    --bg-hero: #f37f0c;
    --bg-orange:#ff9900;
    --boder-color:#e1e1e1;    
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --text-white: #ffffff;
    --text-smoke: #f5f5f5;
    --text-service-a: #0189f6;
    --transition:.5s;
    --header-button-color:#0c529b;
}
[data-theme="dark"] {
    /* Dark Mode Variables */
    --bg-color: #0f172a;
    --header-bg: rgba(15, 23, 42, 0.95);
    --primary: #1496f3;
    --card-bg: #1e293b;
    --input-bg: #1e293b;
    --border: #334155;
    --section-light-2: #1b2742;
    --bg-hero: #0f172a;
    --bg-orange:#1e293b;
    --boder-color:#172e61;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-white:#f2f2f2;
    --text-smoke: #94a3b8;
    --text-service-a: #ff6000;
    --header-button-color: #ffa707;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    transition: background-color 0.3s ease, color 0.3s ease;
}
a{text-decoration:none;}
.container {
    width: 100%;
    max-width: 1362px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.main-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.main_content{
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
}
.site_content{
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
}

.top-contact-bar {
    background: #0c529b;
    color: #fff;
    width: 100%;
}

.top-contact-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
    gap: 20px;
}

.top-contact-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-contact-left a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.top-contact-left a:hover {
    text-decoration: underline;
}

.top-contact-right span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #eaf4ff;
    text-align: right;
}

@media (max-width: 768px) {
    .top-contact-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .top-contact-left {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .top-contact-left a {
        font-size: 0.9rem;
    }

    .top-contact-right span {
        font-size: 0.85rem;
        text-align: left;
    }
}

/* Header Base */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border);
    height: 75px;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.nav-container .logo{
    height: 100%;
}
.nav-container .logo img{
    height: 100%;
    width: auto;
}
.nav-container .logo #darklogo{
    display:none;
}
/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links > li > a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    /* display: flex; */
}

.nav-links > li > a:hover {
    color: var(--primary);
}
.nav-links li svg{
    width: 25px;
    height: 30px;
    float: right;
    margin-top: -3px;
    transition: .5s;
    fill: var(--text-main);
}
.nav-links li a:hover svg{transform: rotate(180deg);}
/* Mega Menu Engine */
.has-mega-menu {
    position: static; /* Required for full-width mega menu */
}

.mega-menu {
    position: absolute;
    background: var(--card-bg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 40px 0;
    display: inline-block;
    width: 100%;
    float: left;
    left: 0;
    right: 0;
    top: 75px;
    bottom: 0;
    z-index: 99999;
    height: 95vh;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
    width: 100%;
}
.mega-header{
    width: 100%;
    clear: both;
    float: left;
    margin-bottom: 25px;
}
.mega-header h2{
    font-size: 2rem;
    margin-bottom: 10px;
}
.mega-header p{}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    float: left;
    width: 100%;
    margin: 15px 0;
}

.mega-col h4 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.mega-grid .mega-col:first-child{
    border-right: 1px solid var(--border);
}
.mega-col ul {
    list-style: none;
}

.mega-col ul li a {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.mega-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ===== Header Contact Mini ===== */
.header-contact-mini {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-contact-mini a {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.header-contact-mini a:hover {
    color: var(--primary);
}

@media (max-width: 1200px) {
    .header-contact-mini {
        display: none;
    }
}

.track-book {
    color: #fff;
    font-size: 0.9rem;
    display: block;
    height: 100%;
    padding: 10px 15px;
    background: var(--header-button-color);
    border-radius: 5px;
    transition:.5s;
    border: 1px solid var(--header-button-color);
}
.track-book:hover{
    background: transparent;
    color: var(--header-button-color);
}
.track-link {
    color: var(--header-button-color);
    font-size: 0.9rem;
    display: block;
    height: 100%;
    padding: 10px 15px;
    background: transparent;
    border-radius: 5px;
    transition:.5s;
    border: 1px solid var(--header-button-color);
}
.track-link:hover{
    background: var(--header-button-color);
    color: #fff;
}
/* ══════════════════════════════════════
   Simple Dropdown — Other Services
══════════════════════════════════════ */
.has-dropdown {
    position: relative;
}
.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}
.has-dropdown > a svg {
    width: 20px;
    height: 20px;
    float: none;
    margin: 0;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.has-dropdown:hover > a svg {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    min-width: 290px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, top 0.25s ease, visibility 0.25s;
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 8px);
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
    color: var(--text-main);
}
.dropdown-menu li a:hover {
    background: var(--bg-color);
}
.dropdown-menu li a:hover .dd-text strong {
    color: var(--primary);
}
.dd-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(12,82,155,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dd-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
    transition: color 0.2s;
}
.dd-text small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ── Mobile sub-menu ── */
.mobile-sub-menu {
    list-style: none;
    padding-left: 14px;
    display: none;
    border-left: 2px solid var(--border);
    margin: 4px 0 8px;
}
.mobile-sub-menu.open { display: block; }
.mobile-sub-menu li a {
    display: block;
    padding: 9px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: none !important;
}
.mobile-sub-menu li a:hover { color: var(--primary); }

.mobile-toggle{display:none;}
/* Responsive Logic */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none; /* In a real project, you'd trigger a mobile drawer here */
    }
    .track-link {
        display: none;
    }
}


.theme-btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }

/*
.logo { font-size: 1.5rem; font-weight: 800; text-decoration: none; color: var(--text-main); }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 500; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
*/



/* Global Section Standards */
.section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-color);
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Updated Hero Section (HelloTech Style) */
.hero-section {
    background-color: var(--bg-hero);
    padding-top: 60px;
}
.hero-container{
    background: url('/images/hero-bg.svg') top left no-repeat;
    background-size: cover;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}






.hero-text {
    flex: 1;
    max-width: 728px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-smoke);
    margin-bottom: 35px;
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}






/* Custom Dropdown Styling */
.custom-select {
    position: relative;
    width: 300px; /* Adjust based on your hero layout */
    user-select: none;
    cursor: pointer;
}

.select-trigger {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.custom-select:hover .select-trigger {
    border-color: var(--primary);
}

.arrow-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--primary);
}

/* The Options Menu */
.select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 99999;
    max-height: 250px;
    overflow-y: auto;
}

/* Show State */
.custom-select.active .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select.active .arrow-icon {
    transform: rotate(180deg);
}

.option {
    padding: 12px 20px;
    transition: var(--transition);
    color: var(--text-muted);
}

.option:hover {
    background: var(--primary);
    color: white;
}

/* Scrollbar for many options */
.select-options::-webkit-scrollbar {
    width: 5px;
}
.select-options::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}





/* Responsive Fix for Mobile */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        order: -1; /* Image moves to top on mobile */
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
}










/* Service Category Grid Styling */
section.service-categories{
    padding: 70px 0;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    /* background: var(--card-bg); */
    /* border: 1px solid var(--border); */
    /* border-radius: var(--border-radius); */
    padding: 10px 0px;
    /* text-align: center; */
    text-decoration: none; /* Removes underline from <a> */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
    transition: .5s;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    background: var(--bg-color); /* Subtle contrast on hover */
}

.category-icon {
    font-size: 3rem;
    transition: .5s;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-title {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

/* Dark Mode Adjustment for Hover */
[data-theme="dark"] .category-card:hover {
    background: #1e293b;
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
    }
    .category-icon {
        font-size: 2.5rem;
    }
}





/* Service Explorer Styling */
section.service-explorer{
    background: var(--section-light-2);
    padding: 75px 0;
}
.tab-container {
    margin-bottom: 40px;
    overflow-x: auto; /* For mobile scrolling */
    padding-bottom: 10px;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    min-width: max-content;
}

.tab-btn {
    padding: 10px 15px;
    border: 1px solid var(--border);
    background: var(--bg-color);
    color: var(--text-main);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Grid Layout */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.service-grid#sg-all{
    display:grid;
}
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    animation: fadeIn 0.5s ease forwards;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.service-card h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--text-main);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.service-card a{
    display: inline-block;
    float: left;
    margin-top: 10px;
    color: var(--text-service-a);
}
.view-all-container {
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}











/* Marquee Container */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

/* The Animation Track */
.marquee-content {
    display: flex;
    width: max-content;
    animation: scrollRightToLeft 30s linear infinite;
}

/* Pause on Hover for better UX */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* Individual Item Styling */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}

.marquee-item span {
    font-size: 1.5rem;
}

.marquee-item:hover {
    color: var(--primary);
}

/* The Keyframes Animation */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        /* We move exactly half of the total width of the track */
        transform: translateX(-50%);
    }
}

/* Dark Mode Tweaks */
[data-theme="dark"] .marquee-wrapper {
    background: #1e293b;
}












/* Portfolio Grid Styling */
section.portfolio-section{
    padding: 75px 0;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: .5s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Image Container & Overlay */
.portfolio-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.tag {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Info Section */
.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.project-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.project-link:hover {
    letter-spacing: 1px;
}

.view-more {
    text-align: center;
    margin-top: 50px;
}

/* Dark Mode Shadow Adjustment */
[data-theme="dark"] .portfolio-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}




















/* Why Choose Us Styling */
section.why-choose-us{
    background: var(--section-light-2);
    padding: 75px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 700;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Dark Mode Shadows */
[data-theme="dark"] .feature-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Mobile Alignment */
@media (max-width: 768px) {
    .feature-card {
        padding: 30px 20px;
    }
}












/* Mission Section Styling */
.mission-section {
    position: relative;
    padding: 0; /* Remove standard section padding for full-bleed image */
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1200'); /* Replace with your office/team image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a slight parallax effect */
    min-height: 600px;
    display: flex;
    align-items: center;
}

.mission-bg-overlay {
    width: 100%;
    height: 100%;
    min-height: 600px;
    /* Gradient: Darker on left for text readability, transparent on right */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgb(0 0 0 / 18%) 100%);
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.mission-content {
    max-width: 600px;
    color: var(--white); /* Always white for contrast on background */
}

.mission-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: orange;
}

.mission-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 35px;
    opacity: 0.95;
    color: var(--text-smoke);
}

.mission-cta .btn-primary {
    background-color: transparent;
    border: 2px solid var(--primary);
    padding: 15px 40px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
    transition: .5s;
    color: var(--primary);
    outline: none;
}

.mission-cta .btn-primary:hover {
    background-color: var(--primary);
    color: #f2f2f2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mission-title {
        font-size: 2.2rem;
    }
    .mission-bg-overlay {
        background: rgba(0, 0, 0, 0.7); /* Solid dark overlay for small screens */
        text-align: center;
    }
    .mission-content {
        margin: 0 auto;
    }
}

















/* Workflow Section Styling */
section.workflow-section{
    padding: 75px 0;
    position: relative;
}
section.workflow-section::before{
    content:" ";
    background:url('/images/tech-bg.jpg') right top no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    opacity: 0.1;
}
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.workflow-item {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: var(--transition);
}

/* The Step Number Circle */
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: none;
}

.workflow-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.workflow-icon span{
    background: var(--section-light-2);
    padding: 15px;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}
.workflow-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.workflow-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Connecting Line (Desktop Only) */
@media (min-width: 992px) {
    .workflow-grid::before {
        content: '';
        position: absolute;
        top: 70px; /* Aligns with the middle of the icons */
        left: 10%;
        right: 10%;
        height: 5px;
        background: var(--border);
    }
}

.workflow-item:hover {
    transform: translateY(-5px);
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .workflow-grid {
        gap: 60px; /* More space for stacked items */
    }
}








/* Partner Section Styling */
.partner-section {
    background-color: var(--secondary-color);
    padding: 75px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Logos Side */
.partner-logos {
    flex: 1;
    min-width: 300px;
}

.partner-label {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.partner-label span{
    color: #ff8707;
}
.logo-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.p-logo {
    height: 35px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    filter: invert(1);
    cursor: pointer;
}

.p-logo:hover {
    filter: contrast(.1);
    opacity: 1;
}

/* Stats Side */
.trust-stats {
    display: flex;
    gap: 40px;
    background: var(--card-bg);
    padding: 30px 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 5px;
}

.rating-flex {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.stars {
    color: #ffc107; /* Gold Star Color */
    font-size: 1.2rem;
}

/* Dark Mode adjustment */
[data-theme="dark"] .trust-stats {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .partner-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .logo-grid {
        justify-content: center;
    }
    .trust-stats {
        width: 100%;
        justify-content: space-around;
    }
}













/* Reviews Section Styling */
.reviews-section {
    background-color: var(--bg-color);
    padding: 75px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.review-stars {
    color: #ffc107; /* Gold */
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1.05rem;
}
.review-date{
    display: inline-block;
    width: 100%;
    margin: 0 0 10px 0;
    text-align: right;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
}
.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    align-items: center;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.reviewer-suburb {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.verified-badge {
    font-size: 0.75rem;
    background: #e7f3ff;
    color: #007bff;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

[data-theme="dark"] .verified-badge {
    background: rgba(0, 123, 255, 0.2);
    color: #38bdf8;
}

.reviews-footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 25px;
    font-size: 1.2rem;
    color: var(--text-muted);
}













/* Technicians Section Styling */
/* HelloTech Style Team Section */
section.team-section{
    padding: 75px 0 0 0;
    background: var(--boder-color);
}
.team-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forces 4 in a row on desktop */
    gap: 20px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    background: transparent; /* Removed background */
    padding: 10px;
    border: none; /* Removed border */
    transition: var(--transition);
}

.member-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px auto;
    border-radius: 100%; /* Perfect circle */
    overflow: hidden;
    /* Optional: Subtle border to separate from white background if needed */
    border: 1px solid var(--border); 
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Subtle professional look */
    transition: var(--transition);
}

.team-member:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 5px;
    font-weight: 700;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 10px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .team-row {
        grid-template-columns: repeat(2, 1fr); /* 2x2 on tablets */
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .team-row {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    .member-image {
        width: 180px;
        height: 180px;
    }
}

















/* Footer Styling */
.main-footer {
    background-color: #0f172a; /* Deep dark tech blue */
    color: #cbd5e1;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.brand-col p {
    margin: 20px 0;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* App Download Section */
.app-label {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn img {
    height: 40px;
    transition: var(--transition);
}

.app-btn:hover img {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.developer-line a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}









/* Service Page Styling */
.service-single-page {
    background-color: var(--bg-color);
    padding-bottom: 80px;
}

.service-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('/assets/img/about-Us-Home-Image.jpg');
    background-size: cover;
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumb a {color: var(--text-service-a);text-decoration: none;}

.service-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }

/* Layout Grid */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Content Area */
.service-details{}
.service-details p{
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 10px 0;
    display: inline-block;
    float: left;
}
.service-details ul{
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
    padding: 0 20px;
}
.service-details ul li{
    padding: 5px 0;
}
.main-service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.service-details h3 {margin: 30px 0 15px;font-size: 1.6rem;display: inline-block;float: left;}

.service-details blockquote {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    align-items: center;
}

.service-details blockquote span {font-size: 1.5rem;}

.service-details table{
    width: 100%;
    margin: 10px 0;
    float: left;
    border: 1px solid #ccc;
    border-spacing: 0;
}
.service-details table tr{}
.service-details table td{
    padding: 8px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.service-details table th{}
.service-details table td:first-child{
}
.service-details table td:last-child{
    border-right: none;
}


/* Booking Sidebar */
.booking-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    position: relative;
}
.booking-card p{
    font-size: 1rem;
    line-height: 1.5;
    margin: 10px 0;
}
.booking-card h3{}
.booking-form .form-group { margin-bottom: 18px; }
.booking-form label {display: block;margin-bottom: 8px;font-weight: 500;font-size: 0.9rem;}

.booking-form input, 
.booking-form select, 
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--text-main);
    font-family: inherit;
}

.form-row {
    display: flex;
    gap: 15px;
}

.mt-10 { margin-top: 10px; }

.btn-full {width: 100%;padding: 15px;font-size: 1rem;margin-top: 10px;background: var(--bg-hero);border: none;border-radius: 5px;color: var(--bg-color);cursor: pointer;transition: .5s;}
.btn-full:hover{
    background: var(--bg-orange);
}
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 15px; }

/* Responsive */
@media (max-width: 992px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
    .booking-sidebar {
        order: -1; /* Put form on top for mobile users */
    }
}










/*===========================
/*    Service Category Page
/*==========================*/
.category-page {
    background-color: var(--bg-color);
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
}
.category-info {
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
    padding: 50px 0;
    background: var(--section-light-2);
    margin-bottom: 35px;
}

.category-title-flex {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-top: 20px;
}

.category-icon {
    font-size: 3rem;
    background: var(--secondary-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.category-text h1 {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.category-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Grid */
.service-cat-list{
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
    margin-bottom: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.service-item-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.service-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.service-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.price-start {
    font-weight: 700;
    color: var(--text-main);
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .category-title-flex {
        flex-direction: column;
        gap: 15px;
    }
    .category-text h1 {
        font-size: 1.8rem;
    }
}













/*=========================
/*  Contact Strip Code
/*=======================*/
.contact-strip {
    padding: 60px 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
}
.contact-strip .contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.contact-strip .contact-text {
    flex: 1;
}
.contact-strip .badge {
    background: var(--secondary-color);
    color: var(--primary);
    padding: 5px 0;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}
.contact-strip .contact-text h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 15px;
}
.contact-strip .contact-text p {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
}
.contact-strip .contact-methods {
    display: flex;
    gap: 20px;
}
.contact-strip .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--card-bg); 
    padding: 20px 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: var(--transition);
}
.contact-strip .contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.contact-strip .contact-icon {
    font-size: 1.8rem;
    background: var(--bg-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.contact-strip .contact-info span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.contact-strip .contact-info strong {
    font-size: 1.1rem;
    color: var(--text-main);
    display: block;
}
@media (max-width: 992px) {
    .contact-strip .contact-content {
        flex-direction: column;
        text-align: center;
    }
    .contact-strip .contact-text p {
        margin: 0 auto 30px;
    }
    .contact-strip .contact-methods {
        flex-direction: column;
        width: 100%;
    }
    .contact-strip .contact-item {
        justify-content: center;
    }
}









.fixed-contents{
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
}
.fixed-contents li img{
    width: 56px;
}
@media (max-width: 768px){
    .fixed-contents{
        right: 10px;
        bottom: 10px;
    }
    .fixed-contents li img{
        width: 46px;
    }
}
.fixed-contents ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fixed-contents li{
    list-style-type: none;
}
.fixed-contents li a{
    display: block;
    border-radius: 100%;
}
.fixed-contents li a:hover{}
.fixed-contents li img{
    width: 60px;
}


.form-loader{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #ffffffc7;
    display:none;
}
.form-loader img{
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .8;
}







.btn-primary{
    font-size: 0.9rem;
    background: var(--header-button-color);
    color: var(--bg-color);
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: .5s;
    border: 1px solid var(--header-button-color);
}
.btn-primary:hover{
    background: transparent;
    border: 1px solid var(--header-button-color);
    color: var(--header-button-color);
}
.btn-secondary{
    font-size: 0.9rem;
    background: transparent;
    color: var(--header-button-color);
    padding: 12px 20px;
    cursor: pointer;
    transition: .5s;
    border: 1px solid var(--header-button-color);
}
.btn-secondary:hover{
    background: var(--header-button-color);
    color: #fff;
}
/*==========================*/
/* Confirmation Page Styles */
/*==========================*/
.confirmation-page {
    padding: 30px 0;
    background-color: var(--bg-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.confirmation-page .confirmation-card {
    background: var(--card-bg);
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.confirmation-page .success-header {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: white;
    padding: 40px;
    text-align: center;
}
.confirmation-page .check-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: bold;
}
.confirmation-page .success-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.confirmation-page .confirmation-body {
    padding: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    border-bottom: 1px solid var(--border);
}
.confirmation-page .booking-summary h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.confirmation-page .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.95rem;
    align-items: center;
}
.confirmation-page .summary-item span {color: var(--text-muted);width: 40%;}
.confirmation-page .summary-item strong {color: var(--text-main);text-align: right;font-weight: 500;width: 60%;}
.confirmation-page .price-total {border-bottom: none;}
.confirmation-page .price-total strong { color: var(--primary); }
.confirmation-page .qr-section {
    text-align: center;
    background: var(--bg-color);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border);
}
.confirmation-page .qr-container {
    background: white;
    padding: 15px;
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 15px;
}
.confirmation-page .qr-container img {
    display: block;
    width: 150px;
}
.confirmation-page .qr-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 15px;
}
.confirmation-page .order-id {
    font-family: monospace;
    font-weight: bold;
    color: var(--text-main);
    display: block;
}
.confirmation-page .confirmation-footer {
    padding: 30px 40px;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
@media print {
    .main-header, .main-footer, .confirmation-footer { display: none; }
    .confirmation-page .confirmation-card { border: none; box-shadow: none; }
    .success-header{color:#000;}
    
}
@media (max-width: 600px) {
    .confirmation-page .confirmation-body {
        grid-template-columns: 1fr;
    }
    .confirmation-page .confirmation-footer {
        flex-direction: column;
    }
}
/*==========================*/
/* Track Order CSS */
/*==========================*/
/* Tracking Page Styling */
.tracking-page {
    padding: 60px 0 100px;
    background: var(--bg-color);
    display: inline-block;
    width: 100%;
    float: left;
}
.tracking-page .tracking-search-header {
    text-align: center;
    margin-bottom: 50px;
    display: inline-block;
    width: 100%;
    float: left;
}
.tracking-page .track-input-group {
    display: flex;
    max-width: 700px;
    margin: 30px auto 0;
    gap: 10px;
    background: var(--card-bg);
    padding: 10px;
    border-radius: 15px;
    border: 1px solid var(--border);
}
.tracking-page .track-input-group input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--text-main);
}
.tracking-page .tracking-result-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    display: inline-block;
    width: 100%;
    clear: both;
}
.tracking-page .tracking-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    width: 100%;
    float: left;
}
.tracking-page .tracking-header-info h2{
    margin: 15px 0 10px;
    font-weight: 600;
}
.tracking-page .status-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.tracking-page .eta-box {
    text-align: right;
    background: var(--secondary-color);
    padding: 15px 25px;
    border-radius: 12px;
}
.tracking-page .eta-box span {display: block;font-size: 0.85rem;color: var(--text-muted);margin-bottom: 5px;}
.tracking-page .eta-box strong {font-size: 1.1rem;color: var(--primary);}
.tracking-page .progress-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    float: left;
}
.tracking-page .progress-stepper::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border);
    z-index: 1;
}
.tracking-page .step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100px;
}
.tracking-page .step-icon {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 4px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: var(--transition);
}
.tracking-page .step.completed .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.tracking-page .step.active .step-icon {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 15px var(--primary);
}
.tracking-page .tech-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    width: 100%;
    float: left;
}
.tracking-page .tech-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}
.tracking-page .tech-info { flex: 1; }
.tracking-page .tech-info h4 {font-size: 1.1rem;color: var(--text-main);margin-bottom: 7px;}
.tracking-page .tech-rating { color: #f59e0b; font-weight: bold; font-size: 0.9rem; margin-top: 5px; }
.tracking-page .tech-phone{}
.tracking-page .tech-phone a{
    display: block;
    width: max-content;
    float: right;
}
.tracking-page .tech-phone span{
    display: block;
    margin-top: 5px;
    font-weight: 800;
    width: max-content;
    float: right;
    clear: both;
    font-size: 1.3rem;
    color: orangered;
}
.tracking-page .tech-no-assign{
    display: inline-block;
    width: 100%;
    float: left;
    clear: both;
    text-align: center;
}
.tracking-page .tech-no-assign button{
    padding: 15px 25px;
    background: #ffeded;
    border: none;
    color: red;
    border-radius: 5px;
    font-size: 1rem;
}
.traking-not-found{
    display: inline-block;
    width: 100%;
    clear: both;
    float: left;
    text-align: center;
    padding: 25px 0;
}
.traking-not-found p{
    width: max-content;
    margin: 0 auto;
    padding: 15px 25px;
    font-size: 1rem;
    line-height: 1.5;
    background: var(--section-light-2);
    color: var(--text-service-a);
    border-radius: 5px;
}
@media (max-width: 768px) {
    .tracking-page .track-input-group { flex-direction: column; background: none; border: none; padding: 0; }
    .tracking-page .tracking-header-info { flex-direction: column; gap: 20px; text-align: center; align-items: center; }
    .tracking-page .progress-stepper { flex-direction: column; gap: 30px; align-items: flex-start; padding-left: 20px; }
    .tracking-page .progress-stepper::before { left: 43px; width: 4px; height: 100%; top: 0; }
    .tracking-page .step { display: flex; align-items: center; gap: 20px; width: auto; }
}

/* Mobile Navigation - Slide-in Menu */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block !important;          /* make sure it's visible */
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
    }

    /* Mobile menu container (add this in HTML after .desktop-nav if missing) */
    .mobile-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-color);
        transition: right 0.4s ease;
        z-index: 9999;
        padding: 80px 25px 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav ul {
        flex-direction: column;
        gap: 20px;
        font-size: 1.1rem;
    }

    /* Overlay when menu open */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
        z-index: 9998;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ===== HAMBURGER BUTTON ===== */
@media (max-width: 1024px) {
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 6px;
        cursor: pointer;
        gap: 5px;
    }
    .mobile-toggle span,
    .mobile-toggle span::before,
    .mobile-toggle span::after {
        content: '';
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-main);
        border-radius: 2px;
        transition: 0.3s;
    }
}

/* ===== MOBILE DRAWER ===== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-color);
    border-left: 1px solid var(--border);
    z-index: 999;
    padding: 30px 20px;
    transition: right 0.35s ease;
    overflow-y: auto;
}
.mobile-nav-drawer.open {
    display: block;
    right: 0;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-main);
    float: right;
    margin-bottom: 20px;
}
.mobile-nav-links {
    list-style: none;
    margin-top: 30px;
}
.mobile-nav-links li a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.mobile-nav-links li a:hover { color: var(--primary); }

.mobile-nav-actions { margin-top: 25px; }

/* ===== FIX: custom-select width on mobile ===== */
.custom-select {
    width: 100%;
    max-width: 300px;
}

/* ===== FIX: nav-actions on tablet ===== */
@media (max-width: 1024px) {
    .nav-actions { gap: 10px; }
    .track-book { font-size: 0.8rem; padding: 8px 10px; }
}

/* ===== FIX: mega-grid responsive ===== */
@media (max-width: 900px) {
    .mega-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
    .mega-grid { grid-template-columns: 1fr; }
}