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

/* ==========================================================================
   Design Tokens & CSS Custom Properties
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-color: #0f172a;        /* Deep Slate Blue */
    --primary-light: #1e293b;        /* Slate Blue Light */
    --primary-bg: #090d16;           /* Hero & Dark Theme Backgrounds */
    --accent-color: #f97316;         /* Energetic Orange */
    --accent-hover: #ea580c;         /* Hover Accent */
    --accent-light: #ffedd5;         /* Soft Amber Background */
    --text-color: #334155;           /* Main Text */
    --text-muted: #64748b;           /* Muted Text */
    --text-white: #ffffff;           /* Plain White */
    --bg-light: #f8fafc;             /* Light Page Background */
    --bg-white: #ffffff;             /* Pure White Container */
    --border-color: #e2e8f0;         /* Soft Border Slate */
    
    /* Layout & Styling */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    
    /* Shadows & Glows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 20px -3px rgba(15, 23, 42, 0.06), 0 4px 12px -4px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Max Container Width */
    --max-width: 1200px;
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.25;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-bg-dark {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.section-bg-white {
    background-color: var(--bg-white);
}

/* Utility classes */
.text-center { text-align: center; }
.text-accent { color: var(--accent-color); }
.text-white { color: var(--text-white); }
.font-heading { font-family: var(--font-heading); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
/* Top Utility Bar */
.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    font-weight: 500;
    color: var(--accent-color);
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-color);
}

/* Main Navbar */
header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-color);
}

.logo span {
    background: linear-gradient(135deg, var(--primary-color) 60%, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-color);
    padding: 28px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    transition: var(--transition-fast);
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Mega Dropdown & Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    border-top: 4px solid var(--accent-color);
    padding: 16px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 99;
}

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

.dropdown-item a {
    display: block;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
}

.dropdown-item a:hover {
    color: var(--accent-color);
    background-color: var(--bg-light);
    padding-left: 28px;
}

/* Mega Dropdown for Services */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 90vw;
    max-width: 1100px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    border-top: 4px solid var(--accent-color);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 99;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.mega-col-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}

.mega-list li a {
    display: block;
    padding: 6px 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
}

.mega-list li a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

/* CTA Header button */
.nav-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Hamburger mobile button */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Banner Section
   ========================================================================== */
.hero-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-bg) 40%, #1e1b4b);
    color: var(--text-white);
    padding: 120px 0 100px 0;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-tag span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.hero-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-trust-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
}

.hero-trust-text p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-trust-text h4 {
    color: var(--text-white);
    font-size: 1.05rem;
    font-weight: 700;
}

/* Quick Tracking Widget on Hero */
.hero-right {
    animation: fadeInRight 0.8s ease-out;
}

.tracking-widget {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.tracking-widget h3 {
    color: var(--text-white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.tracking-widget p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.tracking-form {
    display: flex;
    gap: 10px;
}

.tracking-input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 14px 20px;
    color: var(--text-white);
    font-weight: 500;
    transition: var(--transition-fast);
}

.tracking-input:focus {
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.12);
}

.tracking-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.tracking-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--text-white);
    padding: 0 24px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.tracking-btn:hover {
    box-shadow: var(--shadow-glow);
}

.tracking-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   Section Intro Layout
   ========================================================================== */
.section-header {
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.section-tag {
    font-family: var(--font-body);
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-bg-dark .section-title {
    color: var(--text-white);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   About Section (Homepage)
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-main {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    width: 90%;
    z-index: 2;
    position: relative;
    aspect-ratio: 4/3;
    object-fit: cover;
    background-color: var(--primary-light);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    padding: 24px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
}

.about-img-badge h3 {
    font-size: 2.2rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 4px;
}

.about-img-badge p {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.about-content .section-tag {
    margin-bottom: 8px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.about-feature svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

/* ==========================================================================
   Services Grid Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.2);
}

.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
    transition: var(--transition-fast);
}

.service-card:hover .service-card-icon {
    background-color: var(--accent-color);
}

.service-card:hover .service-card-icon svg {
    fill: var(--text-white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.service-card-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: var(--transition-fast);
}

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

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

/* ==========================================================================
   Countries We Serve Section
   ========================================================================== */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.country-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    text-align: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.country-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.country-flag-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.country-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.country-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-medium);
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-5px);
}

.why-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.why-card h3 {
    color: var(--text-white);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ==========================================================================
   Working Process Section
   ========================================================================== */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: dashed var(--border-color);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-number {
    width: 70px;
    height: 70px;
    background-color: var(--bg-white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.process-step:hover .process-number {
    background-color: var(--accent-color);
    color: var(--text-white);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0 10px;
}

/* ==========================================================================
   Industries Served Section
   ========================================================================== */
.industry-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.industry-tab {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.industry-tab:hover, .industry-tab.active {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.industry-content-wrapper {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.industry-content {
    display: none;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.industry-content.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

.industry-info h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.industry-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.industry-list {
    margin-bottom: 30px;
}

.industry-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.industry-list li svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
}

.industry-img {
    border-radius: var(--border-radius-md);
    aspect-ratio: 16/10;
    object-fit: cover;
    background-color: var(--primary-light);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   Counter Stats Bar Section
   ========================================================================== */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 6px;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Testimonials Slider Section
   ========================================================================== */
.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 50px 60px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: rgba(249, 115, 22, 0.15);
    position: absolute;
    top: 20px;
    left: 40px;
    line-height: 1;
    font-family: var(--font-heading);
}

.testimonial-slide p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-meta h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.testimonial-meta span {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* ==========================================================================
   Accordion FAQ Section
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-color);
    background: none;
    width: 100%;
    text-align: left;
}

.faq-question svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: var(--transition-medium);
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 0 solid var(--border-color);
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 16px 24px 24px 24px;
    border-top-width: 1px;
}

/* ==========================================================================
   Contact Section & Forms
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-title h3 {
    color: var(--text-white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.contact-info-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-details {
    margin: 40px 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-color);
}

.contact-detail-text h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-detail-text p, .contact-detail-text a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.contact-social-link:hover {
    background-color: var(--accent-color);
}

.contact-social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--text-white);
}

.contact-form-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    color: var(--text-color);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   Internal Pages Layout System
   ========================================================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-bg) 40%, #1e1b4b);
    color: var(--text-white);
    padding: 60px 0;
    position: relative;
}

.page-header-content h1 {
    color: var(--text-white);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
}

/* Breadcrumbs navigation */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span.separator {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.breadcrumbs span.current {
    color: var(--accent-color);
    font-weight: 600;
}

/* Two-column layout for Service/Country inner pages */
.internal-grid {
    display: grid;
    grid-template-columns: 2.1fr 0.9fr;
    gap: 40px;
}

.internal-content {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.internal-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 16px;
}

.internal-content h2:first-of-type {
    margin-top: 0;
}

.internal-content h3 {
    font-size: 1.3rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.internal-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.internal-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
    list-style-type: disc;
}

.internal-content li {
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Custom list layout */
.check-list {
    list-style: none !important;
    padding-left: 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0 !important;
    font-weight: 500;
    color: var(--primary-color) !important;
}

.check-list li svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
}

/* Sidebar navigation */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu li:last-child {
    margin-bottom: 0;
}

.sidebar-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    border-left: 3px solid transparent;
}

.sidebar-menu li a:hover, .sidebar-menu li a.active {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-left-color: var(--accent-color);
}

.sidebar-menu li a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Sidebar Info CTA Card */
.sidebar-cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--accent-color);
}

.sidebar-cta-widget svg {
    width: 48px;
    height: 48px;
    fill: var(--accent-color);
    margin-bottom: 20px;
}

.sidebar-cta-widget h3 {
    color: var(--text-white);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.sidebar-cta-widget p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.sidebar-cta-widget .btn {
    width: 100%;
}

/* ==========================================================================
   Tracking Details Output Layout
   ========================================================================== */
.tracking-results {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.tracking-summary-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.tracking-summary-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.tracking-summary-item p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tracking-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 40px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 15px;
    width: 2px;
    height: 90%;
    background-color: var(--border-color);
}

.tracking-status-node {
    position: relative;
    margin-bottom: 30px;
}

.tracking-status-node:last-child {
    margin-bottom: 0;
}

.tracking-node-dot {
    position: absolute;
    top: 4px;
    left: -32px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--border-color);
    z-index: 2;
}

.tracking-status-node.completed .tracking-node-dot {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}

.tracking-node-content h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.tracking-node-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.tracking-node-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    border-top: 5px solid var(--accent-color);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col-about p {
    margin-top: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-links li a svg {
    width: 8px;
    height: 8px;
    fill: currentColor;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact-item p {
    margin: 0;
    line-height: 1.4;
}

.footer-contact-item a:hover {
    color: var(--accent-color);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

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

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

/* ==========================================================================
   Floating Action Buttons
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition-medium);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-white);
}

.floating-whatsapp {
    background-color: #25d366;
}

.floating-whatsapp:hover {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.floating-call {
    background-color: var(--accent-color);
}

.floating-call:hover {
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.back-to-top {
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

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

.back-to-top:hover {
    background-color: var(--primary-light);
}

/* ==========================================================================
   Blog Listing & Single CSS
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.15);
}

.blog-card-img {
    aspect-ratio: 16/10;
    object-fit: cover;
    background-color: var(--primary-light);
    width: 100%;
}

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

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.blog-card-link svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: var(--transition-fast);
}

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