:root {
    --primary-color: #0b2265;
    --secondary-color: #ff6b00;
    --white: #ffffff;
    --primary-blue: #0b2265;
    --accent-orange: #ff6b00;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --transition-smooth: all 0.3s ease;
    --text-light: #e0e6ed;
    --error-red: #dc3545;
    --success-green: #28a745;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --white-surface: #ffffff;
    --text-slate: #555555;
    --border-gray: #eef2f5;
    --transition-snappy: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --tata-dark: #1a2530;
    --tata-slate: #5a6b7c;
    --bg-light-gray: #f8fafc;
    --border-line: #e2e8f0;
    --text-charcoal: #222222;
    --text-muted: #555555;
    --border-gray: #e2e8f0;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --text-charcoal: #333333;
    --bg-light: #f4f7f9;
    --border-gray: #eef2f6;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --bg-light-gray: #f9fbfd;
    --transition-snappy: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --bg-light-surface: #f4f7f9;
    --gold-star: #ffb400;
    --dark-navy: #06133a;
    --accent-orange: #a51d24;
    --text-muted-gray: #b0c2de;
    --border-deep-navy: #10265c;
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --whatsapp-green: #25d366;
    --telephony-blue: #007bff;
    --sms-orange: #ff6b00;
    --white-solid: #ffffff;
    --deck-z-index: 2000; /* Superimposes overlay safely over headers and drawers elements */
    --bouncy-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --brand-orange: #ff5722;
    --navy-dark: #0f172a;
    --slate-gray: #475569;
    --light-canvas: #ffffff;
    --border-tint: #f1f5f9;
}







* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}



/* --- Top Info Bar Styling --- */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 2px solid var(--accent-orange);
}

.top-bar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--accent-orange);
}

/* --- Main Navigation Header Styling --- */
.main-header {
    background-color: #ffd400d6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Design */
.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.logo-area{
    width:22%;
}

.logo-main {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-sub {
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3.5px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 0;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-orange);
}

/* Dropdown Menu CSS Layout */
.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle .arrow {
    font-size: 0.65rem;
    vertical-align: middle;
    margin-left: 2px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);;
    min-width: 240px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border-top: 3px solid var(--accent-orange);
    padding: 10px 0;
}

.dropdown-item {
    color: wheat;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 25px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* CTA Call to Action Button */
.cta-button {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 8px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background-color: var(--primary-blue);
    box-shadow: 0 4px 6px rgba(11, 34, 101, 0.2);
    transform: translateY(-1px);
}

/* Responsive Breakpoint for Mobile/Tablets */
@media (max-width: 992px) {
    .logo-area{
    width:30%;
}
    .top-bar-container {
        justify-content: center;
        text-align: center;
    }

    .nav-menu,
    .header-action {
        display: none;
        /* Can be integrated into a mobile hamburger menu later */
    }
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.top-bar {
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo strong {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.logo span {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
}

.hero {
    background: #f4f7f9;
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.quote-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-card input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.services-section {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }
}



/* --- Hamburger Icon Trigger --- */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Mobile Sliding Drawer Navigation Container --- */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    /* Completely hidden offscreen initially */
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-drawer.open {
    right: 0;
    /* Slides into framework view */
}

/* Dark Background Blur Overlay Behind Drawer */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Inside Drawer UI Layout */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eeeeee;
}

.close-drawer {
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.drawer-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 25px;
    text-align: left;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--accent-orange);
    background-color: var(--bg-light);
}

/* Mobile Dropdown Sub-Menu Lists Accordion */
.drawer-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background-color: var(--bg-light);
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    /* Performance smooth fold collapse */
}

.drawer-dropdown-menu.show {
    max-height: 500px;
    /* Expands open to reveal internal content */
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.drawer-sub-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 40px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.drawer-sub-link:hover {
    color: var(--primary-blue);
    padding-left: 45px;
}

.drawer-footer-action {
    padding: 30px 25px;
}

.drawer-footer-action .cta-button {
    display: block;
    text-align: center;
}

/* --- Media Breakpoint Switch logic overrides --- */
@media (max-width: 992px) {

    .nav-menu,
    .header-action {
        display: none;
        /* Hide standard desktop components */
    }

    .hamburger-toggle {
        display: flex;
        /* Expose responsiveness mobile icon trigger */
    }
}










/* Hero Base Settings Wrapper */
.hero-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

/* Background Crossfade Image Carousel Layer */
.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider-bg .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider-bg .slide.active {
    opacity: 1;
}

/* Grid Core Positioning Layout */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* Typography Design elements text blocks style */
.hero-content-side {
    color: var(--white);
}

.hero-tagline {
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid var(--accent-orange);
    color: var(--bg-light-gray);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 1.16rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    color: var(--accent-orange);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

/* Features grid block element alignment cards */
.features-micro-grid {
    display: flex;
    gap: 20px;
}

.micro-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    flex: 1;
}

.micro-feature-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.micro-feature-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.feat-icon {
    font-size: 1.5rem;
}

/* Form Container Card Panel Panel */
.lead-form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-top: 5px solid var(--accent-orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-header h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-header p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* Grid row structure layout splits for side by side blocks */
.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.lead-generation-form {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.input-field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.lead-generation-form input,
.lead-generation-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
    transition: var(--transition-smooth);
    background-color: #fafafa;
}

.lead-generation-form input:focus,
.lead-generation-form select:focus {
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(11, 34, 101, 0.1);
    outline: none;
}

/* Native browser layout fixes for date string fields */
input[type="date"] {
    color: #757575;
    font-family: sans-serif;
}

input[type="date"]:focus {
    color: #333;
}

/* Real-Time dynamic text warning styling handles labels */
.validation-message {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--error-red);
    margin-top: 4px;
    min-height: 15px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.validation-message.active {
    opacity: 1;
}

.input-field-group.invalid input,
.input-field-group.invalid select {
    border-color: var(--error-red);
    background-color: #fff8f8;
}

.input-field-group.valid input,
.input-field-group.valid select {
    border-color: var(--success-green);
}

/* Response Banner Alert notification configurations styling panels */
.form-alert-banner {
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: none;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.form-alert-banner.error {
    display: block;
    background-color: #fce8e6;
    color: #a51d24;
    border: 1px solid #f5c2c1;
}

.form-alert-banner.success {
    display: block;
    background-color: #e6f4ea;
    color: #137333;
    border: 1px solid #c4eed0;
}

/* CTA Button execution configuration setups frames loader elements */
.submit-btn-cta {
    position: relative;
    background: var(--accent-orange);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}

.submit-btn-cta:hover {
    background: #e05e00;
}

.submit-btn-cta:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media viewport adaptive sizing layouts overrides frameworks breaks styles */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .features-micro-grid {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}








/* --- Core Layout Architecture Classes --- */
.row-am {
    padding: 50px 0;
    background-color: #fafbfc;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
    width: 100%;
}

/* Utility float correction layer for old browser layout patterns */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.usp-wrapper-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- Grid Block Component Item Elements --- */
.usp-column-item {
    flex: 1;
    min-width: 260px;
    /* Forces stack columns wrap cleanly on low-res screens */
}

.usp-card-box {
    background-color: var(--border-gray);
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-snappy);
}

.usp-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 10px grey;
    border-color: rgba(94, 92, 92, 0.456);
}

/* --- Internal Content Typography Typography Nodes --- */
.usp-icon-anchor {
    font-size: 2rem;
    line-height: 1.2;
    padding: 10px;
    background-color: #f0f4f8;
    border-radius: 8px;
    color: var(--primary-blue);
    transition: var(--transition-snappy);
}

.usp-card-box:hover .usp-icon-anchor {
    background-color: #fff0e6;
}

.usp-text-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.usp-item-title {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.usp-item-desc {
    color: var(--text-slate);
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0;
}

/* --- Responsive Layout Breakpoints Modifiers --- */
@media (max-width: 1200px) {
    .usp-wrapper-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .row-am.usp {
        padding: 40px 0;
    }

    .usp-wrapper-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .usp-card-box {
        padding: 20px;
    }
}







/* Common Header Text Layout Alignments */
.section-header-center h2, .section-header-center span {
    color:white;
}
.section-header-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.section-tag {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

.section-header-center h2 {
    color: var(--tata-dark);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-header-center p {
    color: rgb(0 26 121);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* --- 1. Tabbed Service Matrix Styles --- */
.tabs-container,
.faq-container {
    max-width: 99%;
    /* width: 90%; */
    margin: 0 auto;
}

.matrix-tab-triggers {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-line);
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.tab-trigger {
    background: #796d6d1c;
    border: none;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--tata-slate);
    cursor: pointer;
    border-radius: 0px 30px 0px;
    transition: var(--transition-smooth);
}

.tab-trigger:hover {
    color: var(--primary-blue);
    background-color: var(--bg-light-gray);
}

.tab-trigger.active {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(11, 34, 101, 0.25);
}

.matrix-tabs-content {
    background-color: var(--white);
    border: 1px solid var(--border-line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.tab-pane {
    display: none;
    width: 100%;
    animation: fadePaneIn 0.4s ease;
}

.tab-pane.active {
    display: block;
    background-image: url(transport.jpg);
    background-size: cover;
}

.pane-grid-layout {
    display: flex;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 350px;
    background-color: #ffffffa8;
}

.pane-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pane-text h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.pane-text p {
    color: var(--tata-slate);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pane-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pane-bullets li {
    position: relative;
    padding-left: 22px;
    color: var(--tata-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.pane-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-orange);
    font-weight: 900;
}

.pane-media {
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

/* --- 2. Interactive FAQ Accordion Styles --- */
.faq-accordion-section {
    background-color: var(--bg-light-gray);
}

.accordion-wrapper-block {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border-line);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.question-text {
    color: var(--tata-dark);
    font-size: 1.05rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.toggle-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--tata-slate);
    transition: var(--transition-smooth);
    display: inline-block;
    line-height: 1;
}

.accordion-header:hover .question-text {
    color: var(--accent-orange);
}

.accordion-item.active {
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.accordion-item.active .toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-orange);
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.accordion-body {
    padding: 0 25px 20px 25px;
    border-top: 1px solid #f1f5f9;
    background-color: #fafbfd;
}

.accordion-body p {
    color: var(--tata-slate);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 10px 0 0 0;
}

@keyframes fadePaneIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Media Viewport Responsive Adjustments --- */
@media (max-width: 992px) {
    .pane-grid-layout {
        grid-template-columns: 1fr;
    }

    .pane-media {
        order: -1;
        height: 220px;
    }

    .pane-text {
        padding: 30px 20px;
    }

    .section-header-center h2 {
        font-size: 1.8rem;
    }

    .accordion-header {
        padding: 16px 20px;
    }

    .question-text {
        font-size: 0.95rem;
    }
}







.row-am.packers {
    padding: 80px 20px;
    background-color: var(--white);
}

.packers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.packers-tag {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.packers-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 800;
}

.packers-title .accent-text {
    color: var(--accent-orange);
}

.packers-lead-text {
    font-size: 1.15rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.packers-bullet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bullet-check {
    color: var(--accent-orange);
}

.image-wrapper-frame {
    position: relative;
    height: 420px;
    border-radius: 12px;
}

.logistics-graphic-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 12px;
}

.stats-counter-badge {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-orange);
}

.metrics-shiftings {
    top: 40px;
    left: -30px;
}

.metrics-experience {
    bottom: 40px;
    right: -20px;
    border-left-color: var(--primary-blue);
}

.stat-count-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
}

@media (max-width: 1024px) {
    .packers-container {
        grid-template-columns: 1fr;
    }

    .image-wrapper-frame {
        height: 360px;
    }
}






/* --- Row Base System --- */
.row-am.home-services {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
    width: 100%;
}

/* Clearfix legacy anchor helper block */
.clearfix::after {

    content: "";
    clear: both;
    display: table;
}

.services-container {
    padding: 0px;
    /* background-image: url(packers-img.webp); */
    /* background-size: cover; */
    max-width: 99%;
    /* width: 90%; */
    margin: 0 auto;
}


.services-intro-block {
    background-color: #0b2265d2;
    text-align: left;
    padding: 20px;
    max-width: 98%;
    margin: 0 auto 50px auto;
}

.services-tag {
    /* background-color: #0b2265af; */
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.services-main-title {
    color: rgb(170, 88, 5);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.services-lead-para,
.services-sub-para {
    color: rgb(0, 0, 0);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

/* --- Responsive Services Cards Grid Loop Layout --- */
.services-cards-grid {
    /* background-color: #0b2265af; */
    display: grid;
    width: 98%;
    grid-template-columns: repeat(auto-fit, minmax(448px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.services-cards-grid img{
width:auto;
}

.service-display-card {
    background-color: #8080801a;
    color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.service-display-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(11, 34, 101, 0.08);
    border-color: rgba(255, 107, 0, 0.2);
}

/* Card Visual Image Banner */
.service-card-image {
    width: auto;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.service-display-card:hover .service-card-image {
    border-bottom-color: var(--accent-orange);
}

/* Card Text Framework Elements */
.service-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h4 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b2265;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-card-body p {
    color: var(--text-slate);
    /* color: white; */
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Action CTA Anchors */
.service-card-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    transition: var(--transition-smooth);
}

.service-card-link::after {
    content: " →";
    transition: var(--transition-smooth);
}

.service-display-card:hover .service-card-link {
    color: var(--primary-blue);
}

.service-display-card:hover .service-card-link::after {
    transform: translateX(4px);
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 768px) {
    .services-main-title {
        font-size: 2rem;
    }

    .services-intro-block {
        margin-bottom: 35px;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-image {
        height: 180px;
    }
}







/* --- Row Structure Container --- */
.row-am.areas-services {
    background-image: url('img/area-map.webp');
    background-size: cover;
    padding: 75px 0;
    background-color: var(--white);
    position: relative;
    width: 100%;
}

.network-container {
    background-color: #063a3aa8;
    max-width: 98%;
    /* width: 90%; */
    margin: 0 auto;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* --- Search Filter Control Deck Panels Styles --- */
.network-search-box-wrapper {
    max-width: 700px;
    margin: 0 auto 45px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 25px;
    background-color: #0066ff99;
}

.search-input-field-group {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(11, 34, 101, 0.06);
    border-radius: 30px;
}

.search-icon-lens {
    position: absolute;
    left: 20px;
    font-size: 1.1rem;
    color: var(--text-slate);
    pointer-events: none;
}

.network-search-box-wrapper input[type="text"] {
    width: 100%;
    padding: 16px 50px 16px 55px;
    font-size: 1rem;
    color: var(--text-charcoal);
    background-color: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 30px;
    transition: var(--transition-snappy);
    outline: none;
}

.network-search-box-wrapper input[type="text"]:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(11, 34, 101, 0.1);
}

.clear-search-btn {
    position: absolute;
    right: 18px;
    background: #e2e8f0;
    border: none;
    color: var(--text-slate);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: none;
    /* Controlled dynamically by JavaScript input states */
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: var(--transition-snappy);
}

.clear-search-btn:hover {
    background: #cbd5e1;
    color: var(--text-charcoal);
}

.search-feedback-tally {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 20px;
}

/* --- Segment Block Tiers Structures --- */
.network-tier-block {
    margin-bottom: 45px;
    background-color: #06133aa8;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.network-tier-block.hidden {
    display: none;
}

.tier-title {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tier-desc {
    color: darkgrey;
    font-size: 0.92rem;
    margin-bottom: 25px;
}

/* --- Link Distribution Grid System --- */
.network-links-grid {
    display: grid;
    gap: 15px;
}

.domestic-grid {
    grid-template-columns: repeat(3, 1fr);
}

.local-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* --- Interactive Anchor Link Items --- */
.network-route-card,
.network-link-item {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    color: var(--text-charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: var(--transition-snappy);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
}

.network-route-card::before,
.network-link-item::before {
    content: "📍";
    margin-right: 10px;
    font-size: 0.8rem;
    transition: var(--transition-snappy);
}

.network-route-card::before {
    content: "🚚";
}

.network-route-card:hover,
.network-link-item:hover {
    color: var(--accent-orange);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(11, 34, 101, 0.05);
}

/* Class filter triggers attached dynamically via search patterns evaluation */
.filterable-link.hidden-link {
    display: none !important;
}

/* --- Empty Results Structural Feedback Frame --- */
.no-search-results-card {
    display: none;
    text-align: center;
    background-color: #fff8f8;
    border: 1px dashed #f5c2c1;
    border-radius: 8px;
    padding: 40px 20px;
    max-width: 600px;
    margin: 20px auto;
    animation: alertFadeIn 0.3s ease;
}

.no-search-results-card span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.no-search-results-card h4 {
    color: #a51d24;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.no-search-results-card p {
    color: var(--text-slate);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@keyframes alertFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Viewport Modifiers --- */
@media (max-width: 992px) {
    .local-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .domestic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .topmail{
        display: none;
    }
    .domestic-grid {
        grid-template-columns: 1fr;
    }

    .local-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .network-search-box-wrapper input[type="text"] {
        padding: 14px 45px 14px 45px;
        font-size: 0.9rem;
    }

    .search-icon-lens {
        left: 15px;
    }
}

@media (max-width: 480px) {
       .logo-area{
    width:50%;
}
    .local-grid {
        grid-template-columns: 1fr;
    }
}






/* --- Base Row Layer Setup --- */
.row-am.reviews-section {
    padding: 80px 0;
    background-color: var(--bg-light-surface);
    position: relative;
    width: 100%;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.reviews-container {
    max-width: 97%;
    /* width: 90%; */
    margin: 0 auto;
}

/* --- Section Heading Typography --- */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: auto;
    
}

.section-tag {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.section-header-center h2 {
    color: #9f2a05;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-desc-para {
    color: var(--text-slate);
    font-size: 1rem;
    line-height: 1.5;
}

/* --- Google Badging Row Indicator --- */
.google-rating-summary-badge {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 50px;
    padding: 12px 30px;
    max-width: 480px;
    margin: 0 auto 50px auto;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(11, 34, 101, 0.03);
}

.badge-g-logo {
    font-weight: 900;
    font-size: 1.8rem;
    color: #4285f4; /* Google Branding Brand Primary Blue Edge */
    background-color: #f1f5f9;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-rating-data {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.rating-score {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-charcoal);
}

.rating-stars {
    color: var(--gold-star);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.reviews-count {
    color: var(--text-slate);
    font-size: 0.82rem;
    font-weight: 600;
    width: 100%;
}

/* --- Multi-Column Distribution Panels Grid --- */
.testimonials-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.review-feedback-card {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.review-feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(11, 34, 101, 0.05);
    border-color: rgba(255, 107, 0, 0.2);
}

.card-quote-mark {
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    line-height: 1;
    color: #e2e8f0;
    font-family: Georgia, serif;
    pointer-events: none;
}

.review-body-text {
    color: var(--text-slate);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* --- Review Card Footer Details Area --- */
.reviewer-profile-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
    position: relative;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reviewer-meta h5 {
    color: var(--text-charcoal);
    font-size: 0.98rem;
    font-weight: 700;
    margin: 0;
}

.review-tag-route {
    color: var(--accent-orange);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 2px;
}

.verified-check {
    width: 18px;
    height: 18px;
    background-color: #28a745;
    color: var(--white);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    right: 0;
}

/* --- Responsive Layout Modifiers --- */
@media (max-width: 992px) {
    .testimonials-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-header-center h2 {
        font-size: 1.9rem;
    }
    .testimonials-masonry-grid {
        grid-template-columns: 1fr;
    }
    .google-rating-summary-badge {
        padding: 10px 20px;
        border-radius: 30px;
        gap: 15px;
    }
    .badge-g-logo {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }
    .review-feedback-card {
        padding: 25px;
    }
}



/* --- Base Layout System --- */
.main-corporate-footer {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 70px 0 0 0;
    position: relative;
    width: 100%;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.footer-top-container {
    max-width: 1140px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

/* --- Widget Base Components Styling --- */
.footer-column-widget {
    display: flex;
    flex-direction: column;
}

.widget-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Title Accent Indicator Bar underline layout */
.widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

/* Widget Column 1: Brand Info Specifics */
.logo-main {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.2;
}

.logo-sub {
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.brand-pitch-text {
    color: var(--text-muted-gray);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: transparent;
    transform: translateY(-2px);
}

/* Widget Columns 2 & 3: Standard Navigation Lists link layers */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: var(--text-muted-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links-list a::before {
    content: "› ";
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    margin-right: 4px;
}

.footer-links-list a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

/* Widget Column 4: Contact Hub Panel details lists */
.footer-contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-icon {
    font-size: 1rem;
    line-height: 1.3;
}

.detail-text {
    color: var(--text-muted-gray);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

.footer-hotline, .footer-email {
    color: var(--text-muted-gray);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-hotline:hover, .footer-email:hover {
    color: var(--white);
}

/* --- Bottom Copyright Bar Line Styles --- */
.footer-bottom-bar {
    background-color: #030b22; /* Maximum deep canvas dark back tone contrast */
    border-top: 1px solid var(--border-deep-navy);
    padding: 22px 0;
}

.bottom-bar-container {
    max-width: 1140px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright-text, .developer-credit-text {
    color: #718096;
    font-size: 0.82rem;
    margin: 0;
}

.copyright-text strong {
    color: var(--text-muted-gray);
}

/* --- Responsive Viewport Grid Modifiers --- */
@media (max-width: 1024px) {
    .footer-top-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .main-corporate-footer {
        padding: 50px 0 0 0;
    }
    .footer-top-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .widget-title {
        margin-bottom: 15px;
    }
    .bottom-bar-container {
        flex-direction: column;
        text-align: center;
    }
}






/* --- Core Fixed Positioning Deck Container --- */
.fixed-communication-deck {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--deck-z-index);
    display: flex;
    flex-direction: column;
    gap: 14px;
    pointer-events: none; /* Prevents container box box sizing constraints from blocking click paths behind it */
}

/* --- Interactive Action Button Units Architectural Profile --- */
.comm-action-btn {
    pointer-events: auto; /* Restores point clickable metrics cleanly onto circles buttons */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: var(--white-solid);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: var(--bouncy-transition);
}

/* Core System Graphic Centering Core Icon overrides */
.comm-icon {
    font-size: 1.45rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* --- Custom Background Branch Tone Assignments --- */
.whatsapp-brand-btn {
    background-color: var(--whatsapp-green);
    /* Micro call-out pulse wave to visually alert mobile scrolling audiences */
    animation: anchorPulseWave 2s infinite;
}

.voice-call-btn {
    background-color: var(--telephony-blue);
}

.regular-sms-btn {
    background-color: var(--sms-orange);
}

/* --- Hover State Modifications --- */
.comm-action-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.comm-action-btn:hover .comm-icon {
    transform: rotate(10deg);
}

/* --- Micro-Interaction Textual Flyout Tooltip Blocks --- */
.comm-tooltip {
    position: absolute;
    right: 70px;
    background-color: #1a2530;
    color: var(--white-solid);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--bouncy-transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Small trailing arrow pointer box indicator on flyouts edge */
.comm-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: #1a2530;
}

/* Display tooltips on screen pointer hover loops profiles */
.comm-action-btn:hover .comm-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* --- Animation Wave Engine Keyframes --- */
@keyframes anchorPulseWave {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0, 0, 0, 0.2);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 6px 16px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 6px 16px rgba(0, 0, 0, 0.2);
    }
}

/* --- Desktop Viewport Adaptive Layout Rules --- */
@media (min-width: 993px) {
    /* Optional optimization: Keeps layout clean on larger screens by stack rendering only the critical chat module */
    .voice-call-btn, 
    .regular-sms-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .fixed-communication-deck {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .comm-action-btn {
        width: 48px;
        height: 48px;
    }
    .comm-icon {
        font-size: 1.25rem;
    }
    /* Disable tooltips on mobile viewports since hover actions are replaced by taps */
    .comm-tooltip {
        display: none !important;
    }
}





/* Base Container Layout */
.footer-scroll-content {
    width: 100%;
    background-color: #1a1a1a; /* Professional dark background */
    padding: 12px 0;
    border-top: 2px solid #ff5722; /* Accent line */
    font-family: Arial, sans-serif;
}

.scroll-container {
    display: flex;
    align-items: center;
    max-width: 96%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Control Button Styling */
.scroll-control-btn {
    background-color: #ff5722;
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    margin-right: 15px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.scroll-control-btn:hover {
    background-color: #e64a19;
}

/* Ticker Window Mask */
.seo-scroll-wrapper {
    flex-grow: 1;
    overflow: hidden; /* Hides items outside the boundary */
    position: relative;
    display: flex;
}

/* Continuous Right-to-Left Ticker Track */
.seo-scroll-links {
    display: inline-block;
    white-space: nowrap;
    padding-left: 10px;
    animation: marquee-left 15s linear infinite; /* Adjust duration to speed up/slow down */
}

/* Individual Links */
.seo-scroll-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    padding: 0 10px;
    transition: color 0.2s ease;
}

.seo-scroll-links a:hover {
    color: #ff5722;
}

/* Hover over track automatically pauses the animation */
.seo-scroll-wrapper:hover .seo-scroll-links {
    animation-play-state: paused;
}

/* JavaScript Utility Class to force manual pause state */
.seo-scroll-links.paused-manually {
    animation-play-state: paused !important;
}

/* Right-to-Left Infinite Loop Keyframes */
@keyframes marquee-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* Moves exactly half the width of the duplicated content track */
        transform: translate3d(-50%, 0, 0); 
    }
}







/* Base Frame */
.flow-process-section {
    padding: 100px 0;
    background-color: var(--light-canvas);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--navy-dark);
}

.flow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Split-Screen Blueprint Grid */
.flow-split-layout {
    display: grid;
    grid-template-columns: 4fr 7fr;
    gap: 80px;
    position: relative;
}

/* Left Sidebar Sticky Mechanics */
.flow-left-pane {
    position: relative;
}

.flow-sticky-card {
    position: sticky;
    top: 50px;
    padding-right: 20px;
}

.flow-badge {
    display: inline-block;
    background-color: #fff3f0;
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.flow-sticky-card h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.flow-sticky-card p {
    font-size: 16px;
    color: var(--slate-gray);
    line-height: 1.6;
    margin: 0 0 32px 0;
}

/* Operational Metrics Layer */
.flow-mini-stats {
    display: flex;
    gap: 12px;
}

.stat-pill {
    background-color: var(--border-tint);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--navy-dark);
}

.stat-pill strong {
    color: var(--brand-orange);
}

/* Right Pipeline Stack */
.flow-right-pane {
    background-color: #0b22652e;
    position: relative;
    padding-left: 40px;
}

/* Vertical Timeline Track Line */
.flow-timeline-spine {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 4px;
    width: 2px;
    background-color: var(--border-tint);
}

/* Workflow Individual Step Items */
.flow-step-item {
    position: relative;
    padding-bottom: 50px;
}

.flow-step-item:last-child {
    padding-bottom: 0;
}

/* Timeline Interactive Node Indicator */
.flow-marker {
    position: absolute;
    left: -40px;
    top: 6px;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-dot {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Text Content Wrapper */
.flow-content-box {
    transition: transform 0.3s ease;
}

.flow-step-num {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-orange);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.flow-content-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.flow-content-box p {
    font-size: 15px;
    color: var(--slate-gray);
    line-height: 1.6;
    margin: 0;
}

/* Hover Interaction Triggers */
.flow-step-item:hover .flow-dot {
    background-color: var(--brand-orange);
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.2);
}

.flow-step-item:hover .flow-content-box {
    transform: translateX(6px);
}

/* Adaptive Breakpoints for Mobile Viewports */
@media (max-width: 968px) {
    .flow-split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .flow-sticky-card {
        position: relative;
        top: 0;
        padding-right: 0;
    }

    .flow-sticky-card h2 {
        font-size: 32px;
    }
}
