/* File Path: public/frontend/css/mobile.css */

/* ========================================================= */
/* ====================  MOBILE HEADER  ==================== */
/* ========================================================= */
    @media (max-width: 480px) {
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 1000;
          }

        .mobile-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: .75rem 1rem;
            top: 0;
            z-index: 1000;
        }
        .mobile-header .logo { width: 40px; height: 40px; }
        .mobile-header .company-name { color: #fff; font-size: 1.4rem; font-weight: 600; margin-left: 0.2rem;}
        .mobile-header .hamburger-btn {
        background: transparent; border: none; color: #fff; font-size: 2rem;
        }
    
        /* slide-in menu */
        .mobile-menu {
            display: block;
            position: fixed;
            top: 0;
            right: -100%;
            width: 75%;
            max-width: 300px;
            height: 100vh;
            transition: right .3s ease;
            padding: 2rem 1rem;
            z-index: 1001;
        }
        .mobile-menu.open { right: 0; }
        .mobile-menu .close-btn {
        background: transparent; border: none; color: #ff3b3b; font-size: 1.6rem;
        position: absolute; top: 1rem; right: 1rem;
        }
        .mobile-menu .mobile-nav {
        display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem;
        }
        .mobile-menu .mobile-nav a {
        color: #fff; text-decoration: none; font-size: 1.2rem; font-weight: 400;
        }
        .mobile-menu .mobile-social {
        display: flex; justify-content: center; gap: 1rem; margin: 2rem 0;
        }
        .mobile-menu .mobile-social a { color: #fff; font-size: 1.4rem; }
        .mobile-menu .mobile-contact a {
        display: flex; justify-content: center; align-items: center;
        color: #fff; text-decoration: none; font-size: 1.4rem; gap: .5rem;
        }
    
        /* hide other headers */
        .desktop-header, .tablet-header { display: none !important; }
    }
  
/* ========================================================= */
/* ====================  MOBILE FOOTER  ==================== */
/* ========================================================= */
    @media (max-width: 480px) {
        .main-footer {
        background-color: #000;
        }
        .main-footer .container {
            padding-left: 0 !important;
            padding-right: 0 !important;
          }
        
          /* instantly switch your row into a 2-column grid */
          .main-footer .row {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 1rem !important;    /* space between columns & rows */
            margin: 0 !important;     /* kill any leftover margins */
          }
        
          /* ensure each footer “box” fills its grid cell */
          .main-footer .row > [class*="col-"] {
            width: 100% !important;
            max-width: none !important;
            padding: 0 0.5rem !important;  /* tweak side-padding if you like */
            box-sizing: border-box;
          }
        
          .main-footer .col-6 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
            box-sizing: border-box;
            padding-left: 8px;
            padding-right: 8px;
          }

        .main-footer h5,
        .footer-subheading {
        text-align: left !important;
        color: #fff;
        }
    
        .footer-heading {
        font-size: var(--footer-heading-size, 1.2rem);
        }
    
        .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        }
    
        .footer-links a {
        color: #fff;
        text-decoration: none;
        }
    
        .social-icons a {
        color: #ffffff !important;
        font-size: 1.4rem;
        margin-right: 0.75rem;
        }
    
        .newsletter-img {
        display: block;
        }
    
        .newsletter-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        }
    
        .newsletter-input,
        .subscribe-btn {
        width: 90%;
        max-width: 250px;
        margin: 0.25rem 0;
        border-radius: 1rem;
        font-family: 'Electrolize', sans-serif;
        font-size: 1rem;
        padding: 0.6rem 1rem;
        box-sizing: border-box;
        text-align: center;
        }
    
        .newsletter-input {
        border: 1px solid #333;
        background-color: #fff;
        color: #000;
        }
    
        .subscribe-btn {
        background-color: #ef3639;
        border: none;
        color: #fff;
        font-weight: bold;
        }
    
        .subscribe-btn:hover {
        background-color: #29A9A9;
        color: #fff;
        }

        .newsletter-img {
            display: none;
        }
    }
  
/* =========================================================================== */
/* ===================  MOBILE LANDING PAGE HOME SECTION  ==================== */
/* =========================================================================== */
    @media (max-width: 480px) {

        :root {
        --hero-title-size: 1.6rem;
        --hero-desc-size: 0.95rem;
        --cta-font-size: 0.9rem;
        }
    
        /* Remove side padding on mobile */
        .col-lg-5.px-4,
        .col-md-6.px-4,
        .col-lg-7.px-5,
        .col-md-6.px-5 {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .hero-section {
        padding: 2rem 0; /* Remove side paddings to allow full-width */
        min-height: auto;
        }
    
        .hero-container {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        }
    
        .row {
        flex-direction: column;
        margin: 0;
        }
    
        /* Hide 2nd row info box */
        .info-box {
        display: none !important;
        }
    
        /* LEFT COLUMN FULL WIDTH STACKED */
        .hero-left {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
        margin: 0;
        width: 100%;
        text-align: center;
        }
    
        .hero-left-inner {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.2rem;
        padding: 0;
        margin: 0;
        width: 100%;
        }
    
        .hero-title {
        font-size: var(--hero-title-size);
        font-weight: 700;
        text-align: center;
        padding: 0 1rem;
        }
    
        .hero-desc {
        font-size: var(--hero-desc-size);
        text-align: center;
        margin: 0;
        padding: 0 1rem;
        }
    
        .cta-container {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
        }
    
        .btn-hero-cta {
        font-size: var(--cta-font-size);
        padding: 0.5rem 1.5rem;
        font-weight: 600;
        color: #fff;
        background: #ef3639 !important;
        border-radius: 50px;
        transition: 0.3s;
        }
    
        .btn-hero-cta:hover {
        background: rgba(64,176,70,1) !important;
        
        transform: scale(1.05);
        }
    
        /* RIGHT COLUMN */
        .hero-right-wrapper {
        padding: 0;
        margin: 0;
        width: 100%;
        }
    
        .delivery-tag {
            font-size: 1.4rem;
            text-align: center;
            margin: 2rem 0 1rem 0;
            padding: 0 1rem;
        }
    
        .hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        }
    
        .hero-lottie-animation {
            width: 100%;
            max-width: 100%;
            height: auto;
            padding: 0 1rem; /* optional: add if you want small spacing on sides */
        }
    
    }
  
/* ============================================================================== */
/* ===================  MOBILE LANDING PAGE SERVICE SECTION  ==================== */
/* ============================================================================== */
    @media (max-width: 480px) {
        /* 1. Section background */
        .srv-section {
        padding: 2.5rem 0;
        }

        .srv-page-title {
            font-size: 1.75rem;
            color: #fff;
            margin-bottom: 1rem;
        }
        
        .srv-page-subtitle {
            font-size: 1rem;
            line-height: 1.5;
            color: #fff;
            margin-bottom: 2rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }
    
        /* 2. Header styling with rounded corners and white background */
        .srv-header {
        background: #fff;
        border-radius: 1rem;
        padding: 1.2rem 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        }
    
        .srv-heading,
        .srv-tagline-wrapper {
        background: transparent !important;
        width: 100%;
        }
    
        .srv-heading h2 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        color: #000 !important;
        }
    
        .srv-tagline {
        font-size: 1.25rem;
        color: #000 !important;
        margin: 0;
        }
    
        /* 3. Service body layout: image → buttons → description */
        .srv-body {
        background: var(--active-tab-bg, #000); /* updated dynamically via JS */
        border-radius: 1rem;
        color: #fff;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1.5rem;
        }
    
        .srv-visual-column {
        order: 1;
        display: flex;
        justify-content: center;
        }
    
        .srv-btn-group-wrapper {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        }
    
        .srv-btn-explore,
        .srv-btn-contact {
        width: 100%;
        text-align: center;
        border-radius: 50px;
        padding: 0.6rem 2rem;
        font-weight: 600;
        font-size: 1rem;
        background: #fff !important;
        color: #000 !important;
        border: none !important;
        text-decoration: none !important;
        transition: all 0.3s ease;
        display: inline-block;
        }
    
        .srv-btn-explore:hover,
        .srv-btn-contact:hover,
        .srv-btn-explore.active,
        .srv-btn-contact.active {
        background: rgba(64,176,70,1) !important;
        color: #fff !important;
        }
    
        .srv-desc-column {
        order: 3;
        }
    
        .srv-desc {
        font-size: 0.95rem;
        text-align: left;
        line-height: 1.5;
        }
    
        .srv-visual {
        max-width: 220px;
        width: 100%;
        margin: 0 auto;
        }
    
        #serviceVisual canvas,
        #serviceVisual svg,
        #serviceVisual img {
        width: 100% !important;
        height: auto;
        object-fit: contain;
        display: block;
        }
    
        /* 4. Tabs styling */
        .srv-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 2rem;
        padding: 0;
        list-style: none;
        justify-content: center;
        }
    
        .srv-tab {
        flex: 1 1 100%;
        background: #fff;
        color: #000;
        text-align: center;
        padding: 1rem 0;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 0.75rem;
        cursor: pointer;
        transition: background 0.3s, color 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        }
    
        .srv-tab.active {
        background: var(--active-tab-bg, #000) !important;
        color: #fff !important;
        }
    }
  
/* ================================================================= */
/* ==============  MOBILE INDUSTRY SECTION LAYOUT  ================= */
/* ================================================================= */
    @media (max-width: 480px) {
        /* Container */

        #industries-mobile.industries-mobile {
            color: white;
            padding-top: 3rem;
            padding-bottom: 3rem;
        }

        .industries-mobile__container {
        padding: 1rem;
        }
    
        /* Each card is 100% width with rounded corners */
        .industries-mobile__card {
        background: #fff;           /* will override per card */
        border-radius: 1rem;
        margin-bottom: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
    
        /* Image at the very top, full width */
        .industries-mobile__image {
        display: block;
        width: 100%;
        height: auto;
        }
    
        /* Text block below image, centered */
        .industries-mobile__text {
        padding: 1rem;
        text-align: center;
        }
        .industries-mobile__title {
        margin: 0 0 0.5rem;
        font-size: 1.25rem;
        font-weight: bold;
        }
        .industries-mobile__desc {
        margin: 0;
        font-size: 1rem;
        line-height: 1.4;
        }
    
        /* Per-card backgrounds & text colors */
        .industries-mobile__card.card1 { background: #80ccba; color: #2b2d6c; }
        .industries-mobile__card.card2 { background: #dfe4cd; color: #2b2d6c; }
        .industries-mobile__card.card3 { background: #d9e1df; color: #2b2d6c; }
        .industries-mobile__card.card4 { background: #4ba9f1; color: #2b2d6c; }
    }
  
/* ================================================================= */
/* ==============  MOBILE WHY US SECTION LAYOUT  ================== */
/* ================================================================= */
    @media (max-width: 480px) {
        /* SECTION */
        .why-us-section {
        --gap: 8px;
        --base: clamp(2rem, 8cqi, 80px);
        --speed: 0.6s;
        --easing: ease;
        color: #fff;
        padding: 4rem 0;
        }
    
        .why-us-title {
        font-size: 1.75rem;
        /* font-weight: 700; */
        margin-bottom: 0.75rem;
        }
    
        .why-us-intro {
        max-width: 78ch;
        font-size: 1rem;
        margin: 0 auto 2.5rem;
        line-height: 1.55;
        opacity: 0.9;
        }
    
        /* STACK CARDS VERTICALLY */
        .why-us-grid {
        display: flex;
        flex-direction: column;
        gap: var(--gap);
        width: 90%;
        margin: 0 auto;
        padding: 0;
        }
    
        /* COLLAPSED STATE: only show title */
        .why-us-grid li {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.2);
        background: rgba(0,0,0,0.15);
        cursor: pointer;
    
        /* collapsed height = only the title’s height */
        height: var(--base);
        transition: height var(--speed) var(--easing);
        }
    
        /* EXPANDED STATE: fixed height for full image */
        .why-us-grid li[data-active="true"] {
        height: clamp(220px, 40dvh, 380px);
        /* height: clamp(220px, 50vh, 540px); */
        }
    
        /* CARD CONTENT LAYER */
        .why-card {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;               /* fills the <li> */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;/* content starts at top */
        font-family: monospace;
        background: linear-gradient(90deg,#1e1c60,#9f5590);
        }
    
        /* TITLE ALWAYS VISIBLE AT TOP */
        .why-card h3 {
        position: relative;
        transform: none;
        font-size: 1.1rem;
        font-weight: 700;
        margin: 0;
        padding: 0.35rem 1rem;       /* breathing room from the top */
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: #fff;
        z-index: 2;
        }
    
        /* HIDE EVERYTHING ELSE UNTIL EXPANDED */
        .why-card p,
        .why-card a,
        .why-card img,
        .why-card::after {
        display: none;
        }
    
        /* REVEAL WHEN EXPANDED */
        .why-us-grid li[data-active="true"] .why-card p,
        .why-us-grid li[data-active="true"] .why-card a,
        .why-us-grid li[data-active="true"] .why-card img,
        .why-us-grid li[data-active="true"] .why-card::after {
        display: block;
        }
    
        /* PARAGRAPH AT BOTTOM */
        .why-card p {
        position: absolute;
        bottom: 0.5rem;             /* sits just above the “Contact Us” link */
        left: 1rem;
        right: 1rem;
        font-size: 0.95rem;
        line-height: 1.5;
        font-weight: 600;
        margin: 0;
        z-index: 2;
        }
    
        /* LINK AT THE VERY BOTTOM */
        .why-card a {
        position: absolute;
        bottom: 0.75rem;            /* padding from card bottom */
        left: 40%;
        font-size: 0.85rem;
        font-weight: 600;
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 4px;
        z-index: 2;
        }
    
        /* FULL-COVER BACKGROUND IMAGE */
        .why-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 70%;               /* 🔥 now truly fills the card */
        object-fit: cover;
        filter: grayscale(0) brightness(1);
        transform: scale(1.1);
        transition: filter var(--speed) var(--easing),
                    transform var(--speed) var(--easing);
        z-index: 0;
        }
    
        /* DARK OVERLAY FOR READABILITY */
        .why-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.7) 0%,
            rgba(0,0,0,0.3) 40%,
            transparent 70%
        );
        z-index: 1;
        }
    }
/* ================================================================================== */
/* ===================  MOBILE LANDING PAGE PROCESS SECTION  ======================= */
/* ================================================================================== */
  
@media (max-width: 480px) {
    #process h2 {
      font-size: 1.75rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
  
    #process h4 {
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.8);
    }
  
    #process p.lead {
      font-size: 1rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 1rem;
    }
  
    #process .text-muted {
      color: #ffffff !important;
    }

    #process .font-audiowide {
        font-weight: 500;
    }
}
  

/* ================================================================================== */
/* ===================  MOBILE LANDING PAGE TESTIMONIALS SECTION  =================== */
/* ================================================================================== */
    @media (max-width: 480px) {

        .testimonial-title{
            font-size: 1.75rem;
            font-weight: 500;
        }

        .testimonial-card {
        flex: 0 0 90%;
        min-width: 250px;
        }
    
        .testimonial-text {
        font-size: 0.9rem;
        }

        /* Marquee Animations */
        .marquee-left .testimonial-row {
            animation: marquee-left 20s linear infinite;
        }
        
        .marquee-right .testimonial-row {
            animation: marquee-right 22s linear infinite;
        }

        @keyframes marquee-left {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
            
        @keyframes marquee-right {
            0%   { transform: translateX(-100%); }
            100% { transform: translateX(0); }
        }
    }      

/* ================================================================================== */
/* ===================  MOBILE LANDING PAGE CONTACT US SECTION  ===================== */
/* ================================================================================== */
    @media (max-width: 480px) {
        /* Remove outer spacing */
        .cta-form-section {
        padding: 0 !important;
        margin: 0 !important;
        }
    
        /* Wrapper fills full width with less padding */
        .cta-form-wrapper {
        width: 100% !important;
        padding: 1.5rem 1rem !important;
        border-radius: 0 !important;
        }
    
        /* Stack form and contact info vertically */
        .cta-form-container {
        flex-direction: column !important;
        gap: 2rem;
        }
    
        /* Form elements full width */
        .cta-left-form,
        .cta-left-form .form-control,
        .cta-left-form textarea.form-control {
        width: 100% !important;
        padding: 0.75rem;
        }
    
        /* Fix button spacing & alignment */
        .cta-left-form .col-md-12.d-flex.justify-content-end {
        justify-content: center !important;
        margin-top: 1rem;
        }
    
        .cta-submit-btn {
        width: 100% !important;
        text-align: center;
        }
    
        /* Contact info layout centered */
        .cta-horizontal-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        }
    
        .cta-horizontal-info > div {
        justify-content: center;
        }
    
        .cta-horizontal-info i {
        font-size: 1.1rem;
        }
    
        .cta-horizontal-info span {
        font-size: 1rem;
        }
    
        /* Headings and descriptions */
        .cta-heading {
        font-size: 1.5rem !important;
        text-align: center;
        }
    
        .cta-description {
        font-size: 1rem !important;
        text-align: center;
        }
    }

/* ================================================================================== */
/* ===================  MOBILE LANDING PAGE PROCESS SECTION  ======================== */
/* ================================================================================== */
    @media (max-width: 575px) {
        .mobile-timeline-pure {
        list-style: none;
        margin: 0;
        padding: 0 1rem;
        position: relative;
        }
    
        .mobile-timeline-pure li {
        position: relative;
        padding: 2rem 0 2rem 1rem; /* base left padding */
        }
    
        .mobile-timeline-pure li .bar {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 1.65rem;
        width: 3px;
        background: #000;
        }
    
        /* New flex row: marker + heading */
        .mobile-timeline-pure li .step-row {
        display: flex;
        align-items: center;
        gap: 1rem; /* spacing between marker and text */
        }
    
        .mobile-timeline-pure li .marker {
        display: flex;
        align-items: center;
        z-index: 1;
        flex-shrink: 0;
        }
    
        .mobile-timeline-pure li .circle {
        width: 25px;
        height: 25px;
        background: #fff;
        border: 3px solid #000;
        border-radius: 50%;
        }
    
        .mobile-timeline-pure li .line {
        width: 25px;
        height: 5px;
        background: #000;
        }
    
        .mobile-timeline-pure li .step-heading {
            flex-grow: 1;
            background-color: #29A9A9;
            padding: 8px 12px;
            border-radius: 8px;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            margin: 0;
            word-break: break-word;
        }
    }
  
/* ============================================================= */
/* ================ ABOUT US PAGE ============================== */
/* ============================================================= */
/* ==================================================================== */
/* =========================== HERO SECTION =========================== */
/* ==================================================================== */
    @media (max-width: 480px) {
        .hero-about-wrapper {
            width: 100%;
            padding: 0 1rem;
            margin: 0;
            display: flex;
            text-align: center;
            align-items: center;
        }

        .book-container {
        width: 100%;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
        }
    
        .hero-about-title {
        font-size: 1.2rem;
        }
    
        .hero-about-subtext {
        font-size: 0.85rem;
        }
    }

/* ========================================================================= */
/* ================ COMPANY INFO & FOUNDER MESSAGE SECTION ================= */
/* ========================================================================= */
    @media (max-width: 480px) {
        .company-info-section {
            padding-bottom: 1rem !important;  /* reduce top space */
        }

        .company-info-wrapper {
            width: 100%;
            padding: 0 1rem;
        }
        .company-info-section{
            padding-bottom: 0;
        }
        .company-info-section .info-block {
            flex-direction: column !important;
            text-align: left;
        }
    
        .company-info-section .info-block.reverse {
            flex-direction: column !important;
        }
    
        .company-info-section .info-image {
            order: 0 !important;
            flex: 0 0 100%;
            max-width: 100%;
            width: 100%;
            text-align: center;
        }
    
        .company-info-section .info-image img {
            width: 100%;
            height: auto;
            border-radius: 0.75rem;
        }
    
        .company-info-section .info-text {
            order: 1 !important;
            flex: 0 0 100%;
            max-width: 100%;
            width: 100%;
            padding: 0.5rem 0;
        }
    
        .company-info-section .info-title {
            font-size: 1.5rem;
        }
    
        .company-info-section .info-subtitle {
            font-size: 1.5rem;
            font-weight: 500;
        }
    
        .company-info-section .info-text p,
        .company-info-section .info-list,
        .company-info-section .info-list li,
        .company-info-section blockquote {
            font-size: 1rem;
            line-height: 1.5;
        }
    
        .company-info-section blockquote footer {
            font-size: 0.95rem;
        }
    }

/* ==================================================================== */
/* ================ MISSION & VISION & VALUES SECTION ================= */
/* ==================================================================== */
    @media (max-width: 480px) {

        .mvv-section {
            padding-top: 1rem !important; 
            padding-bottom: 1rem !important; 
        }

        .mvv-container-tablet {
            flex-direction: column;              /* stack vertically */
            padding: 1rem 1rem;
            gap: 2rem;
        }
    
        .mvv-left-tablet,
        .mvv-right-tablet {
            flex: 0 0 100%;
            width: 100%;
        }
    
        .mvv-left-tablet {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
    
        .mvv-right-tablet {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-top: 1rem;
        }
    
        .mvv-title{
            font-size: 1.75rem;
            font-weight: 500;
        }

        .mvv-block {
            display: flex;
            align-items: stretch;
        }
    
        .mvv-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            background: #fff;
            color: #000;
            font-weight: 700;
            padding: 0.5rem 0.8rem;
            border-radius: 1rem;
            margin-right: 1rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    
        .mvv-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            color: #fff;
        }
    
        .mvv-content p {
            font-size: 1rem;
            color: #f0f0f0;
        }
    
        .value-card {
            background: #fff;
            color: #000;
            padding: 0.8rem 1rem;
            border-radius: 0.75rem;
            font-weight: 700;
        }
    
        .value-card p {
            display: none;
        }
    }

/* ================================================ */
/* ================ MEET THE TEAM ================= */
/* ================================================ */

@media (max-width: 480px) {
    .team-title{
        font-size: 1.75rem;
        font-weight: 500;
    }

    .team-intro{
        font-size: 1rem;
        font-weight: 500;
    }
}

/* =========================================================== */
/* ================ T&C and Policies SECTION ================= */
/* =========================================================== */
    /* Policies */
    @media (max-width: 480px) {
        .policy-container {
        padding: 2rem 1rem;
        }

        .policy-container h1 {
        font-size: 1.6rem;
        }

        .policy-container h2 {
        font-size: 1.1rem;
        }
    }
    /* T&C */
    @media (max-width: 480px) {
        .terms-container {
        padding: 2rem 1rem;
        }

        .terms-container h1 {
        font-size: 1.6rem;
        }

        .terms-container h2 {
        font-size: 1.1rem;
        }
    }

/* ==================================================================== */
/* ================ SERVICES PAGE ================= */
/* ==================================================================== */

    @media (max-width:480px) {
        .srv-section         {  padding:2.5rem 0; }
        .srv-header          { background:#fff; border-radius:1rem; padding:1.2rem 1rem; text-align:center; }
        .srv-heading h2      { font-size:1.6rem; color:#000; margin-bottom:.5rem; }
        .srv-tagline         { font-size:1.25rem; color:#000; }
        .srv-body            { border-radius:1rem; padding:2rem 1.5rem; display:flex; flex-direction:column; gap:1.5rem; margin-top:1.5rem; color:#fff; }
        .srv-btn-group-wrapper{ display:flex; flex-direction:column; gap:1rem; }
        .srv-btn-explore,
        .srv-btn-contact     { width:100%; font-size:1rem; }

        .phlebo-service .srv-body{background:#00a1ab;}
        .logistic-service .srv-body{background:#222155;}
        .ecom-service .srv-body{background:#841023;}
        .whitecollar-service .srv-body{background:#54206d;}
    }

/* ============================================================= */
/* ====================== MOBILE CAREER ======================== */
/* ============================================================= */

    @media (max-width: 480px) {
        .career-section      { padding: 0!important; }
        .career-wrapper      { width: 100%!important; padding: 1.5rem 1rem!important; border-radius: 0!important; }
        .career-form-container { flex-direction: column!important; gap: 2rem; }
    
        .career-left-form .row > [class*="col-"] { margin-bottom: 1rem; }
    
        .career-heading      { font-size: 1.5rem!important; }
        .career-description  { font-size: 1rem!important; }
    
        .career-left-form .col-md-12.d-flex.justify-content-end {
        justify-content: center!important;
        margin-top: 1rem;
        }
        .career-submit-btn { width: 100%!important; }
        .career-right-info { text-align: center; }
        .career-contact-info span {
            color: #000000;
            font-weight: 500;
        }
    }
    