/* 
    Project: Loco Tech Engineering
    Color Palette: 
    - Royal Blue: #004aad
    - Red Accent: #d20000
    - Amber Gold: #ff9d00
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* --- Root Variables --- */
:root {
    --brand-blue: #004aad;
    --brand-red: #d20000;
    --brand-gold: #ff9d00;
    --banner-height: 500px;
}

/* --- Global Reset --- */
* {
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
    transition: 0.3s ease-in-out;
}

body {
    color: #494b51;
    font-family: 'Roboto', sans-serif !important;
    background-color: #ffffff;
    overflow-x: hidden;
    margin: 0;
}

/* --- Fixed Header --- */
.header-area {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --- Logo & Branding --- */
.logobox {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logobox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 11px;
    color: var(--brand-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Top Header & Gradient Icons --- */
.top-header {
    background-color: var(--brand-blue);
    padding: 5px 0;
}

.contact-info i {
    background: linear-gradient(45deg, var(--brand-red), var(--brand-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    display: inline-block;
}

.phone-no, .emailid {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 500;
}

.phone-no:hover, .emailid:hover {
    color: var(--brand-gold) !important;
}

/* --- Navigation --- */
.navbar-nav .nav-link {
    color: var(--brand-blue) !important;
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--brand-red) !important;
}

/* --- Buttons & Social --- */
.btn1 {
    background: linear-gradient(90deg, var(--brand-blue) 0%, #002a63 100%);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}

.btn1::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-gold));
    transition: 0.4s ease;
    z-index: -1;
}

.btn1:hover::before {
    width: 100%;
}

.social_icons .icons {
    color: #fff !important;
    background: rgba(255,255,255,0.15);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: 0.4s ease;
}

.social_icons .icons:hover {
    background: linear-gradient(45deg, var(--brand-red), var(--brand-gold));
    transform: translateY(-3px);
}

/* --- Banner Section --- */
.loco-banner-section {
    width: 100%;
    background: #000;
}

.loco-banner-container {
    position: relative;
    width: 100%;
    height: var(--banner-height);
    overflow: hidden;
}

.loco-slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.loco-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loco-slide img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(0.4);
    z-index: 1;
}

.loco-content-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 15px;
}

.loco-title-reveal {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #ffffff !important;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
}

.loco-tagline-box p {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    color: #ffffff;
    background: var(--brand-blue);
    display: inline-block;
    padding: 8px 25px;
    border-radius: 4px;
    margin: 0;
}

/* Banner Navigation */
.loco-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    z-index: 20;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loco-nav-btn:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.prev { left: 20px; }
.next { right: 20px; }

.loco-progress-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.loco-bar {
    width: 35px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.loco-bar.active {
    background: #ffffff;
    width: 55px;
}

/* --- Floating Widgets (WhatsApp & Top) --- */
.phone-call {
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 15px;
    background: #10b418;
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1100;
    line-height: 50px; /* Centering icon */
}

.phone-call i, .phone-call img {
    vertical-align: middle;
}

.phone-call::after {
    position: absolute;
    content: "Drop Your Message";
    top: 10px;
    left: -160px;
    background-color: #fff;
    color: #0c9212;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 18px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #25d366;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease;
    white-space: nowrap;
}

.phone-call:hover::after {
    visibility: visible;
    opacity: 1;
}

/* Pulsing Effect */
.phone-call::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -10px; left: -10px;
    background-color: #10b418;
    width: 70px; height: 70px;
    border-radius: 100%;
    opacity: 0.6;
    animation: pulse2 1.8s ease-out infinite;
}

@keyframes pulse2 {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

.back-to-top {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 20px;
    bottom: 80px; /* Above WhatsApp */
    background: #111;
    color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .logobox { width: 60px !important; height: 60px !important; }
    .brand-name { font-size: 18px; }
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

@media (max-width: 768px) {
    :root { --banner-height: 350px; }
    .loco-nav-btn { width: 35px; height: 35px; }
    .prev { left: 10px; }
    .next { right: 10px; }
    .loco-title-reveal { font-size: 1.8rem; }
}


/*Section1 start*/



//overview//

./* ==========================================================================
   LOCOTECH - ACCELERATED CORE CAPABILITIES SECTION CSS
   ========================================================================== */
.loco-premium-overview {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Base Custom Variable Mapping for Locotech */
:root {
    --loco-blue: #3B439B;   /* Corporate Primary Blue */
    --loco-red: #D62828;    /* Corporate Accent Red */
    --loco-amber: #FFB703;  /* High-Contrast Highlight Amber */
    --loco-dark: #1F2421;   /* Premium Heavy Text Slate */
}

/* Header Component Elements */
.loco-badge {
    background: var(--loco-amber);
    color: var(--loco-dark);
    padding: 6px 16px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-block;
}

.loco-main-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--loco-dark);
    margin-top: 20px;
}

.loco-title-line {
    width: 70px;
    height: 4px;
    background: var(--loco-blue);
    margin: 15px auto;
    border-radius: 10px;
}

.loco-intro-text {
    max-width: 700px;
    color: #666;
    line-height: 1.8;
}

/* Feature Structural Elements */
.loco-feature-card {
    display: flex;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.loco-icon-box {
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    background: var(--loco-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(59, 67, 155, 0.2);
}

.loco-feature-card:hover .loco-icon-box {
    background: var(--loco-red);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.loco-feature-content h4 {
    font-weight: 800;
    color: var(--loco-dark);
    margin-bottom: 10px;
    font-size: 18px;
}

.justified-p {
    text-align: justify;
    text-justify: inter-word;
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.loco-link {
    color: var(--loco-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.loco-link i {
    transition: transform 0.2s ease;
}

.loco-link:hover {
    color: var(--loco-red);
}

.loco-link:hover i {
    transform: translateX(4px);
}

/* Alignment Logic Rules */
.left-align { 
    text-align: right; 
    flex-direction: row-reverse; 
}
.left-align .loco-icon-box { 
    margin-left: 20px; 
}
.left-align .justified-p {
    text-align-last: right;
}

.right-align { 
    text-align: left; 
}
.right-align .loco-icon-box { 
    margin-right: 20px; 
}
.right-align .justified-p {
    text-align-last: left;
}

/* Center Column Floating Media System */
.loco-visual-wrapper { 
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.loco-img-float {
    max-width: 100%;
    height: auto;
    animation: floatAnim 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Clean Responsiveness Matrix Overrides */
@media (max-width: 991px) {
    .loco-feature-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 35px;
    }
    .loco-icon-box { 
        margin: 0 0 20px 0 !important; 
    }
    .loco-main-title { 
        font-size: 28px; 
    }
    .left-align .justified-p, .right-align .justified-p {
        text-align: center;
        text-align-last: center;
    }
    .loco-visual-wrapper {
        margin: 30px 0;
    }
}


//sub menu //
 /* ==========================================================================
       DROP-DOWN INDUSTRIAL MEGA MENU CSS SCOPE
       ========================================================================== */
    .core-catalog-matrix {
        top: 100%;
        left: 0;
        background: #ffffff;
        border-radius: 0 0 12px 12px !important;
        margin-top: 0;
    }

    .catalog-column {
        border-right: 1px solid #f1f3f5;
    }

    .catalog-column:last-child {
        border-right: none;
    }

    .column-heading {
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        color: #3B439B; /* Primary Blue */
        letter-spacing: 0.5px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #E2E8F0;
    }

    .sub-links li {
        margin-bottom: 8px;
    }

    .sub-links a {
        display: block;
        color: #4A5568;
        font-size: 13.5px;
        text-decoration: none;
        padding: 2px 0;
        transition: all 0.2s ease;
    }

    .sub-links a:hover {
        color: #D62828 !important; /* Secondary Red Accent */
        padding-left: 5px;
    }

    /* Responsive Handling for Mobile Viewports */
    @media (max-width: 991px) {
        .core-catalog-matrix {
            max-height: 450px;
            overflow-y: auto;
            position: relative !important;
            box-shadow: none !important;
            padding: 15px !important;
        }
        .catalog-column {
            border-right: none;
            margin-bottom: 20px;
            border-bottom: 1px dashed #e2e8f0;
            padding-bottom: 15px;
        }
        .catalog-column:last-child {
            border-bottom: none;
        }
    }

//sub menu end //

//header styling //
/* Custom Header Styling */
        .page-header {
            position: relative;
            background: linear-gradient(rgba(16, 18, 24, 0.75), rgba(16, 18, 24, 0.75)), url('images/about-banner.webp') no-repeat center center;
            background-size: cover;
            padding: 100px 0;
            color: #ffffff;
            text-align: center;
        }

        .page-header h1 {
            font-size: 45px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .page-header .breadcrumb-item a {
            color: #F05A4E;
            text-decoration: none;
            font-weight: 600;
        }

        .page-header .breadcrumb-item.active {
            color: #ffffff;
            opacity: 0.8;
        }

        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: #ffffff;
        }
        
        .hover-red:hover {
            color: #F05A4E !important;
            transition: 0.3s;
        }

//header style end //


//overview end //

// Execution Handover //
.ribbon-process-section {
            padding: 100px 0;
            background: #fbfcfe;
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
        }

        .title-main { font-weight: 900; font-size: 42px; color: var(--roy-dark); margin-bottom: 10px; }
        .title-main span { color: var(--roy-blue); }
        .glow-divider { width: 100px; height: 6px; background: var(--roy-amber); margin: 0 auto 50px; border-radius: 10px; box-shadow: 0 4px 15px rgba(255, 199, 139, 0.4); }

        .ribbon-wrapper {
            position: relative;
            padding: 80px 0;
            width: 100%;
        }

        /* Full Width Line */
        .ribbon-line-bg {
            position: absolute;
            top: 140px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #eef2ff;
            z-index: 1;
        }

        .ribbon-line-active {
            position: absolute;
            top: 0;
            left: 0;
            width: 0%; /* Animated by JS */
            height: 100%;
            background: linear-gradient(to right, var(--roy-blue), var(--roy-amber));
            box-shadow: 0 0 15px var(--roy-blue);
            transition: width 0.3s ease;
        }

        .ribbon-container {
            display: flex;
            justify-content: space-around;
            padding: 0 5%;
            position: relative;
            z-index: 2;
        }

        .ribbon-step {
            width: 15%;
            text-align: center;
            opacity: 0.5;
            transform: scale(0.9);
            transition: all 0.5s ease;
        }

        .ribbon-step.active {
            opacity: 1;
            transform: scale(1.1);
        }

        .step-blob {
            width: 120px;
            height: 120px;
            background: #fff;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Organic Shape */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 35px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            position: relative;
            transition: 0.5s;
            border: 2px solid transparent;
        }

        .step-count {
            position: absolute;
            top: -10px;
            left: -10px;
            background: var(--roy-dark);
            color: #fff;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            font-size: 14px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Color Coding */
        .color-1 { color: #004AAD; border-color: #004AAD; }
        .color-2 { color: #f59e0b; border-color: #f59e0b; }
        .color-3 { color: #10b981; border-color: #10b981; }
        .color-4 { color: #ef4444; border-color: #ef4444; }
        .color-5 { color: #8b5cf6; border-color: #8b5cf6; }
        .color-6 { color: #ec4899; border-color: #ec4899; }

        .step-info h4 { font-weight: 800; font-size: 20px; color: var(--roy-dark); margin-bottom: 10px; }
        .step-info p { font-size: 13px; color: #666; line-height: 1.5; }

        @media (max-width: 991px) {
            .ribbon-container { flex-direction: column; align-items: center; }
            .ribbon-step { width: 80%; margin-bottom: 50px; opacity: 1; transform: scale(1); }
            .ribbon-line-bg { display: none; }
        }

//Execution Handover end //

//About us page //

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.roy-about {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  font-family: 'Poppins', sans-serif;
}

.roy-container {
  max-width: 1150px;
  margin: auto;
}

/* Headings */
.roy-heading {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #0b3d91, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  position: relative;
}

.roy-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff6b00;
  margin-top: 8px;
  border-radius: 2px;
}

/* Paragraph */
.roy-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* List Styling */
.roy-list {
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.roy-list li {
  position: relative;
  padding: 14px 16px 14px 45px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: 0.3s ease;
  border-left: 4px solid transparent;
}

.roy-list li:hover {
  transform: translateX(5px);
  border-left: 4px solid #ff6b00;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.roy-list li::before {
  content: "✔";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b00;
  font-weight: bold;
}

/* Services Grid */
.roy-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* Cards */
.roy-card {
  padding: 25px;
  border-radius: 15px;
  background: linear-gradient(145deg, #ffffff, #f1f5ff);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.roy-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -100%;
  left: -100%;
  background: linear-gradient(120deg, transparent, rgba(255,107,0,0.15), transparent);
  transition: 0.5s;
}

.roy-card:hover::before {
  top: 100%;
  left: 100%;
}

.roy-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Card Text */
.roy-card h3 {
  font-size: 20px;
  color: #0b3d91;
  margin-bottom: 12px;
  font-weight: 600;
}

.roy-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .roy-heading {
    font-size: 26px;
  }

  .roy-card {
    padding: 20px;
  }
}

//routes//
/* ===== Roy Packers & Movers - Modern Kolkata Section ===== */

.rpm-locations-section{
  padding:70px 20px;
  background: linear-gradient(135deg,#f7f9fc,#eef3ff);
  font-family: 'Segoe UI', sans-serif;
}

.rpm-container{
  max-width:1200px;
  margin:auto;
}

/* MAIN TITLE */
.rpm-main-title{
  text-align:center;
  font-size:34px;
  font-weight:700;
  margin-bottom:40px;
  color:#1d2b53;
  position:relative;
  line-height:1.3;
}

.rpm-main-title:after{
  content:'';
  width:90px;
  height:4px;
  background:#2ecc71;
  display:block;
  margin:12px auto 0;
  border-radius:10px;
}

/* GRID */
.rpm-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
}

/* CARD */
.rpm-card{
  background:#fff;
  padding:25px 22px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.3s ease;
  position:relative;
  overflow:hidden;

  /* ✅ center ALL internal elements */
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.rpm-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

/* ICON WRAPPER CENTER */
.rpm-icon{
  width:55px;
  height:55px;
  background:#e8f8ee;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}

.rpm-icon svg{
  width:26px;
  height:26px;
  fill:#27ae60;
}

/* CARD TITLE */
.rpm-card h3{
  font-size:20px;
  margin-bottom:10px;
  color:#1d2b53;
  text-align:center;
}

/* PARAGRAPH (kept justified but visually centered block) */
.rpm-card p{
  font-size:14.5px;
  line-height:1.8;
  color:#555;
  text-align:justify;
  text-justify:inter-word;

  max-width:95%;
}

/* RESPONSIVE */
@media(max-width:768px){

  .rpm-main-title{
    font-size:26px;
  }

  .rpm-card{
    padding:20px 16px;
  }

  .rpm-card h3{
    font-size:18px;
  }
}

@media(max-width:480px){

  .rpm-main-title{
    font-size:22px;
  }

  .rpm-grid{
    grid-template-columns:1fr;
  }
}


/* ==========================================================================
   MODERN FULL-WIDTH WELCOME SECTION & CAPABILITIES GRID (LOCO-TECH)
   ========================================================================== */

:root {
    --loco-blue: #3B439B;       /* Logo Train Blue */
    --loco-red: #D62828;        /* Logo Engineering Crimson Red */
    --loco-yellow: #FFCC00;     /* Logo Center Warning Yellow Accent */
    --loco-dark: #111625;       /* Deep Industrial Charcoal */
    --loco-bg: #F5F7FA;         /* Clean Light Layout Surface Gray */
    --loco-border: #E2E8F0;     /* Crisp Component Framework Outlines */
}

/* --- SECTION 1: WELCOME BRANDING PROFILE --- */
.modern-welcome-section {
    background-color: var(--loco-bg);
    width: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.welcome-content-wrapper {
    padding: 100px 80px;
}

/* Badge & Titles */
.section-badge {
    color: var(--loco-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.section-main-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--loco-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-main-title span {
    color: var(--loco-blue);
}

.section-desc {
    font-size: 17px;
    color: #484848;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--loco-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--loco-red);
}

.feature-text h6 {
    margin: 0;
    font-weight: 700;
    color: var(--loco-dark);
}

.feature-text p {
    margin: 0;
    font-size: 13px;
    color: #52606D;
}

/* Actions */
.btn-modern-dark {
    background: var(--loco-blue);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-modern-dark:hover {
    background: var(--loco-red);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.2);
}

.contact-link {
    margin-left: 25px;
    color: var(--loco-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--loco-red);
}

/* Image Side */
.welcome-image-box {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--loco-red);
    padding: 25px 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(214, 40, 40, 0.2);
}

.experience-card h3 {
    font-size: 40px;
    font-weight: 900;
    margin: 0;
    color: #ffffff;
}

.experience-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* --- SECTION 2: 8-CAPABILITIES PREMIUM GRID DISPLAY --- */
.roy-premium-overview {
    background: #ffffff;
    padding: 80px 0;
}

.roy-badge {
    background-color: #ffffff;
    color: var(--loco-red);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
    border: 2px solid var(--loco-red);
}

.roy-main-title {
    font-weight: 800;
    color: var(--loco-dark);
}

.roy-title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--loco-blue) 0%, var(--loco-red) 100%);
    margin: 15px auto 25px;
    border-radius: 2px;
}

.roy-intro-text {
    max-width: 700px;
    color: #52606D;
    font-size: 16px;
}

.roy-feature-card {
    background: #ffffff;
    border: 1px solid var(--loco-border);
    padding: 30px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
    height: 100%;
}

.roy-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(59, 67, 155, 0.1);
    border-color: var(--loco-blue);
}

.roy-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--loco-bg);
    color: var(--loco-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--loco-border);
}

.roy-feature-card:hover .roy-icon-box {
    background-color: var(--loco-blue);
    color: #ffffff;
    border-color: var(--loco-blue);
}

.roy-feature-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--loco-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.roy-feature-card:hover .roy-feature-content h4 {
    color: var(--loco-blue);
}

.roy-feature-content p {
    font-size: 14px;
    color: #52606D;
    line-height: 1.6;
    margin-bottom: 20px;
}

.roy-link {
    color: var(--loco-red);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.roy-link:hover {
    color: var(--loco-blue);
}

/* Custom Interactive Style for Card 8 shortcut block */
.catalog-shortcut-card {
    background: linear-gradient(135deg, var(--loco-blue) 0%, var(--loco-dark) 100%);
    color: #ffffff;
    border: none;
}

.catalog-shortcut-card h4, 
.catalog-shortcut-card p {
    color: #ffffff !important;
}

.catalog-shortcut-card .roy-icon-box {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--loco-yellow);
    border: none;
}

.catalog-shortcut-card:hover .roy-icon-box {
    background-color: var(--loco-red);
    color: #ffffff;
}

.catalog-shortcut-card .roy-link {
    color: var(--loco-yellow);
}

.catalog-shortcut-card .roy-link:hover {
    color: #ffffff;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 1200px) {
    .welcome-content-wrapper { padding: 60px 40px; }
    .section-main-title { font-size: 32px; }
}

@media (max-width: 991px) {
    .welcome-image-box { min-height: 400px; }
}

@media (max-width: 767px) {
    .welcome-content-wrapper { padding: 50px 20px; text-align: center; }
    .feature-grid { grid-template-columns: 1fr; text-align: left; }
    .feature-item { justify-content: flex-start; }
    .contact-link { display: block; margin: 20px 0 0 0; }
    .experience-card { left: 50%; transform: translateX(-50%); bottom: 20px; padding: 15px 25px; }
}


/*Section2 start*/
/* ==========================================================================
   LOCO-TECH ENGINEERING - HIGH-END SERVICES OVERVIEW STYLES
   ========================================================================== */

:root {
    --loco-blue: #3B439B;       /* Logo Train Blue */
    --loco-red: #D62828;        /* Logo Engineering Crimson Red */
    --loco-yellow: #FFCC00;     /* Logo Center Warning Yellow Accent */
    --loco-dark: #111625;       /* Deep Industrial Charcoal */
    --loco-bg: #F5F7FA;         /* Clean Light Layout Surface Gray */
    --loco-border: #E2E8F0;     /* Crisp Framing Outlines */
}

.services-overview-section {
    background: radial-gradient(circle at top right, #ffffff, var(--loco-bg));
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.top-badge {
    background: #ffffff;
    color: var(--loco-red);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    border: 2px solid var(--loco-red);
}

.service-main-title {
    font-weight: 800;
    font-size: 42px;
    color: var(--loco-dark);
}

.title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--loco-blue) 0%, var(--loco-red) 100%);
    margin: 15px auto;
    border-radius: 2px;
}

/* Service Cards Layout Framework */
.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px; /* Adjusted to a clean micro-radius matching corporate modules */
    box-shadow: 0 4px 20px rgba(59, 67, 155, 0.03);
    display: flex;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--loco-border);
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(59, 67, 155, 0.12);
    background: var(--loco-blue);
    border-color: var(--loco-blue);
}

.service-card:hover h4, 
.service-card:hover p, 
.service-card:hover .read-more {
    color: #ffffff !important;
}

.left-card { flex-direction: row-reverse; text-align: right; }
.right-card { flex-direction: row; text-align: left; }

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--loco-bg);
    color: var(--loco-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--loco-border);
}

.service-card:hover .card-icon {
    background: var(--loco-red);
    color: #ffffff;
    border-color: var(--loco-red);
}

.card-text h4 { 
    font-weight: 700; 
    font-size: 20px; 
    color: var(--loco-dark); 
    margin: 0 15px 10px; 
    transition: color 0.3s ease;
}

.card-text p { 
    font-size: 14px; 
    color: #52606D; 
    margin: 0 15px 15px; 
    transition: color 0.3s ease;
}

.read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--loco-blue);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.service-card:hover .read-more {
    color: var(--loco-yellow) !important; /* Highlights action links with the yellow brand accent on card hover */
}

/* Center Visual Animation */
.visual-wrapper {
    position: relative;
    padding: 20px;
}

.floating-man {
    max-height: 480px;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(216, 40, 40, 0.08); /* Re-tuned to soft Crimson Red translucent aura */
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Responsive Customization */
@media (max-width: 991px) {
    .left-card, .right-card { 
        flex-direction: column !important; 
        text-align: center; 
        align-items: center;
    }
    .card-text h4 { margin: 15px 0 10px; }
    .floating-man { max-height: 350px; }
}
/*section2 end*/

/* --- Bottom Interface Buttons --- */
.read-more-button {
    text-align: center;
    margin-top: 45px;
}

.read-more-button .btn1 {
    border-radius: 30px;
    background-color: var(--loco-blue);
    color: #ffffff;
    border: 2px solid var(--loco-blue);
    transition: all 0.3s ease;
}

.read-more-button .btn1:hover {
    background-color: var(--loco-red);
    border-color: var(--loco-red);
    color: #ffffff;
}

.learn-more-button .btn1 {
    border-radius: 30px;
    background-color: var(--loco-red);
    color: #ffffff;
    border: 2px solid var(--loco-red);
    transition: all 0.3s ease;
}

.learn-more-button .btn1:hover {
    background-color: var(--loco-blue);
    border-color: var(--loco-blue);
    color: #ffffff;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.content {
    display: none;
}


/*section3 start*/
/* ==========================================================================
   SECTION 3: WHY CHOOSE US (LOCO-TECH ENGINEERING BRAND STYLES)
   ========================================================================== */

:root {
    --loco-blue: #3B439B;       /* Logo Train Blue */
    --loco-red: #D62828;        /* Logo Engineering Crimson Red */
    --loco-yellow: #FFCC00;     /* Logo Center Warning Yellow */
    --loco-dark: #111625;       /* Deep Industrial Charcoal */
    --loco-bg: #F5F7FA;         /* Clean Light Layout Surface Gray */
    --loco-border: #E2E8F0;     /* Crisp Component Framework Outlines */
}

.why-choose-locotech {
    background: var(--loco-bg); /* Crisp cleanroom light gray background */
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.badge-accent {
    background: #ffffff;
    color: var(--loco-red);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
    border: 2px solid var(--loco-red);
}

.main-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--loco-dark);
    margin-bottom: 20px;
}

.main-title span {
    color: var(--loco-blue); /* Metallic Train Blue Shift */
}

.sub-lead {
    color: #52606D;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
}

/* Card Styling */
.choose-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px; /* Professional micro-border radius instead of bubbly round corners */
    height: 100%;
    border: 1px solid var(--loco-border);
    box-shadow: 0 4px 15px rgba(59, 67, 155, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Accent Indicator Bar on top of the card during hover */
.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--loco-red); /* Clean industrial top bar using brand Crimson Red */
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(59, 67, 155, 0.12);
    border-color: var(--loco-blue);
}

.choose-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: var(--loco-bg);
    color: var(--loco-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 8px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 1px solid var(--loco-border);
}

.choose-card:hover .icon-box {
    background: var(--loco-blue);
    color: #ffffff;
    border-color: var(--loco-blue);
    transform: scale(1.05);
}

.choose-card h4 {
    font-weight: 700;
    color: var(--loco-dark);
    font-size: 21px;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.choose-card:hover h4 {
    color: var(--loco-blue);
}

.choose-card p {
    color: #52606D;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Fallback highlight strong styles inside descriptions */
.choose-card strong {
    color: var(--loco-dark);
    font-weight: 600;
}

/* --- Responsive Layout Fixes --- */
@media (max-width: 991px) {
    .main-title { font-size: 30px; }
    .choose-card { padding: 30px 20px; }
}

@media (max-width: 767px) {
    .why-choose-locotech { padding: 60px 0; }
    .main-title { font-size: 26px; }
    .choose-card { text-align: center; }
    .icon-box { margin-left: auto; margin-right: auto; }
}
/*section3 end*/

.mt-10 {
    margin-top: 10px !important;
}

/*section4 start*/

/* ==========================================================================
   LOCO-TECH ENGINEERING - MANUFACTURING PROCESS TIMELINE STYLES
   ========================================================================== */

:root {
    --loco-blue: #3B439B;       /* Logo Train Blue */
    --loco-red: #D62828;        /* Logo Engineering Crimson Red */
    --loco-yellow: #FFCC00;     /* Logo Center Warning Yellow Accent */
    --loco-dark: #111625;       /* Deep Industrial Charcoal */
    --loco-bg: #F5F7FA;         /* Clean Light Layout Surface Gray */
    --loco-border: #E2E8F0;     /* Layout Structural Lines */
}

.locotech-process-section {
    background: #ffffff;
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.process-badge {
    background: #ffffff;
    color: var(--loco-red);
    padding: 5px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
    border: 2px solid var(--loco-red);
}

.process-title {
    font-weight: 800;
    font-size: 40px;
    color: var(--loco-dark);
    margin-bottom: 0;
}

.process-title span {
    color: var(--loco-blue);
}

/* Timeline Flexbox Path Design */
.process-path {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

/* Connecting Dotted Track for Large Displays */
@media (min-width: 992px) {
    .process-path::before {
        content: '';
        position: absolute;
        top: 46px; /* Centered exactly with the 80px icons considering borders */
        left: 8%;
        right: 8%;
        height: 2px;
        background: repeating-linear-gradient(to right, var(--loco-blue) 0, var(--loco-blue) 8px, transparent 8px, transparent 16px);
        z-index: 0;
        opacity: 0.3;
    }
}

.process-step {
    width: 300px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--loco-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 26px;
    position: relative;
    border: 6px solid #ffffff;
    box-shadow: 0 8px 20px rgba(59, 67, 155, 0.12);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--loco-red);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(214, 40, 40, 0.15);
}

/* Hover States matching your rotating animation layout logic */
.process-step:hover .step-icon-wrap {
    transform: rotateY(360deg) scale(1.08);
    background: var(--loco-red);
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(214, 40, 40, 0.25);
}

.step-content h4 {
    font-weight: 700;
    color: var(--loco-dark);
    font-size: 19px;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.process-step:hover .step-content h4 {
    color: var(--loco-blue);
}

.step-content p {
    font-size: 14px;
    color: #52606D;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Mobile Viewport Layout Adjustments --- */
@media (max-width: 991px) {
    .process-path { gap: 30px; margin-top: 40px; }
    .process-step { width: 100%; max-width: 500px; display: flex; text-align: left; align-items: flex-start; gap: 20px; }
    .step-icon-wrap { flex-shrink: 0; margin: 0; }
}
/*section4 end*/



/* ==========================================================================
   LOCO-TECH ENGINEERING - FULL-WIDTH IMPACT COUNT MODULE
   ========================================================================== */

:root {
    --loco-blue: #3B439B;       /* Logo Train Blue */
    --loco-red: #D62828;        /* Logo Engineering Crimson Red */
    --loco-yellow: #FFCC00;     /* Logo Center Warning Yellow Accent */
    --loco-dark: #111625;       /* Deep Industrial Charcoal */
    --loco-bg: #F5F7FA;         /* Clean Light Layout Surface Gray */
    --loco-border: #E2E8F0;     /* Crisp Layout Grid Framing */
}

.locotech-fullwidth-impact {
    background: #ffffff;
    border-top: 1px solid var(--loco-border);
    width: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* --- Left Focus Branding Panel --- */
.locotech-fullwidth-impact .brand-focus-panel {
    background: linear-gradient(135deg, var(--loco-dark) 0%, var(--loco-blue) 100%);
    padding: 100px 8%;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
}

.locotech-fullwidth-impact .top-tag {
    background: var(--loco-red);
    color: #ffffff;
    padding: 6px 16px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 25px;
}

.locotech-fullwidth-impact .main-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.locotech-fullwidth-impact .main-heading span {
    color: var(--loco-yellow); /* Crisp warning yellow text anchor match */
}

.locotech-fullwidth-impact .brand-subtext {
    font-size: 16px;
    line-height: 1.7;
    color: #D1D6E6; /* High contrast soft gray-blue text mix */
    margin-bottom: 40px;
}

.locotech-fullwidth-impact .btn-estimate {
    background: var(--loco-red);
    color: #ffffff;
    padding: 16px 36px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    border: none;
}

.locotech-fullwidth-impact .btn-estimate:hover {
    background: #ffffff;
    color: var(--loco-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- Right Counters Layout Grid --- */
.locotech-fullwidth-impact .stats-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.locotech-fullwidth-impact .stat-square {
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
    background: #ffffff;
}

.locotech-fullwidth-impact .stat-square:hover {
    background: var(--loco-bg);
}

/* Structural Components & Icons */
.locotech-fullwidth-impact .stat-icon-box {
    font-size: 38px;
    color: var(--loco-blue);
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.locotech-fullwidth-impact .stat-square:hover .stat-icon-box {
    transform: translateY(-4px);
    color: var(--loco-red);
}

.locotech-fullwidth-impact .count-num {
    display: inline-block;
    font-size: 56px;
    font-weight: 800;
    color: var(--loco-dark);
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

.locotech-fullwidth-impact .symb {
    font-size: 28px;
    color: var(--loco-red);
    font-weight: 700;
    margin-left: 3px;
    vertical-align: top;
    position: relative;
    top: 5px;
}

.locotech-fullwidth-impact .stat-content p {
    font-size: 13.5px;
    font-weight: 700;
    color: #52606D;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Grid Separator Lines */
.locotech-fullwidth-impact .border-end {
    border-right: 1px solid var(--loco-border) !important;
}

.locotech-fullwidth-impact .border-bottom {
    border-bottom: 1px solid var(--loco-border) !important;
}

/* --- Responsive Media Viewports --- */
@media (max-width: 1200px) {
    .locotech-fullwidth-impact .main-heading { font-size: 40px; }
    .locotech-fullwidth-impact .stat-square { padding: 60px 25px; }
    .locotech-fullwidth-impact .count-num { font-size: 46px; }
}

@media (max-width: 991px) {
    .locotech-fullwidth-impact .brand-focus-panel { padding: 60px 40px; }
    .locotech-fullwidth-impact .stat-square { padding: 50px 20px; }
}

@media (max-width: 575px) {
    .locotech-fullwidth-impact .stats-full-grid {
        grid-template-columns: 1fr;
    }
    .locotech-fullwidth-impact .stat-square {
        border-right: 0 !important;
    }
    /* Inserts missing structural separation boundary line in singular item columns layout stack */
    .locotech-fullwidth-impact .stat-square:not(:last-child) {
        border-bottom: 1px solid var(--loco-border) !important;
    }
}



/* ==========================================================================
   LOCO-TECH ENGINEERING - PREMIUM PRODUCT CAROUSEL STYLES
   ========================================================================== */

:root {
    --loco-blue: #3B439B;       /* Logo Train Blue */
    --loco-red: #D62828;        /* Logo Engineering Crimson Red */
    --loco-yellow: #FFCC00;     /* Logo Center Warning Yellow */
    --loco-dark: #111625;       /* Deep Industrial Charcoal */
    --loco-bg: #F5F7FA;         /* Clean Light Layout Surface */
    --loco-border: #E2E8F0;     /* Crisp Component Framework Outlines */
}

.locotech-products-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Section Typography & Headers */
.locotech-products-section .section-header {
    margin-bottom: 50px;
}

.locotech-products-section .top-tag {
    background-color: #ffffff;
    color: var(--loco-red);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
    border: 2px solid var(--loco-red);
}

.locotech-products-section .main-title {
    font-weight: 800;
    font-size: 38px;
    color: var(--loco-dark);
    letter-spacing: -0.5px;
    margin: 0;
}

.locotech-products-section .main-title span {
    color: var(--loco-blue);
}

.locotech-products-section .title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--loco-blue) 0%, var(--loco-red) 100%);
    margin: 18px auto 0;
    border-radius: 2px;
}

/* Carousel Structural Track Framework */
.locotech-products-section .carousel-outer-wrapper {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 45px;
}

.locotech-products-section .carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.locotech-products-section .carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 0;
    width: 100%;
}

/* Product Component Structural Tiles */
.locotech-products-section .product-card-slide {
    flex: 0 0 33.3333%;
    padding: 15px;
    box-sizing: border-box;
}

.locotech-products-section .card-inner {
    background: #ffffff;
    border: 1px solid var(--loco-border);
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(59, 67, 155, 0.03);
    position: relative;
}

.locotech-products-section .card-inner:hover {
    transform: translateY(-6px);
    border-color: var(--loco-blue);
    box-shadow: 0 15px 35px rgba(59, 67, 155, 0.1);
}

/* Product Media Frame Area */
.locotech-products-section .card-image-box {
    width: 100%;
    height: 210px;
    background-color: var(--loco-bg);
    border-radius: 6px;
    margin-bottom: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--loco-border);
}

.locotech-products-section .card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.locotech-products-section .card-inner:hover .card-image-box img {
    transform: scale(1.08);
}

/* Text & Content Formats */
.locotech-products-section .card-inner h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--loco-dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.locotech-products-section .card-inner:hover h3 {
    color: var(--loco-blue);
}

.locotech-products-section .card-inner p {
    font-size: 13.5px;
    color: #52606D;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

/* Brand Styled "Know More" Call-To-Action Button */
.locotech-products-section .btn-know-more {
    background-color: var(--loco-blue);
    color: #ffffff;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.locotech-products-section .btn-know-more i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.locotech-products-section .btn-know-more:hover {
    background-color: var(--loco-red);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.2);
}

.locotech-products-section .btn-know-more:hover i {
    transform: translateX(5px);
}

/* Mechanical Slider Controller Arrows */
.locotech-products-section .nav-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 2px solid var(--loco-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--loco-dark);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.locotech-products-section .nav-arrow:hover {
    background-color: var(--loco-blue);
    color: #ffffff;
    border-color: var(--loco-blue);
}

.locotech-products-section .nav-arrow:active {
    background-color: var(--loco-red);
    border-color: var(--loco-red);
}

.locotech-products-section .arrow-left { left: -5px; }
.locotech-products-section .arrow-right { right: -5px; }

/* Responsive Matrix Settings */
@media (max-width: 1199px) {
    .locotech-products-section .product-card-slide { flex: 0 0 50%; }
}

@media (max-width: 767px) {
    .locotech-products-section .carousel-outer-wrapper { padding: 0 10px; }
    .locotech-products-section .product-card-slide { flex: 0 0 100%; }
    .locotech-products-section .nav-arrow { display: none !important; }
    .locotech-products-section .main-title { font-size: 30px; }
}
//product section end //


/* ==========================================================================
   LOCO-TECH CLEAN INDUSTRIAL FAQ ACCORDION STYLES WITH 30% OCCUPANCY GEARS
   ========================================================================== */

:root {
    --loco-blue: #3B439B;       /* Brand Primary Blue */
    --loco-red: #D62828;        /* Engineering Accent Red */
    --loco-dark: #111625;       /* Deep Charcoal Structural Base */
    --loco-bg: #F5F7FA;         /* Clean Light Layout Surface Gray */
    --loco-border: #E2E8F0;     /* Crisp Component Outlines */
}

.locotech-faq-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* 30% Occupancy Technical Gear Background Mask Overlay */
.locotech-faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1614853316476-de00d14cb1fc?q=80&w=2070&auto=format&fit=crop');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 55% auto; /* Confines graphic strictly to the right quadrants */
    opacity: 0.30; /* Precise 30% layout footprint opacity */
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

.locotech-faq-section .container {
    position: relative;
    z-index: 1; /* Pushes informational layers cleanly over background elements */
}

/* Header Text Blocks */
.faq-sub-badge {
    color: var(--loco-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 12px;
}

.faq-main-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--loco-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.faq-main-title .text-blue {
    color: var(--loco-blue);
}

.faq-title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--loco-blue) 0%, var(--loco-red) 100%);
    margin: 15px auto 25px;
    border-radius: 2px;
}

.faq-lead-text {
    font-size: 16px;
    color: #52606D;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

/* Accordion Component Framework */
.locotech-accordion {
    margin-top: 20px;
}

.locotech-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.96); /* High opacity prevents background imagery bleed-through */
    border: 1px solid var(--loco-border);
    border-radius: 8px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.locotech-accordion .accordion-item:hover {
    border-color: var(--loco-blue);
    box-shadow: 0 4px 15px rgba(59, 67, 155, 0.06);
}

.locotech-accordion .accordion-trigger {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    color: var(--loco-dark);
    font-weight: 700;
    font-size: 17px;
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.locotech-accordion .item-number {
    color: var(--loco-red);
    margin-right: 12px;
    font-weight: 800;
}

/* Toggle Indicators using pure CSS standard rules */
.locotech-accordion .accordion-trigger::after {
    content: '\f067'; /* FontAwesome Plus Vector */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 30px;
    font-size: 14px;
    color: #A0AEC0;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Active Open States */
.locotech-accordion .accordion-trigger.active {
    background: var(--loco-bg);
    color: var(--loco-blue);
}

.locotech-accordion .accordion-trigger.active::after {
    content: '\f068'; /* FontAwesome Minus Vector */
    color: var(--loco-blue);
    transform: rotate(180deg);
}

/* Sliding Engine Rules */
.locotech-accordion .accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
}

.locotech-accordion .accordion-panel.structural-open {
    max-height: 250px; 
}

.locotech-accordion .panel-body {
    padding: 25px 30px 30px 52px;
    font-size: 14.5px;
    color: #4A5568;
    line-height: 1.7;	
    border-top: 1px solid var(--loco-border);
    text-align: justify;
    text-justify: inter-word;
}

/* Responsive Media Viewports */
@media (max-width: 991px) {
    .locotech-faq-section::before {
        background-size: 80% auto;
        opacity: 0.15; /* Lowers image weight down to protect mobile typography contrast */
    }
}

@media (max-width: 767px) {
    .faq-main-title { font-size: 28px; }
    .locotech-faq-section::before { background-size: 100% auto; opacity: 0.12; }
    .locotech-accordion .accordion-trigger { padding: 20px; font-size: 15px; padding-right: 45px; }
    .locotech-accordion .accordion-trigger::after { right: 20px; }
    .locotech-accordion .panel-body { padding: 20px; }
}


/* --- Contact Section Styles --- */
.contact-section {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 40px;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-section p {
    margin-bottom: 30px;
    color: #ccc;
}

.quote-form input, .quote-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    background: #fff;
    box-sizing: border-box;
    font-size: 1rem;
}

.btn-send {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-send:hover {
    background-color: #d43f33;
}

/* --- FAQ Section Styles --- */
.faq-section {
    background-color: #fff;
    padding: 60px 50px;
}

.sub-heading {
    color: var(--primary-red);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.faq-section h1 {
    font-size: 2.5rem;
    margin-top: 10px;
    color: #333;
}

/* FAQ Accordion Styling */
.faq-accordion {
    margin-top: 40px;
}

details {
    border: 1px solid #eee;
    margin-bottom: 10px;
    background-color: var(--light-grey);
}

summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    border-bottom: 1px solid transparent;
    color: #444;
}

/* Add custom +/- icon */
summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--accent-blue); /* Using logo blue for icons */
    font-size: 1.2rem;
}

details[open] summary::after {
    content: '-';
}

details[open] summary {
    border-bottom: 1px solid #ddd;
}

.content {
    padding: 20px;
    line-height: 1.6;
    color: #666;
    background: #fff;
}

/* Responsive Design */
@media (max-width: 850px) {
    .main-container {
        grid-template-columns: 1fr;
    }
}


/*Location section start*/

.location-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../images/location-bg2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    position: relative;
    z-index: 99;
}

.location-section .content-heading2 {
    text-align: center;
    color: #fff;
}

.location-section .left-contentbox-details {
    text-align: center;
    color: #fff;
}

.box4-imgbox {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

.box4-imgbox img {
    width: auto;
    max-height: 100%;
}

.box4-contentbox {
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    padding-top: 20px;
}

/*Location section end*/

/*section5 start*/

.section5 {
    padding: 50px 0px 120px 0px;
    background-image: url(../images/client-bg.webp);
        background-size: contain;
/*    background-repeat: no-repeat;*/
/*    background-attachment: fixed;*/
/*    background-position: center center;*/
    position: relative;
    z-index: 99;
}
.section5 .content-heading3{
    color: #fff;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #000000;
    stroke: #000000;
}

.countUp-item {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.countUp-progress {
    width: 200px;
    height: 200px;
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #07070c;
    text-align: center;
    line-height: 200px;
    margin: 20px
}

.countUp-progress::after {
    content: "%";
}

.countUp-progress .title {
    position: relative;
    z-index: 100;
}

.countUp-progress .overlay {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #07070c
}

.countUp-progress .left,
.countUp-progress .right {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 10px solid #222235;
    border-radius: 100px 0px 0px 100px;
    border-right: 0;
    transform-origin: right;
}

.countUp-progress .left {
    animation: load1 1s linear forwards;
}

.countUp-progress:nth-of-type(2) .right,
.countUp-progress:nth-of-type(3) .right {
    animation: load2 .5s linear forwards 1s;
}

.countUp-progress:last-of-type .right,
.countUp-progress:first-of-type .right {
    animation: load3 .8s linear forwards 1s;
}

@keyframes load1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes load2 {
    0% {
        z-index: 100;
        transform: rotate(180deg);
    }

    100% {
        z-index: 100;
        transform: rotate(270deg);
    }
}

@keyframes load3 {
    0% {
        z-index: 100;
        transform: rotate(180deg);
    }

    100% {
        z-index: 100;
        transform: rotate(315deg);
    }
}

.card-wrapper {
    width: 100%;
/*
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
*/
}

.card-wrapper .card {
    background: transparent;
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    border: none;
/*    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);*/
}

.card-wrapper .card .circle {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    cursor: default;
}

.card .circle .box,
.card .circle .box span {
    position: absolute;
    top: 50%;
    left: 50%;
}

.card .circle .box {
    height: 100%;
    width: 100%;
/*    background: rgba(0,0,0,0.5);*/
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.2s;
}

.card .circle:hover .box {
    transform: translate(-50%, -50%) scale(0.91);
}

.card .circle .box span,
.card-wrapper .card .text {
    background: #fff;
/*    background: -webkit-linear-gradient(left, #a445b2, #fa4299);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.circle .box span {
    font-size: 38px;
    font-family: sans-serif;
    font-weight: 600;
    transform: translate(-45%, -45%);
    transition: all 0.1s;
}

.card .circle:hover .box span {
    transform: translate(-45%, -45%) scale(1.09);
}

.card .text {
    margin-top: 30px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}

@media(max-width: 753px) {
    .wrapper {
        max-width: 700px;
    }

    .wrapper .card {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media(max-width: 505px) {
    .wrapper {
        max-width: 500px;
    }

    .wrapper .card {
        width: 100%;
    }
}




.section5-transparentbox {
    padding: 70px 50px;
    border-radius: 30px;
    /* margin: 20px 20px 24px; */
    border: 2px solid #e7e7e7;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    /*
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
*/
}

.testi_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.testi_imagebox {
    width: 200px;
    height: 200px;
    background: #c4cce3;
    border-radius: 50%;
    overflow: hidden;
}

.testi_contentbox {
    width: 75%;
    margin-left: 50px;
}

.testi_heading {
    color: #222021;
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 5px;
}

.testi_subheading {
    color: #b4b2b3;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 30px;
}

.testi_details {
    color: #222021;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0px;
}

.get_a_quotecontainer {
    background: #f08161;
    padding: 40px 50px;
}

.get_a_quotebox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.get_a_quote-iconbox {
    width: 60px;
    height: 60px;
}

.get_a_quote-iconbox img {
    width: auto;
    height: 100%;
}

.get_a_quote-contentbox {
    padding-left: 10px;
    width: 650px;
}

.get_a_quote-heading {
    color: #fff;
    font-size: 38px;
    line-height: 44px;
    /* font-weight: 600; */
    text-transform: capitalize;
    font-family: 'Anton', sans-serif !important;
    margin-bottom: 0px;
}

.get_a_quote-details {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    margin-bottom: 0px;
}

.get_a_quote-buttonbox .btn1 {
    color: #001e57;
    background-color: #fff;
}

.get_a_quote-buttonbox .btn1:hover {
    color: #fff;
}






.col-lg-2_5 {
    flex: 0 0 20% !important;
    max-width: 20% !important;
    padding-right: 15px;
    padding-left: 15px;
}

/*

.section5 .content-heading1 {
    text-align: center;
    color: #fff;
}

.section5 .content-heading1::after {
    right: 0;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.section5 .content-heading2 {
    text-align: center;
    color: #fff;
}
*/

.section5 .content-heading1::after {
    left: -25px;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.gallery-slider-con {
    margin-top: 40px
}




/*
.section5 .heading-section {
    margin-bottom: 0;
}

.section5 .heading-section .heading-2 {
    text-align: left;
    margin-bottom: 20px;
}

.section5 .content-heading1{
    color: #00aeef;
}
.section5 .content-heading1::after{
    left: -120px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    border-bottom: 2px solid #00aeef;
}
*/

.mission_vision-tab_container {
    margin-top: 30px;
}



.section5 .treatment_box {
    box-shadow: none;
}

.section5 .treatment_name a {
    text-align: center;
    color: #111;
    transition: 0.3s ease-in-out;
}

.section5 .treatment_name a:hover {
    text-align: center;
    color: #3ab54a;
}

/*
.section5 .owl-carousel .owl-stage-outer {
    padding-top: 20px;
    padding-bottom: 20px;
}
*/
/*
.section5 .owl-theme .owl-nav {
    display: none !important;
}
*/
/*
.section5 .owl-theme .owl-dots .owl-dot {
    display: block !important;
}
*/

.section5 .owl-prev {
    width: 45px !important;
    height: 45px !important;
    position: absolute;
    top: 35%;
    left: -50px;
    background-color: transparent !important;
    border-radius: 0 !important;
    border: 2px solid transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/*
.section5 .owl-prev:hover {
    background-color: #e7e5ff !important;
}
*/

.section5 .owl-prev span {
    font-size: 40px;
    line-height: 30px;
    color: #fff !important;
}

.section5 .owl-prev:hover span {
    color: #fff !important;
}

.section5 .owl-next {
    width: 45px !important;
    height: 45px !important;
    position: absolute;
    top: 35%;
    right: -50px;
/*    bottom: 0px;*/
    background-color: transparent !important;
    border-radius: 0 !important;
    border: 2px solid transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/*
.section5 .owl-next:hover {
    background-color: #fff !important;
}
*/

.section5 .owl-next span {
    font-size: 40px;
    line-height: 30px;
    color: #fff !important;
}

.section5 .owl-next:hover span {
    color: #fff !important;
}

.section5 .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}

.section5 .treatment_box {
    border: none;
}

/*
.section5 .treatment_imgbox {
    background: #f8f8fa;
}
*/


.treatment_button2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.section5 .treatment_box:hover .treatment_button2 {
    opacity: 1;
    visibility: visible;
}

.section5 .treatment_btn {
    justify-content: center;
    color: #392917;
    transition: 0.3s ease-in-out;
}

.section5 .treatment_btn:hover {
    color: #966528;
}

/*
.section5 .owl-theme .owl-dots .owl-dot {
    display: block !important;
}
*/

.section5_box {
    width: 500px;
    height: auto;
    padding: 25px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: #282828;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-top-left-radius: 40px;
    overflow: hidden;
}

.section5_imagebox {
    width: 150px;
    height: auto;
    border-top-left-radius: 40px;
    overflow: hidden;
}

.section5_imagebox img {
    width: 100%;
    height: auto;
}

.section5_box-heading {
    color: #fff;
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    padding-left: 40px;
    position: relative;
}

.section5_box-heading::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -25px;
    width: 55px;
    border-top: 2px solid #eb1329;
}

/*section5 end*/


//roy services //

/* ===== BASE ===== */
.rpm-service-page{
  font-family:'Poppins',sans-serif;
  background:#f6f9ff;
  color:#1c1c1c;
}

/* ===== CONTAINER ===== */
.rpm-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* ===== HEADINGS ===== */
.rpm-service-page h1,
.rpm-service-page h2{
  text-align:center;
  color:#0b2c5f;
  margin-bottom:15px;
}

.rpm-service-page p{
  text-align:justify;
  line-height:1.8;
  color:#555;
}

/* ===== BUTTON ===== */
.rpm-btn{
  display:inline-block;
  background:linear-gradient(135deg,#ff6a3d,#ff3d77);
  color:#fff;
  padding:12px 28px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  margin-top:20px;
  transition:0.3s;
}

.rpm-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(255,61,119,0.3);
}

/* ===== HERO ===== */
.rpm-hero{
  background:linear-gradient(135deg,#0b2c5f,#1a4fa3);
  color:#fff;
  padding:80px 0;
}

.rpm-hero h1,
.rpm-hero p{
  color:#fff;
}

.rpm-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.rpm-hero-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

/* ===== ABOUT + CONTENT ===== */
.rpm-about,
.rpm-content{
  padding:70px 0;
  background:#fff;
}

/* ===== FEATURES ===== */
.rpm-features{
  padding:70px 0;
}

.rpm-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.rpm-card{
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  text-align:center;
  transition:0.3s;
}

.rpm-card:hover{
  transform:translateY(-8px);
}

.rpm-icon{
  font-size:40px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:10px;
}

/* ===== PROCESS ===== */
.rpm-process{
  background:#eef4ff;
  padding:70px 0;
}

.rpm-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.rpm-step{
  background:#fff;
  padding:25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.rpm-step span{
  width:40px;
  height:40px;
  background:#ff6a3d;
  color:#fff;
  display:inline-block;
  border-radius:50%;
  line-height:40px;
  font-weight:bold;
  margin-bottom:10px;
}

/* ===== CTA ===== */
.rpm-cta{
  background:linear-gradient(135deg,#ff6a3d,#ff3d77);
  color:#fff;
  padding:70px 0;
  text-align:center;
}

.rpm-cta h2,
.rpm-cta p{
  color:#fff;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .rpm-hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .rpm-service-page h1{
    font-size:26px;
  }

  .rpm-service-page h2{
    font-size:22px;
  }
}


//faq page //




/*Team section start*/

.team-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../images/team-bg-image2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    /*    background-attachment: fixed;*/
    background-position: center center;
    position: relative;
    z-index: 99;
}

.teambox {
    height: 100%;
    max-height: 655px;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0px 0px 20px 0 rgb(80 80 80 / 20%);
}

.team-section .content-heading2 {
    text-align: center;
}

.team-section .left-contentbox-details {
    text-align: center;
}

.member-details {
    color: #878787;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

/*Team section end*/



/*section6 start*/

.section6 {
    padding-top: 200px;
    padding-bottom: 200px;
    background-image: url(../images/sec6-bg.webp);
    background-size: cover;
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-position: center center;
    position: relative;
    z-index: 99;
}
.section6::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #101218;
    opacity: 0.71;
    z-index: 0;
}
.section6 .content-heading1 {
    text-align: center;
}
.section6 .content-heading2 {
    color: #4175fc;
}
.section6 .content-heading3 {
    color: #fff;
}
.section6 .content-heading2::before {
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.section6 .content-heading2::after {
    right: 60px;
    margin: 0 auto;
    text-align: center;
}

.sec6_logobox {
    width: 160px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}


.section6 .nav-pills .nav-link.active,
.section6 .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #3bb5ff;
}

.section6 .nav-pills .nav-item {
    margin-right: 10px;
}

.section6 .nav-pills .nav-link {
    color: #282828;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    background-color: #fff;
    padding: 7px 25px !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 15px !important;
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 0 !important;
}

.section6 .tab-content .tab-pane {
    color: #767676;
    font-size: 16px;
    line-height: 22px;
}


.sec6_logobox img {
    width: 100%;
    height: auto;
}

.sec6_logobox img {
    transform: scale(1.2);
}

.section6 .readmore-button .btn1 {
    color: #fff;
    background: #fe0000;
    border: 1.5px solid #fe0000;
}

.section6 .readmore-button .btn1:hover {
    color: #fe0000;
    background: #fff;
    border: 1.5px solid #fff;
}

/*
.section6 .heading-section .heading-1{
    color: #fff;
}
.section6 .heading-section .details{
    color: #cfcfcf;
}
*/
.popular-products-slider {
    margin-top: 15px;
}

.section6 .treatment_contentcon {
    padding: 0 0 0 30px;
}

.section6 .treatment_detailsbox {
    width: 100%;
    position: relative;
    height: auto;
    overflow: visible;
    padding: 30px 20px 30px 45px;
    background: #fff;
    transition: 0.3s ease-in-out;
    border-top: none;
    border-bottom: none;
    margin-top: -30px;
    border: 2px solid #ebebeb;
}

.section6 .treatment_name {
    text-align: left;
}

.section6 .treatment_name::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -74px;
    width: 65px;
    border-bottom: 2px solid #F55B14;
}

.section6 .treatment_button {
    padding-bottom: 0px;
}

.section6 .treatment_btn {
    text-align: left;
    justify-content: flex-start;
}

.section6 .owl-prev {
    width: 60px !important;
    height: 45px !important;
    position: absolute;
    right: 60px;
    top: -65px;
    bottom: 0px;
    background-color: #f55b14 !important;
    border-radius: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    clip-path: polygon(20% 0, 100% 0%, 79% 100%, 0% 100%);
}

.section6 .owl-prev:hover {
    background-color: #08172e !important;
}

.section6 .owl-prev span {
    font-size: 40px;
    line-height: 45px;
    color: #fff !important;
}

.section6 .owl-prev:hover span {
    color: #fff !important;
}

.section6 .owl-next {
    width: 60px !important;
    height: 45px !important;
    position: absolute;
    right: 0;
    top: -65px;
    bottom: 0px;
    background-color: #f55b14 !important;
    border-radius: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    clip-path: polygon(20% 0, 100% 0%, 79% 100%, 0% 100%);
}

.section6 .owl-next:hover {
    background-color: #08172e !important;
}

.section6 .owl-next span {
    font-size: 40px;
    line-height: 45px;
    color: #fff !important;
}

.section6 .owl-next:hover span {
    color: #fff !important;
}

.section6 .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}


.box4-icon {
    width: 50px;
    height: 50px;
    /*
    border-radius: 50%;
    background: #252525;
*/
    display: grid;
    place-items: center;
    /*    border: 2px solid #fff;*/
    margin-left: auto;
    margin-right: auto;
}

.box4-icon img {
    width: auto;
    height: 100%;
}

.box4-icon i {
    font-size: 24px;
    line-height: 30px;
    color: #0062c6;
}

.box4-heading1 {
    color: #252525;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.box4-heading2 {
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.box4-details {
    color: #7b7b7b;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
}

/*section6 end*/


/*section7 start*/


.section7 {
    padding-left: 30px;
    padding-right: 30px;
    /*
    background-image: url(../images/section7-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
*/
    position: relative;
}

.section7-innerbox {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background-image: url(../images/section7-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}

.section7 .content-heading1::after {
    left: -30px;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

/*
.section7 .content-heading1 {
    text-align: center;
    color: #fff;
}
*/

.section7 .content-heading2 {
    color: #fff;
}

.section7 .content-heading2::before {
    border-bottom: 2px solid #fff;
}

.section7 .features-list {
    margin-left: 20px;
}

.features-listbox .features-list li {
    color: #fff;
}

.section7 .readmore-button {
    text-align: right;
}

.section7 .treatment_box {
    padding-bottom: 40px;
    background-color: transparent;
}

.section7 .treatment_name {
    text-align: center;
    margin-bottom: 20px;
}

.section7 .product_button {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.section7 .product_button .btn1 {
    background: #fff;
}

.btn2 {
    color: #fff;
    background-color: #3bb5ff;
    border: 2px solid #3bb5ff;
    position: relative;
    display: inline-block;
    padding: 0 35px;
    line-height: 44px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    z-index: 1;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn2::before {
    content: "";
    border-color: #1587cd transparent transparent #1587cd;
    border-style: solid;
    border-width: 10px;
    position: absolute;
    bottom: -2px;
    right: -22px;
    z-index: -1;
}

.btn2:hover {
    color: #fff;
    background-color: #00578c;
    border: 2px solid #00578c;
    position: relative;
}

.section7 .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}

.section7 .owl-prev {
    width: 45px !important;
    height: 45px !important;
    position: absolute;
    right: 60px;
    top: -65px;
    bottom: 0px;
    background-color: #fff !important;
    border-radius: 0 !important;
    border: 1px solid #e5e5e5 !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.section7 .owl-prev:hover {
    background-color: #282828 !important;
    border: 1px solid #282828 !important;
}

.section7 .owl-prev span {
    font-size: 34px;
    line-height: 24px;
    color: #282828 !important;
}

.section7 .owl-prev:hover span {
    color: #fff !important;
}

.section7 .owl-next {
    width: 45px !important;
    height: 45px !important;
    position: absolute;
    right: 0;
    top: -65px;
    bottom: 0px;
    background-color: #fff !important;
    border-radius: 0 !important;
    border: 1px solid #e5e5e5 !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.section7 .owl-next:hover {
    background-color: #282828 !important;
    border: 1px solid #282828 !important;
}

.section7 .owl-next span {
    font-size: 34px;
    line-height: 24px;
    color: #282828 !important;
}

.section7 .owl-next:hover span {
    color: #fff !important;
}

.section7 .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}



.blog-slider-con {
    margin-top: 40px;
}

.blog-slider-con .owl-carousel .owl-stage-outer {
    padding: 0 18px;
}

.section7 .owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
}


/*  Video Style  */

.video_gallery-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.videobox-con{
    width: 100%;
    height: auto;
    padding: 100px 20px;
    position: relative;
    background-image: url(../images/video-section-bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.video_gallery-section .content-heading1::after {
    left: -120px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    /* border-bottom: 2px solid #00aeef; */
}

.video-box {
    /* height: 100%; */
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 100px;
    height: 100px;
    /* margin-left: auto;
    margin-right: auto;
    margin-top: 0px; */
}

.videobox-con2{
    position: relative;
}
.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    border-radius: 0;
    min-height: 250px;
    width: 100%;
    height: 315px;
    position: relative;
    /* top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    /* position: absolute; */
}

.video-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute; */
}


.video-box a {
    font-size: 27px;
    color: #fff !important;
    /*
      position: absolute;
      z-index: 1111;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
*/
}

video {
    position: absolute;
    z-index: 1111;
}

.video-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100px;
    height: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 34px;
    border-radius: 50%;
    color: #fff;
    position: relative;
    background: transparent;
    border: 4px solid #fff;
}

.video-buttonbox {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.video-content {
    padding-left: 10px;
}

.video-content {
    color: #181818;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
}

.video-content span {
    color: #cda274;
}

/*
.video-box a::before{
    content: '';
    position: absolute;
    left: -7px;
    right: 0;
    margin: 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(228,168,83,0.3);
}
*/
/*
.video-box a::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}
*/
.video-title h2 {
    font-size: 32px;
    font-weight: 900;
    padding-bottom: 0;
    line-height: 1px;
    margin-bottom: 15px;
    color: #ff891a;
}

.video-title p {
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    font-size: 50px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 60px;
}

.video-popup {
    z-index: 111;
}

.video-popup i {
    color: #fff;
    z-index: 1;
    font-size: 26px;
}

.video-name {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: #252525;
    text-align: center;
    margin-top: 20px;

}

/* .video-popup::before {
      position: absolute;
      content: " ";
      z-index: -11;
      top: -15px;
      left: -15px;
      background-color: #dc354e;
      width: 115px;
      height: 115px;
      border-radius: 100%;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
      opacity: 0.6;
      -webkit-animation: pulse 1s ease-out;
      animation: pulse 1.8s ease-out;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
} */


.video_gallerybox{

}

/*  Video Style  */


.blog-card {
    width: 90%;
    /*
    margin-left: auto;
    margin-right: auto;
*/
    border-bottom: 2px solid #ed1b24;
    box-shadow: 0px 0px 20px 0 rgb(80 80 80 / 20%);
}

.blog-imgbox {
    width: 100%;
    height: auto;
}

.blog-imgbox img {
    width: 100%;
    height: auto;
}

.blog-body {
    position: relative;
    padding: 15px 30px;
}

.blog-type {
    position: absolute;
    top: -16px;
    right: 0;
    padding: 5px 20px;
    display: inline-block;
    background: #e81921;
    text-align: center;
    color: #fff;
}

.publish-date {
    color: #e81921;
    font-size: 15px;
    line-height: 22px;
    font-weight: 300;
    margin-bottom: 12px;
}

.blog-heading {
    color: #1d1d1d;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-text {
    color: #5a5a5a;
    font-size: 15px;
    line-height: 22px;
    font-weight: 300;
    margin-bottom: 10px;
}


.gallery-box {
    width: 100%;
    height: auto;
    position: relative;
    /* border: 7px solid #f6d8a9; */
    padding: 0;
    background-color: #fff;
    border-top-left-radius: 0;
/*    border: 2px solid #e5e5e5;*/
        border: 1px solid #ebebeb;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.gallery-imgboxcon {
    width: 100%;
    height: auto;
}
.gallery-imgbox img{
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
}
/* .gallery-imgbox img {
    max-height: 100%;
    max-width: 100%;
    width: auto !important;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s ease-in-out;
} */



.gallery-iconbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-icon-1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid !important;
    place-items: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50% !important;
    z-index: 22;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    color: #4175fc;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.gallery-icon-1:hover {
    color: #4175fc !important;
}

.gallery-box:hover .gallery-icon-1 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    background: #fff;
}

.gallery-hover-bg {
    position: absolute;
    z-index: 4;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.gallery-box:hover .gallery-hover-bg {
    opacity: 1;
    visibility: visible;
}


/*section7 end*/


/*Testimonial section start*/

.testimonial-section {
    width: 100%;
    height: auto;
    position: relative;
    background-image: url(../images/testimonial_bg-image.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 90px;
    padding-bottom: 90px;
}


.client_slider_con {
    margin-top: 50px;
}
.clients_con{
    padding: 25px 35px;
}
.client-imagebox {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
/*    border: 2px solid #f08161;*/
}

.client-imagebox img {
    width: 100%;
    height: auto;
}

.section8 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section8 .content-heading2::before {
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.section8 .content-heading2::after {
    right: 60px;
    margin: 0 auto;
    text-align: center;
}

.section8 .treatment_box {
    width: 100%;
    border-radius: 0;
}

.section8 .treatment_imgbox {
    border-bottom: none;
    background: #e6e6e8;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.section8 .treatment_contentcon {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    margin-top: -20px;
}

.section8 .treatment_detailsbox {
    height: 180px;
    background: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    border-bottom: 3px solid #001e57;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s linear;
}

.section8 .treatment_box:hover .treatment_detailsbox {
    background: #001e57;
    border-bottom: 3px solid #f08161;
    transition: 0.3s linear;
}


.section8 .treatment_name {
    height: auto;
    color: #001e57;
}

.section8 .treatment_box:hover .treatment_name {
    color: #fff;
}

.section8 .treatment_box:hover .treatment_name a {
    color: #fff;
}

.section8 .product_button {
    position: absolute;
    bottom: 27px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
}

.section8 .product_btn {
    width: 30px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    place-items: center;
    color: #f08161;
    background: #fff;
    border-radius: 50%;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 0px 20px 0 rgb(80 80 80 / 20%);
}




.gmap-box iframe {
    width: 100%;
}

/*Testimonial section end*/

.google-map-section {
    width: 100%;
    position: relative;
    margin-top: -100px;
    position: relative;
    z-index: -1;
}

/*Contact form section start*/

.contactus-section {
    padding-top: 40px;
    padding-bottom: 100px;
    position: relative;
    background: #D6D6D6;
}

.contactus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    overflow: hidden;
    background-image: url(../images/contact_bg.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

/*
.contactus-section .content-heading2 {
    color: #fff;
    font-size: 36px;
    line-height: 42px;
    font-weight: 600;
    text-transform: uppercase;
}
*/


.contactus_boxcon {
    /*    background: #d6e5d4;*/
    padding-left: 0;
}

.contactus-section .trans_heading {
    bottom: 45px;
}

/*
.contactus-section .content-heading1{
    color: #00aeef;
}
*/
/*
.contactus-section .content-heading1::after{
    left: -160px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    border-bottom: 2px solid #00aeef;
}
*/

.faqpage_section1{
    padding-top: 80px;
    padding-bottom: 80px;
}
.faqpage_section1 .content-heading3{
    color: #54595f;
}
.faq-col {
    margin-left: -10%;
}

.faq_box {
    width: 100%;
    height: auto;
    /* background: #f4f4f9; */
}
.contactus-section .content-heading1{
    margin-left: 20px;
}
/*
.contactus-section .content-heading1::after {
    left: -55px;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
*/

.faq_box .accordion-item {
    margin-bottom: 0;
}

.faq_box .accordion-header .accordion-button {
    font-size: 18px !important;
    line-height: 24px;
    font-weight: 600;
    padding: 16px 20px 16px 45px;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.faq_box .accordion-header .accordion-button:not(.collapsed):before{
    content: "\f0d8";
    font-family: "FontAwesome";
    position: absolute;
    left: 20px;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    color: #084af3;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}
.faq_box .accordion-header .accordion-button::before{
    content: "\f0d8";
    font-family: "FontAwesome";
    position: absolute;
    left: 20px;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    color: #084af3;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
}

.faq_box .accordion-header .accordion-button::after{
    display: none;
}
.faq_box .accordion-button{
    color: #fff;
    background-color: #084af3;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.faq_box .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #084af3;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    /* box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%); */
}

.faq_box .accordion-body {
    color: #494b51;
    font-size: 16px;
    line-height: 26px;
}


.small-heading1 {
    color: #e81921;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}

.contact-imagebox {
    width: 100%;
    height: auto;
}

.contact-imagebox img {
    width: 100%;
    height: auto;
}

/*
.form-box{
    padding-top: 60px;
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 75px;
    background: #fff;
    box-shadow: 0px 0px 20px 0 rgb(80 80 80 / 30%);
}
*/


/*
.contactus-section .form-box .content-heading2{
    color: #fff;
}
*/

.form-detailsbox-col {
    width: 100%;
    height: 100%;
}


.contactus-section .form-box .left-contentbox-details {
    color: #fff;
}

.form-box-col {
    width: 100%;
    height: 100%;
}

.form-box {
    width: 100%;
    height: 100%;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
/*    background: #fff;*/
    position: relative;
    z-index: 11;
    /*    border-bottom-left-radius: 50px;*/
}

.contact-form-heading {
    color: #2a2a2a;
    font-size: 36px;
    line-height: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.form-details {
    color: #8c8c8c;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-form-heading2 {
    color: #232323;
    text-align: left;
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
}


.contact-form {
    width: 100%;
}

.contact-form .form-control {
    height: 40px;
    color: #454545 !important;
    background-color: #f3f5f9 !important;
    border: 1px solid #f3f5f9 !important;
    border-radius: 0px !important;
    padding-left: 20px;
    font-size: 16px;
    line-height: 22px;
}

.contact-form .form-control::placeholder {
    color: #454545 !important;
    font-size: 16px;
    line-height: 22px;
}

.contact-form textarea {
    height: 120px !important;
}

.submit-button {
    margin-top: 30px;
}

.submit-button .btn1 {
    color: #fff !important;
    background: #252525;
    border: 1px solid #252525;
/*    width: 100%;*/
    display: block;
    border-radius: 0;
}

.submit-button .btn1:hover {
    color: #fff !important;
    background: #cda274;
    border: 1px solid #cda274;
}

.submit-button .btn1::before {
    background: #cda274;
}

.submit-button .btn2 {
    width: 100%;
}

.submit-button .btn2::before {
    display: none;
}

.form-detailsbox {
    padding: 0px 0px;
/*    background: #cda274;*/
    position: relative;
    /*    height: 100%;*/

    /*
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
*/
}

.form-detailsbox .content-heading2 {
    color: #4175fc;
    margin-bottom: 10px;
    padding-bottom: 0;
}
.form-detailsbox .content-heading3 {
    color: #101218;
    margin-bottom: 10px;
    padding-bottom: 0;
}

.form-detailsbox .content-heading2::before {
    display: none;
}

.form-detailsbox .content-heading2::after {
    display: none;
}

.form-detailsbox .left-contentbox-details {
    margin-bottom: 10px;
}

.form-detailsbox3 {
    border-right: none;
}

.info {
    width: 100%;
    height: 556px;
    padding-top: 50px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 50px;
    background: #004838;
}

.info_imgbox {
    width: 148px;
    height: 148px;
    overflow: hidden;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.info_imgbox img {
    width: 100%;
    height: auto;
}

.form-heading {
    color: #fff;
    font-size: 28px;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.addressbox {
    padding-bottom: 30px;
    /*    border-bottom: 2px solid #e9e9e9;*/
}

.iconbox {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    margin-right: 20px;
    transition: 0.3s;
}

.iconbox i {
    color: #2acaa6;
    font-size: 20px;
}

/*
.iconbox:hover{
    color: #fff;
    background: #d48d04;
    transition: 0.3s;
}
*/

.emailbox2 {
    padding: 10px 0 10px 0;
}

.email-address {
/*    color: #fff;*/
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

/*
.email-address:hover {
    color: #e4a853;
}
*/

.phonebox2 {
    padding: 10px 0 10px 0;
    border-bottom: 1px solid #ccc;
}



.location {
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    /*    font-family: 'Anton', sans-serif !important;*/
    position: relative;
    padding-bottom: 10px;
}

/*
.location::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 40px;
    border-bottom: 3px solid #fff;
    border-radius: 5px;
}
*/
.address-details {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0;
}

.contact-no {
/*    color: #fff;*/
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

/*
.contact-no:hover {
    color: #fff;
    transition: 0.3s ease-in-out;
}
*/

.contact-detailsbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.contact_iconbox {
    width: 16px;
    height: auto;
}
.contact_iconbox img{
    width: 100%;
    height: auto;
}

.contact_iconbox i {
    font-size: 16px;
    line-height: 24px;
    color: #4f4f4f;
}

.contact-detailsbox p {
    margin-bottom: 0;
}

/*
.contact-detailsbox p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #e8e8e8;
}
*/
.gmap-section {
    padding-top: 10px;
    padding-bottom: 40px;
}
.gmap-section .content-heading3{
    color: #54595f;
}
.g-map{
    width: 100%;
    height: 450px;
}
.g-map iframe{
    width: 100%;
    height: 450px;
}
/*Contact form section end*/


/*Footer start*/

/* Main Footer Section */
.footer-section {
    padding-top: 80px;
    padding-bottom: 0;
    background: #001533; /* Deep Navy to match your header theme */
    position: relative;
    z-index: 99;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-heading {
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 1px;
}

/* Red accent underline for headings */
.footer-heading::after {
    position: absolute;
    content: '';
    bottom: -8px;
    left: 0;
    width: 40px;
    border-bottom: 3px solid #F05A4E;
    border-radius: 5px;
}

/* Services and Quick Links */
.quick-link {
    padding-left: 0;
    list-style: none;
}

.ql {
    padding: 6px 0;
    transition: 0.3s;
}

.ql a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px;
    line-height: 24px;
    display: flex;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.ql a i {
    font-size: 12px;
    margin-right: 10px;
    color: #F05A4E; /* Red arrow/bullet */
}

.ql a:hover {
    color: #F05A4E !important;
    transform: translateX(5px);
}

/* Contact Details */
.footer-contact-details {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact-details i {
    color: #F05A4E;
    width: 25px;
}

/* Social Icons */
.footer-section .social_icons .icons {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-section .social_icons .icons:hover {
    background: #F05A4E;
    color: #fff;
    transform: translateY(-3px);
}

/* FIXED: Bottom Credit Bar 
   Updated to ensure "Designed & Developed By Digital Sankalp" 
   is visible in the requested Blue color.
*/
.footer_end {
    width: 100%;
    background: #f8f9fa; /* Light background to make the blue text stand out */
    padding: 20px 0;
    border-top: 1px solid #e1e1e1;
}

.footer_end-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ft_end_txt {
    color: #004AAD !important; /* Roy Blue color as requested */
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.ft_end_txt a {
    color: #004AAD !important; /* Ensuring the link is also Blue */
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.ft_end_txt a:hover {
    color: #F05A4E !important; /* Hover effect to Red */
}

/* Responsive Fix for the credit bar */
@media (max-width: 768px) {
    .footer_end-row {
        flex-direction: column;
        text-align: center;
    }
    .ft_end_txt {
        margin-bottom: 10px;
    }
}


/*Footer end*/


//floating buttons //

.floating-contact-wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Specific Colors */
.btn-whatsapp {
    background: transparent;
}
.btn-whatsapp img {
    width: 100%;
    height: auto;
}

.btn-call {
    background-color: #004AAD; /* Roy Blue */
}

.btn-email {
    background-color: #F05A4E; /* Roy Red */
}

.btn-top {
    background-color: #333;
    visibility: hidden; /* Controlled by JS scroll */
    opacity: 0;
}

.btn-top.show {
    visibility: visible;
    opacity: 1;
}

/* FontAwesome Icon size */
.float-btn i {
    font-size: 20px;
}

//floating buttons end //



// about page //

/* ==========================================================================
   LOCOTECH CORPORATE ABOUT PAGE STYLES
   ========================================================================== */

/* --- 1. Page Header Hero Section --- */
.bg-banner-image {
    width: 100%;
    height: auto;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-banner-image::before {
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 0;
    background-color: #101218; /* Solid, premium dark contrast base */
    opacity: 0.70;
    transition: opacity 0.3s ease;
}

.about-content {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-content h1 {
    color: #ffffff;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif !important;
}

.about-content nav {
    width: 100% !important;
}

.about-content .breadcrumb {
    padding: 0 !important;
    margin-bottom: 0 !important;
    background-color: transparent !important;
    justify-content: center;
    font-size: 16px;
}

.about-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.about-content .breadcrumb-item a:hover {
    color: #004AAD !important; /* Secondary Corporate Brand Blue */
}

.about-content .breadcrumb-item.active {
    color: #ffffff !important;
    font-weight: 500;
}

.about-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* --- 2. Section 1: Core Intro Styles --- */
.aboutpage_section1 {
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

.tag-accent {
    color: #004AAD;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.section-title-main {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.3;
    color: #101218;
    margin-bottom: 24px;
}

.text-brand-blue {
    color: #004AAD;
}

.aboutpage_section1 .left-contentbox-details {
    text-align: left;
}

.lead-text {
    font-size: 1.15rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.body-text {
    font-size: 1rem;
    color: #555555;
    line-height: 1.75;
}

.imagebox-styled {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.imagebox-styled img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.imagebox-styled:hover img {
    transform: scale(1.02);
}

/* --- 3. Section 2: Technical Service Blocks --- */
.aboutpage_section2 {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #f8fafc; /* Crisp light backdrop */
}

.heading-box1 {
    padding: 35px 30px;
    background-color: #101218;
    border-radius: 10px;
    border-left: 5px solid #004AAD;
}

.heading-box1 .content-heading2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.heading-box2 {
    padding: 35px 30px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.heading-box2 h4 {
    color: #101218;
    font-size: 1.4rem;
}

.heading-box2 .left-contentbox-details {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.98rem;
    text-align: left;
}

/* --- 4. Section 3: Values Layout --- */
.aboutpage_section3 {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #101218; /* Matching corporate slate palette */
}

.aboutpage_section3 .content-heading2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.heading-box4 {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.heading-box4:hover {
    background-color: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
    border-color: rgba(0, 74, 173, 0.4);
}

.heading-box4 .content-heading1 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.heading-box4 .left-contentbox-details {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.6;
    text-align: left;
}

/* --- 5. Responsive Grid Braking --- */
@media (max-width: 991.98px) {
    .bg-banner-image {
        padding: 110px 0;
    }
    .about-content h1 {
        font-size: 36px;
    }
    .aboutpage_section1 {
        padding-top: 60px;
        padding-bottom: 50px;
    }
    .section-title-main {
        font-size: 1.85rem;
    }
    .aboutpage_section3 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

//about page end //


//
/* ==========================================================================
   LOCO TECH MODERNIZED BLUE GRID SYSTEM
   ========================================================================== */

/* ==========================================================================
   LOCO TECH MODERNIZED BLUE GRID SYSTEM
   ========================================================================== */

:root {
    --loco-deep-navy: #0d47a1;
    --loco-steel-blue: #1565c0;
    --loco-accent-gold: #ffb703;
    --loco-bg-silver: #f4f6f9;
    --loco-card-white: #ffffff;
    --loco-border-muted: #dcdfd4;
    --loco-text-dark: #1a2530;
    --loco-text-gray: #556370;
    --loco-radius-lg: 8px;
    --loco-radius-sm: 4px;
    --loco-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --loco-speed-fast: 0.2s ease-in-out;
}

.loco-products-section {
    background-color: var(--loco-bg-silver);
    padding: 50px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.loco-products-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

/* ==========================================================================
   STICKY SIDEBAR BRANDING PANELS
   ========================================================================== */
.loco-products-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 30px;
    height: fit-content;
}

.loco-brand-badge-card {
    background: linear-gradient(135deg, var(--loco-deep-navy) 0%, var(--loco-steel-blue) 100%);
    color: var(--loco-card-white);
    padding: 25px 20px;
    border-radius: var(--loco-radius-lg);
    box-shadow: var(--loco-box-shadow);
}

.loco-brand-badge-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.loco-msme-tag {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 500;
}

.loco-maxim {
    border-left: 3px solid var(--loco-accent-gold);
    padding-left: 12px;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--loco-accent-gold);
    margin: 0;
}

.loco-specialist-box {
    background: var(--loco-card-white);
    border: 1px solid var(--loco-border-muted);
    border-radius: var(--loco-radius-lg);
    padding: 20px;
    box-shadow: var(--loco-box-shadow);
}

.loco-specialist-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--loco-text-dark);
    margin-bottom: 12px;
    border-bottom: 2px solid var(--loco-bg-silver);
    padding-bottom: 8px;
}

.loco-specialist-box h4 i {
    margin-right: 6px;
    color: var(--loco-steel-blue);
}

.loco-capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loco-capability-list li {
    font-size: 0.85rem;
    color: var(--loco-text-gray);
    padding: 7px 0;
    border-bottom: 1px dashed #edf2f7;
}

.loco-capability-list li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   WORKSPACE CATALOG ENGINE WORKSPACE
   ========================================================================== */
.loco-products-workspace {
    flex: 1;
}

/* ==========================================================================
   GRID MATRIX CARD BLUEPRINTS
   ========================================================================== */
.loco-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.loco-item-card {
    background: var(--loco-card-white);
    border: 1px solid var(--loco-border-muted);
    border-radius: var(--loco-radius-lg);
    overflow: hidden;
    box-shadow: var(--loco-box-shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--loco-speed-fast), box-shadow var(--loco-speed-fast);
}

.loco-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.loco-item-image {
    height: 190px;
    background: #e9ecef;
    position: relative;
    overflow: hidden;
}

.loco-prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.loco-item-card:hover .loco-prod-img {
    transform: scale(1.04);
}

/* BLUE BOX WITH CRISP WHITE TEXT - EXACT SPECIFICATION */
.loco-type-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--loco-steel-blue) !important;
    color: #zzz!important;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--loco-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.loco-item-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.loco-item-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--loco-text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Two-column Specification Layout Matrix */
.loco-spec-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 6px;
    column-gap: 12px;
    margin-bottom: 18px;
    flex-grow: 1;
    align-content: start;
}

.spec-lbl {
    font-size: 0.8rem;
    color: var(--loco-text-gray);
    font-weight: 500;
    border-bottom: 1px dashed #edf2f7;
    padding-bottom: 2px;
}

.spec-val {
    font-size: 0.8rem;
    color: var(--loco-text-dark);
    font-weight: 600;
    text-align: right;
    border-bottom: 1px dashed #edf2f7;
    padding-bottom: 2px;
}

/* ==========================================================================
   EXPLICIT REQUEST QUOTE BUTTON STYLING (.btn1)
   ========================================================================== */

//end //

//product page header //
        /* Custom Header Styling for Logistics Service Variant */
        .page-header {
            position: relative;
            background: linear-gradient(rgba(16, 18, 24, 0.75), rgba(16, 18, 24, 0.75)), url('images/about-banner.webp') no-repeat center center;
            background-size: cover;
            padding: 100px 0;
            color: #ffffff;
            text-align: center;
        }

        .page-header h1 {
            font-size: 45px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .page-header .breadcrumb-item a {
            color: #F05A4E;
            text-decoration: none;
            font-weight: 600;
        }

        .page-header .breadcrumb-item.active {
            color: #ffffff;
            opacity: 0.8;
        }

        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: #ffffff;
        }
        
        .hover-red:hover {
            color: #F05A4E !important;
            transition: 0.3s;
        }

//product page header end //


//faq page //
/* --- CSS STYLES --- */
        :root {
            --primary-red: #e63946;
            --dark-blue: #1d3557;
            --light-gray: #f8f9fa;
            --text-dark: #333;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .rpm-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .rpm-hero {
            background: var(--dark-blue);
            color: var(--white);
            padding: 60px 0;
        }

        .rpm-hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .rpm-hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .rpm-hero-content p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .rpm-hero-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Buttons */
        .rpm-btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary-red);
            color: var(--white);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .rpm-btn:hover {
            background: #c92a35;
            transform: translateY(-2px);
        }

        /* FAQ Section */
        .rpm-faq-section {
            padding: 80px 0;
            background: var(--white);
        }

        .rpm-section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.2rem;
            color: var(--dark-blue);
        }

        .rpm-faq {
            max-width: 800px;
            margin: 0 auto;
        }

        .rpm-faq-item {
            margin-bottom: 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }

        .rpm-faq-question {
            width: 100%;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            border: none;
            outline: none;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            color: var(--dark-blue);
        }

        .rpm-faq-question span {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .rpm-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: var(--light-gray);
        }

        .rpm-faq-answer-content {
            padding: 20px;
            border-top: 1px solid #eee;
            color: #555;
        }

        /* Active State */
        .rpm-faq-item.active {
            border-color: var(--primary-red);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .rpm-faq-item.active .rpm-faq-question {
            color: var(--primary-red);
        }

        .rpm-faq-item.active .rpm-faq-question span {
            transform: rotate(45deg);
        }

        .rpm-faq-item.active .rpm-faq-answer {
            max-height: 300px; /* Adjust as needed */
        }

        /* CTA Section */
        .rpm-cta {
            background: var(--primary-red);
            color: var(--white);
            text-align: center;
            padding: 60px 0;
        }

        .rpm-btn-white {
            background: var(--white);
            color: var(--primary-red);
            margin-top: 20px;
        }

        .rpm-btn-white:hover {
            background: var(--light-gray);
            color: var(--dark-blue);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .rpm-hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .rpm-hero-content h1 { font-size: 2rem; }
        }

//faq page end //


.qualitypage_section1{
    padding-top: 50px;
    padding-bottom: 80px;
}
.qualitypage_section1 .elementor-icon-list-item span i {
    color: #084af3;
    transition: color 0.3s;
    font-size: 22px;
}
.qualitypage_section1 .elementor-icon-list-text{
    color: #494b51;
}
.product_con{
    margin-top: 50px;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.aboutus_page-section1 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.aboutus_page-section1 .heading-2 {
    color: #2a2a2a;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.aboutus_page-section1 .left-contentbox {
    padding-bottom: 0px;
}

.aboutus_page-section1 .left-contentbox .left-contentbox-details {
    margin-bottom: 0;
    color: #252525;
}

.about-section2 {
    padding-top: 90px;
    padding-bottom: 80px;
    width: 100%;
    height: auto;
    position: relative;
    background-image: url(../images/sea-fishing-2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 90px;
}



.iconbox2 {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    place-items: center;
    transition: 0.3s ease;
}

.iconbox2 img {
    width: 60px;
    height: 60px;
}

.iconbox2 i {
    color: #fff;
    font-size: 24px;
    transition: 0.3s ease;
}

.iconbox2:hover {
    background: #fff;
    transition: 0.3s ease;
}

.iconbox2:hover i {
    color: #2a2a2a;
    transition: 0.3s ease;
}

.sub-cloumbox-heading {
    color: #fff;
    text-align: center;
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
}

.sub-cloumbox-details {
    color: #ededed;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
}




/*Our Products details page start*/
.our-products2 {
    padding-bottom: 0;
}

.hr-line {
    width: 100%;
    border-top: 1px solid #999;
    margin-bottom: 20px;
}

.our-products-section .left-contentbox .content-heading2 {
    color: #2a2a2a;
    text-align: left;
    position: relative;
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.details-heading {
    font-size: 22px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
    border-bottom: 1px solid #dad8d8;
    padding-bottom: 10px;
}

/*
.our-products table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.our-products table tr:nth-child(odd) {
    background: #f4f4f4;
}

.our-products table th,
td {
    width: 50%;
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-bottom: 1px solid #dfdfdf !important;
}
*/

.product-imgcon {
    /*    border: 2px solid #999;*/
    /*    box-shadow: 0px 0px 20px 0 rgb(80 80 80 / 20%);*/
}

/*Our Products details page end*/



/*Our Projects page start*/

.our-project-section2 {
    padding-bottom: 90px;
}

.our-project-section2 .project-contentbox {
    padding: 40px;
}


/*Our Projects page end*/

.contactus-section2 {
    padding-top: 40px;
    padding-bottom: 100px;
    position: relative;
    background: #D6D6D6;
}

/*
.contactus-section2 .form-heading {
    color: #2a2a2a;
}
.contactus-section2 .contact-no {
    color: #2a2a2a;
}
.contactus-section2 .contact-detailsbox p {
    color: #2a2a2a;
}
.contactus-section2 .email-address {
    color: #2a2a2a;
}
*/

/*
.contactus-section2 .submit-button .btn2{
    color: #fff;
    background: #ef2b1f;
    transition: 0.3s ease;
    border: 1.5px solid #ef2b1f;
    margin-left: 20px;
}

.contactus-section2 .submit-button .btn2:hover{
    color: #ef2b1f;
    background: transparent;
    transition: 0.3s ease;
    border: 1.5px solid #ef2b1f;
}
*/



/*Our Service page start*/



.service-section1 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.service-heading2 {
    color: #454545;
    font-size: 28px;
    line-height: 32px;
    font-weight: bold;
    position: relative;
    margin-bottom: 15px;
}

.service-details2 {
    color: #777;
    font-size: 16px;
    line-height: 24px;
}

.service-section1 .form-box {
    box-shadow: none;
    margin-top: 0;
}

.features_info {
    margin-top: 30px;
}

.features_info .list-row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.features_info .icon-heading {
    margin-bottom: 0;
}



.list-content {
    margin-left: 10px;
}

.bro-iconbox {
    width: 64px;
    height: 64px;
    margin-right: 20px;
}

.bro-iconbox img {
    width: 100%;
    height: auto;
}

.download_brochure {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: rgba(42, 202, 166, 0.3);
    padding: 30px 40px;
}

.download_left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.brochure-heading {
    color: #454545;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
}

.download_text p {
    color: #777;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.right-form-box {
    background: rgba(42, 202, 166, 0.3);
    padding-top: 40px;
    padding-bottom: 50px;
    padding-left: 25px;
    padding-right: 25px;
}

.right-form-box-heading {
    color: #454545;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 72, 56, 0.7);
    margin-bottom: 40px;
}

.service-section1 .contact-form {
    width: 100%;
    height: auto;
    /*
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
*/
}

.right-form-box .contact-form .form-control {
    /*    height: 45px;*/
    /*    color: #777777 !important;*/
    background-color: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 5px !important;
}

/*
.right-form-box .contact-form .form-control::placeholder{
    color: #777777;
}
*/
/*
.submit-button .btn1 {
    color: #fff;
    background: #282828;
    border: 1.5px solid #282828;
}

.submit-button .btn1:hover {
    color: #282828;
    background: #fff;
    border: 1.5px solid #fff;
}
*/

.right-service-box {
    background: rgba(42, 202, 166, 0.3);
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 30px;
}

.service-list {
    list-style: none;
}

.service-item {
    width: 100%;
    height: 50px;
    display: block;
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.3s ease;
    border-bottom: 1px solid rgba(0, 72, 56, 0.7);
}

.service-item:hover {
    color: #2acaa6;
    transition: 0.3s ease;
}



.learn-more-btn {
    color: #fff !important;
    margin-left: 10px;
    background: #1ec3f3 !important;
    border: 1.5px solid #1ec3f3;
}

.learn-more-btn:hover {
    color: #ffff !important;
    background: #000a1d !important;
    border: 1.5px solid #000a1d;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.button-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.image-contentbox {
    border: 5px solid #ebebeb;
}

/*Our Service page end*/


.aboutcatepage_section1{
    padding-top: 80px;
    padding-bottom: 0px;
}
.about_section2 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about_section2 .content-heading1 {
    color: #454545;
    text-align: left;
}

.about_section2 .content-heading2 {
    color: #01a0e2;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about_section2 .left-contentbox-details {
    margin-bottom: 0;
    color: #777;
}

.mision_vision-section {
    padding-bottom: 50px;
}

.mision_vision-section .left-contentbox .content-heading2 {
    color: #454545;
    text-align: left;
    position: relative;
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.mision_vision-section .left-contentbox .left-contentbox-details {
    color: #777;
    text-align: left;
    font-size: 15px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
}




.our-products-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.our-products-section .left-contentbox .content-heading2 {
    color: #2a2a2a;
}

/*Category page start*/


.our-category-section {
    width: 100%;
    height: auto !important;
    background: #f4f4f4;
    padding-top: 80px;
    padding-bottom: 80px;
}


/*
.card-box {
    width: 100%;
    height: 385px;
    overflow: hidden;
    background: #fff;
}
.card-imgbox{
    width: 100%;
    height: 300px;
    overflow: hidden;
    padding: 20px;
}
*/

.card-imgbox img {
    width: 100%;
    height: auto;
}


.card-content {
    padding: 20px 0;
}

.card-content .card-heading {
    color: #39c5ff;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    line-height: 22px;
    padding: 0 0 0 0;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.card-content .card-heading a {
    color: #39c5ff;

}

.card-button .read-more {
    color: #ef7f1b;
}

.button-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sticky_div {
    position: sticky;
    top: 20px;
}
.left-contentbox ul{
    padding-left: 0;
}
.features-list,
.features-list li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.features-list ul{
    margin-top: 30px;
}
.features-list {
    margin: 2em 0;
}

.features-list li {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    /*    font-family: 'Merriweather', serif !important;*/
    margin-bottom: 12px;
    margin-left: 3em;
    color: #111;
}

.features-list li::before {
    content: '\f046';
    font-family: 'FontAwesome';
    float: left;
    margin-left: -1.4em;
    color: #ffc78b;
    font-size: 15px;
    font-weight: 400;
}

/*Category page end*/


.achiev_section1 {
    padding-top: 90px;
    padding-bottom: 90px;
}




/*left right modal*/

.modal-btn i {
    color: #fff;
    font-size: 30px;
}

.modal-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

.form-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #022d60;
}

.modal.left_modal,
.modal.right_modal {
    position: fixed;
    z-index: 11111;
    background-color: #0007;
    right: 0;
    left: inherit;

}

.modal.left_modal .modal-dialog,
.modal.right_modal .modal-dialog {
    position: fixed;
    margin: auto;
    width: 80%;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal-dialog {
    /* max-width: 100%; */
    margin: 1.75rem auto;
}

@media (min-width: 576px) {
    .left_modal .modal-dialog {
        max-width: 100%;
    }

    .right_modal .modal-dialog {
        max-width: 100%;
    }
}

.modal.left_modal .modal-content,
.modal.right_modal .modal-content {
    /*overflow-y: auto;
      overflow-x: hidden;*/
    height: 100vh !important;
}

.modal.left_modal .modal-body,
.modal.right_modal .modal-body {
    padding: 15px 15px 30px;
}

/*.modal.left_modal  {
      pointer-events: none;
      background: transparent;
  }*/

.modal-backdrop {
    display: none;
}

/*Left*/
.modal.left_modal.fade .modal-dialog {
    right: -80%;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left_modal.fade.show .modal-dialog {
    right: 0;
    box-shadow: 0px 0px 19px rgba(0, 0, 0, .5);
}

/*Right*/
.modal.right_modal.fade .modal-dialog {
    left: -50%;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}



.modal.right_modal.fade.show .modal-dialog {
    left: 0;
    box-shadow: 0px 0px 19px rgba(0, 0, 0, .5);
}

/* ----- MODAL STYLE ----- */
.modal-content {
    border-radius: 0;
    border: none;
}



.modal-header.left_modal,
.modal-header.right_modal {

    padding: 10px 15px;
    border-bottom-color: #EEEEEE;
    background-color: #FAFAFA;
}

.modal_outer .modal-body {
    /*height:90%;*/
    overflow-y: auto;
    overflow-x: hidden;
    height: 91vh;
}

.modal-footer {
    margin-top: 30px;
}

.modal-footer .submit-button .btn1 {
    text-align: center;
}



.project_page-sec1{
    background: #fff;
}

.project_page-sec1 .content-heading2 {
    color: #111;
}
.project_page-sec1 .big-font {
    color: #fff;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.12);
}
.project_page-sec1 .project_contentbox {
    padding: 20px 10px 0;
    text-align: center;
}
.project_page-sec1 .project_heading {
    color: #111;
}

.contact_infobox-wrapper2 .contact_infobox{
    align-items: center;
}

.contact_infobox-wrapper2 .contact_info-contact{
    margin-bottom: 0;
}


.tab_infocon{
    display: block;
}
.according-container{
    display: none;
}
.tab_infocon .nav{
    width: 280px;
}
.tab_infocon .nav-pills .nav-link{
    border-radius: 0;
    text-align: left;
    color: #4175fc;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    padding: 1rem 1.4rem;
}

.tab_infocon .nav-pills .nav-link.active, 
.tab_infocon .nav-pills .show>.nav-link {
    color: #101218;
    background-color: #f6f7f8;
    border: 1px solid #54595f;
    border-right: none;
}
.tab-content{
    width: calc(100% - 280px);
}
.tab_infocon .tab-content .tab-pane {
    color: #101218;
    background-color: #f6f7f8;
    border: 1px solid #54595f;
    padding: 20px;
    min-height: 300px;
}
.tab_infocon .tab-content .tab-pane p{
    font-size: 16px;
    line-height: 26px;
}
.tab_infocon .tab-content .tab-pane p a{
    color: #494b51;
    transition: 0.3s ease-in-out;
}
.tab_infocon .tab-content .tab-pane p a:hover{
    color: #4175fc;
}
.icic_logobox{
    max-width: 200px;
    width: 100%;
    height: auto;
}
.icic_logobox img{
    width: 100%;
    height: auto;
}


.float_form{
    padding-left: 50px;
    padding-right: 50px;
}
.page_title{
    padding-left: 50px;
}




.lcformatepage_section1{
    padding-top: 50px;
    padding-bottom: 50px;
}
.lcformatepage_section1 .content-heading3{
    color: #101218;
}
.lcformate-table1{
    width: 100%;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.5em;
    width: 100%;
}
td, th {
/*    table-layout: fixed;*/
    padding: 8px;
    border-width: 0 1px 1px 0;
}
table, td, th {
/*    table-layout: fixed;*/
    border: 1px solid #dddddd;
}

.lcformatepage_section1 table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.5em;
    width: 100%;
}
.lcformatepage_section1 td, th {
/*    width: 100%;*/
/*    table-layout: fixed;*/
    padding: 8px;
    border-width: 0 1px 1px 0;
}
.lcformatepage_section1 table, td, th {
/*    width: 100%;*/
/*    table-layout: fixed;*/
    border: 1px solid #dddddd;
}
.info-table3{
    background: #084af3;
}
.lcformatepage_section1 .info-table3 td,
.lcformatepage_section1 .info-table3 th {
    color: #fff
}
.lc-format_section2{
    background: #7A7A7A7D;
}

.card-wraper{
    width: 100%;
    height: 100%;
    padding: 20px 20px 20px 20px;
    background-color: #084af3;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E9E9E9;
    border-radius: 10px 10px 10px 10px;
}
.card-imagebox{
    width: 100%;
    height: auto;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    border-radius: 10px 10px 10px 10px;
}
.card-imagebox img{
    width: 100%;
    height: auto;
    transition: 0.3s ease-in-out;
}
.card-imagebox:hover img{
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}
.card-wraper-box-content{
    padding-top: 30px;
}
.box-title{
    color: #fff;
    font-weight: 700;
}
.box-title a{
    color: #fff;
    font-weight: 700;
}
.box-title a:hover{
    color: #fff;
}
.card-wraper-box-content .description{
    color: #fff;
    margin-top: 20px;
}

.bg_image-wraper{
    width: 100%;
    min-height: 550px;
    padding: 50px 0 150px;
    position: relative;
/*    background-color: #FFFFFF7A;*/
    background-image: url(../images/about-page-bg.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
/*
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
*/
}
.bg_image-wraper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 0;
}
.bg_image-wraper .left-contentbox-details{
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.banner-form-container2{
    background: #454545;
    padding: 10px 10px 10px 5px;
    border-radius: 10px;
}
.heading-title{
    color: #4175fc;
    font-weight: 700;
}

.heading_box6{
    padding: 30px 30px 30px 30px;
    background: #084af3;
    text-align: center;
}
.heading_box6 p{
    color: #fff;
    margin-bottom: 0;
}

.fct .elementor-icon-list-items{
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.fct .elementor-icon-list-text{
    color: #494b51;
}
.fct .elementor-icon-list-item span i {
    color: #084af3;
}


.form-group label{
    color: #494b51;
    font-weight: 700;
    margin-bottom: 5px;
}
.form-group label span{
    color: #ff0000;
}
.form-check-label{
    font-weight: 400 !important;
}

.clientspage_section1{
    padding-top: 80px;
    padding-bottom: 80px;
}
.clientspage_section2{
    width: 100%;
    height: auto;
    position: relative;
    background-image: url(../images/clients-page-bg2.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 80px 0;
}
.clientspage_section2 .client-imagebox{
    border: 1px solid #C3BEBE;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}
.clientspage_section2 .client-imagebox:hover{
    margin-top: -10px;
    transition: 0.3s ease-in-out;
}
.clientspage_section2 .content-heading3{
    color: #fff;
}


.careerpage_section1{
    padding: 50px 0;
}
.careerpage_section1 .team-card{
    height: 100%;
}
.careerpage_section1 .team_member-name {
    color: #fff;
    background-color: #7a7a7a;
}
.careerpage_section1 .elementor-icon-list-icon{
    width: 20px;
}
.careerpage_section1 .elementor-icon-list-icon i{
    color: #084af3;
    font-size: 20px;
}

.careerpage_section1 .elementor-icon-list-text{
    color: #494b51;
}
.team_member-name2{
    color: #54595f !important;
    font-weight: 800 !important;
    margin-top: 30px;
    background-color: transparent !important;
    padding: 0 0 !important;
}

/* Gallery page start */

.gallerypage_section1{
    padding-top: 80px;
    padding-bottom: 80px;
    background: #4175fc;
}

.gallerypage_section1 .content-heading3{
    color: #fff;
}
.gallerypage_section2{
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 5px;
    padding-right: 5px;
}


/* Gallery page end */




/* Contact page start */

.contactpage_section1{
    padding-top: 50px;
    padding-bottom: 80px;
}
.contactpage_section1 .content-heading3{
    color: #7a7a7a;
}
.team-card{
    width: 100%;
    height: auto;
    padding: 20px 20px;
    border: 3px solid #454545;
    border-radius: 5px;
}

.team_member-name{
    color: #101218;
    font-size: 19px;
    font-weight: 700;
    padding: 10px 10px 10px 10px;
    background-color: #6ec1e4;
    border-radius: 10px 10px 10px 10px;
    margin-bottom: 25px;
}
.team_member-contact{
    color: #494b51;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 40px;
}
.team_imagebox{
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.team_imagebox img{
    width: 100%;
    height: auto;
}


.contactpage_section2{
    padding: 60px 0;
    background: #cddbfd;
}
.contactpage_section2 .content-heading3{
    color: #54595f;
    margin-bottom: 0;
}

.contactpage_section3{
    padding-top: 80px;
    padding-bottom: 80px;
}
.contact_infobox-wrapper{
    box-shadow: 0px 0px 20px 0px rgba(205.5, 205.5, 205.5, 0.5);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 30px 20px 30px 20px;
    border-radius: 5px;
    min-height: 215px;
}
.contact_infobox-wrapper-head{
    color: #101218;
    font-size: 23px;
    line-height: 30px;
    font-weight: 700;
    position: relative;
    padding-left: 150px;
    font-family: 'Poppins',sans-serif !important;
}
.contact_infobox-wrapper-head::before{
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 140px;
    border-top: 1px solid #4175fc;
}
.contact_info-iconbox i{
    color: #4175fc;
    font-size: 50px;
}
.contact_infobox{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
    width: 100%;
}
.contact_info-headingbox{
    width: calc(100% - 60px);
    padding-left: 20px;
}

.contact_info-heading {
    color: #101218;
    font-size: 17px;
    line-height: 23px;
    font-weight: 700;
    font-family: 'Poppins',sans-serif !important;
    margin-bottom: 5px;
}


/* Contact page end */

//gallery start //
/* GALLERY CAROUSEL STYLING */
.rpm-gallery-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.rpm-container-fluid {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.rpm-gallery-subtitle {
    display: block;
    text-align: center;
    color: #e63946;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.rpm-gallery-title {
    text-align: center;
    color: #1d3557;
    font-size: 2.5rem;
    margin: 0;
    font-weight: 800;
}

.rpm-gallery-underline {
    width: 50px;
    height: 4px;
    background: #e63946;
    margin: 15px auto 45px;
    border-radius: 2px;
}

/* Structural Wrapper for Arrow Controls Context */
.rpm-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px; /* Gives structural safe space for side buttons */
}

/* Viewport constraints */
.rpm-carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Track flex layer */
.rpm-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Slide setup targeting exactly 4 items display */
.rpm-carousel-slide {
    flex: 0 0 calc((100% - (20px * 3)) / 4);
    box-sizing: border-box;
}

/* Enforcing strict 1:1 Square aspect-ratio configuration */
.rpm-carousel-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(29, 53, 87, 0.08);
    transition: transform 0.3s ease;
    display: block;
    background-color: #eaeaea;
}

.rpm-carousel-slide img:hover {
    transform: scale(1.03);
}

/* Premium Industrial UI Navigation Buttons */
.rpm-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 1px solid rgba(29, 53, 87, 0.15);
    border-radius: 50%;
    color: #1d3557;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.rpm-carousel-btn:hover {
    background-color: #e63946;
    color: #ffffff;
    border-color: #e63946;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.25);
}

.rpm-prev { left: 5px; }
.rpm-next { right: 5px; }

/* RESPONSIVE LAYOUT BREAKPOINTS */
@media (max-width: 992px) {
    .rpm-carousel-slide {
        flex: 0 0 calc((100% - (20px * 2)) / 3);
    }
}

@media (max-width: 768px) {
    .rpm-carousel-wrapper {
        padding: 0 45px; /* Compresses safe spacing bounds on smaller displays */
    }
    .rpm-carousel-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .rpm-gallery-title {
        font-size: 2rem;
    }
    .rpm-carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .rpm-carousel-slide {
        flex: 0 0 100%;
    }
    .rpm-carousel-wrapper {
        padding: 0 40px;
    }
    .rpm-prev { left: 0px; }
    .rpm-next { right: 0px; }
}


//contact form //
:root{
    --rpm-red:#FF6600;
    --rpm-navy:#001E57;
}

.rpm-contact-section{
    padding:100px 0;
    background:#f8f9fc;
}

.rpm-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.rpm-contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:70px;
    align-items:center;
}

.rpm-subtitle{
    color:var(--rpm-red);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
}

.rpm-title{
    font-size:48px;
    font-weight:700;
    color:var(--rpm-navy);
    margin:15px 0;
    font-family:'Roboto',sans-serif;
}

.rpm-title span{
    color:var(--rpm-red);
}

.rpm-divider{
    width:60px;
    height:4px;
    background:var(--rpm-red);
    border-radius:20px;
    margin-bottom:40px;
}

.rpm-info-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    padding:22px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.icon-box{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:50%;
    background:var(--rpm-navy);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.rpm-info-card h4{
    margin:0 0 5px;
    color:var(--rpm-navy);
    font-size:20px;
    font-weight:600;
}

.rpm-info-card p{
    margin:0;
    color:#666;
}

.rpm-info-card a{
    color:var(--rpm-red);
    text-decoration:none;
    font-weight:600;
}

.form-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.form-control{
    border:1px solid #ddd;
    border-radius:10px;
    min-height:55px;
    padding:12px 15px;
}

textarea.form-control{
    min-height:140px;
}

.btn1{
    background:var(--rpm-red);
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn1:hover{
    background:var(--rpm-navy);
    color:#fff;
}

@media(max-width:991px){

    .rpm-contact-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .rpm-title{
        font-size:36px;
    }
}

@media(max-width:767px){

    .rpm-contact-section{
        padding:70px 0;
    }

    .rpm-title{
        font-size:28px;
        line-height:38px;
    }

    .form-box{
        padding:25px;
    }

    .rpm-info-card{
        flex-direction:column;
        text-align:center;
    }
}
