/* =========================
   ROOT VARIABLES (GA THEME)
========================= */

:root {
    /* ========================
     🌍 GLOBAL ATTACHMENTS THEME    
  ======================== */
    /*  Primary Colors */
    --ga-primary-yellow: #F5B400;
    --ga-primary-black: #0A0A0A;
    /*  Secondary Colors */
    --ga-dark-graphite: #1F1F1F;
    --ga-steel-grey: #6B6B6B;
    --ga-light-grey: #F4F4F4;
    /*  Base Colors */
    --ga-white: #FFFFFF;
    --ga-border-color: #2A2A2A;
    /*  Typography */
    --ga-font-heading: 'Montserrat', sans-serif;
    --ga-font-body: 'Montserrat', sans-serif;
    /*  Font Sizes */
    --ga-text-xs: 12px;
    --ga-text-sm: 14px;
    --ga-text-md: 16px;
    --ga-text-lg: 20px;
    --ga-text-xl: 28px;
    --ga-text-xxl: 40px;
    --ga-text-hero: 56px;
    /*  Font Weights */
    --ga-fw-regular: 400;
    --ga-fw-medium: 500;
    --ga-fw-semibold: 600;
    --ga-fw-bold: 700;
    /*  Spacing */
    --ga-space-xs: 8px;
    --ga-space-sm: 16px;
    --ga-space-md: 24px;
    --ga-space-lg: 40px;
    --ga-space-xl: 64px;
    /*  Border Radius */
    --ga-radius-sm: 6px;
    --ga-radius-md: 10px;
    --ga-radius-lg: 16px;
    /*  Shadows */
    --ga-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.1);
    --ga-shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.2);
    --ga-shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.3);
    /*  Transitions */
    --ga-transition-fast: 0.2s ease;
    --ga-transition-medium: 0.4s ease;
    /*  Button Colors */
    --ga-btn-bg: var(--ga-primary-yellow);
    --ga-btn-text: var(--ga-primary-black);
    --ga-btn-hover-bg: var(--ga-primary-black);
    --ga-btn-hover-text: var(--ga-primary-yellow);
}

/* =========================
   GLOBAL STYLES
========================= */
body {
    font-family: var(--ga-font-body);
    color: var(--ga-white);
    margin: 0;
    padding: 0;
    font-size: var(--ga-text-md);
    line-height: 1.6;
}

/* Headings */

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--ga-font-heading);
    font-weight: 800 !important;
    margin-bottom: var(--ga-space-sm);
    color: var(--ga-text-hero);
    /* letter-spacing: 0.5px; */
    text-transform: uppercase;
}

/* SIMPLE GLOBAL HEADINGS */

h1 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
}

h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
}

h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
}

h4 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
}

h5 {
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 600;
}

p {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.7;
}

/* Light Section Override */
.ga-light-section {
    color: var(--ga-primary-black);
}

.ga-light-section p {
    color: var(--ga-steel-grey);
}

.ga-light-section h1,
.ga-light-section h2,
.ga-light-section h3,
.ga-light-section h4,
.ga-light-section h5 {
    color: var(--ga-primary-black);
}

.ga-about-hero h1,
.ga-cap-hero h1,
.ga-contact-hero h1 {
    font-size: clamp(34px, 5vw, 48px);
}

/*--------------------BUTTON------------------------*/
.ga-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--ga-font-heading);
    font-size: 14px;
    font-weight: var(--ga-fw-semibold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--ga-primary-black);
    background: var(--ga-primary-yellow);
    border: 2px solid var(--ga-primary-yellow);
    border-radius: var(--ga-radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover */
.ga-btn:hover {
    background: transparent;
    color: var(--ga-primary-yellow);
    transform: translateY(-2px);
}

/* Click */
.ga-btn:active {
    transform: translateY(0);
}

/*Outline*/

.ga-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: var(--ga-fw-semibold);
    text-transform: uppercase;
    color: var(--ga-primary-black);
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--ga-radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.ga-btn-outline:hover {
    border-color: var(--ga-primary-yellow);
    color: var(--ga-primary-yellow);
}

/*Btn dark*/
.ga-btn-dark {
    color: var(--ga-white) !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.ga-btn-dark:hover {
    background: var(--ga-primary-yellow);
    color: var(--ga-primary-black);
    border-color: var(--ga-primary-yellow);
}

/*--------------Top header-----------------*/
/* Topbar Base */
.ga-topbar {
    background: linear-gradient(to right, #111 0%, #1a1a1a 50%, #111 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    padding: 2px 0px;
    position: relative;
    /* z-index: 999; */
}

/* Subtle glow line */
.ga-topbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(245, 180, 0, 0.4), transparent);
}

/* Left Section */
.ga-topbar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Contact Items */
.ga-top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(255 255 255 / 91%);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
}

/* Icon Styling */
.ga-top-item i {
    font-size: 14px;
    color: var(--ga-primary-yellow);
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Hover Effect */
.ga-top-item:hover {
    color: #fff;
}

.ga-top-item:hover i {
    transform: translateY(-1px);
    opacity: 1;
}

/* Right Social Icons */
.ga-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Social Icons Style */
.ga-topbar-right a {
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: all 0.3s ease;
}

/* Premium Hover */
.ga-topbar-right a:hover {
    background: var(--ga-primary-yellow);
    color: var(--ga-primary-black);
    border-color: var(--ga-primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(245, 180, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .ga-topbar .container {
        flex-direction: column;
        gap: 8px;
        padding: 6px 0;
    }

    .ga-topbar-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
}

/*---------------Hero section-------------------*/
/* Slide */
.ga-hero-slide {
    height: 520px;
    background-size: cover !important;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* 🔥 Cinematic Overlay */
.ga-hero-overlay {
    position: absolute;
    inset: 0;
    opacity: .7;
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.85) 25%, rgba(0, 0, 0, 0.6) 55%, rgba(0, 0, 0, 0.2) 100%);
}

/* ✨ Zoom Effect (Premium touch) */
.ga-zoom {
    animation: gaZoom 12s ease-in-out infinite;
}

@keyframes gaZoom {
    0% {
        background-size: 100%;
    }

    50% {
        background-size: 110%;
    }

    100% {
        background-size: 100%;
    }
}

/* Content */
.ga-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

/* Small Tag */
.ga-hero-sub {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--ga-primary-yellow);
    margin-bottom: 12px;
}

/* Heading */
.ga-hero-content h1 {
    font-size: 50px;
    font-weight: var(--ga-fw-bold);
    color: var(--ga-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Text */
.ga-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
}

/* Buttons */
.ga-hero-actions {
    display: flex;
    gap: 16px;
}

/* Outline Button */
.ga-btn-outline {
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--ga-white) !important;
    text-decoration: none;
    border-radius: var(--ga-radius-sm);
    transition: var(--ga-transition-fast);
}

.ga-btn-outline:hover {
    border-color: var(--ga-primary-yellow);
    color: var(--ga-primary-yellow) !important;
}

/* Outline dark Button */
.ga-btn-outline {
    padding: 12px 28px;
    border: 1px solid var(--ga-primary-yellow);
    color: var(--ga-primary-yellow) !important;
    color: #ffc107 !important;
    text-decoration: none;
    border-radius: var(--ga-radius-sm);
    transition: var(--ga-transition-fast);
}

.ga-btn-outline:hover {
    border-color: var(--ga-border-color);
    color: var(--ga-primary-yellow) !important;
}

/* Remove default arrows (clean look) */
.carousel-control-prev,
.carousel-control-next {
    display: inline-block;
}

/* Indicators (minimal) */
.carousel-indicators {
    bottom: 30px;
    display: none;
}

.carousel-indicators button {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.carousel-indicators .active {
    background: var(--ga-primary-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .ga-hero-slide {
        height: 80vh;
        text-align: center;
    }

    .ga-hero-content {
        margin: auto;
    }

    .ga-hero-content h1 {
        font-size: 32px;
    }

    .ga-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/*---------- About us Section -----------*/
/* Section */
.ga-about-section {
    padding: 100px 0;
    background: var(--ga-white);
}

/* Image Wrapper */
.ga-about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ga-about-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

/* Hover zoom */
.ga-about-image:hover img {
    transform: scale(1.05);
}

/* Floating Badge */
.ga-about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--ga-primary-yellow);
    color: var(--ga-primary-black);
    padding: 18px 22px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ga-about-badge span {
    font-size: 28px;
    font-weight: var(--ga-fw-bold);
    display: block;
}

.ga-about-badge p {
    margin: 0;
    font-size: 13px;
}

/* Content */
.ga-about-content {
    padding-left: 40px;
}

/* Section Label */
.ga-section-sub {
    color: var(--ga-primary-yellow);
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* Title */
.ga-about-hero h1,
.ga-cap-hero h1,
.ga-contact-hero h1 {
    font-size: clamp(34px, 5vw, 48px);
}

.ga-section-title {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: var(--ga-primary-black);
    margin-bottom: 20px;
}

.ga-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--ga-primary-yellow);
    margin-top: 10px;
}

.ga-title-center {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: var(--ga-primary-black);
    margin-bottom: 20px;
    text-align: center;
}

.ga-title-center::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--ga-primary-yellow);
    margin: 10px auto;
}

/* Text */
.ga-about-text {
    color: var(--ga-steel-grey);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Features */
.ga-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Feature Item */
.ga-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ga-primary-black);
    font-size: 14px;
}

/* Icon */
.ga-feature i {
    color: var(--ga-primary-yellow);
    font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
    .ga-about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .ga-about-features {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------
    Products Section
----------------------------------------*/

/*=========================================
        PRODUCT SHOWCASE
=========================================*/

.ga-showcase-section {

    padding: 100px 0;

    background: #f8fafc;

}

.ga-showcase-item {

    padding: 12px;

}

.ga-showcase-card {

    display: block;

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    text-decoration: none;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);

    transition: .4s ease;

    height: 100%;

}

.ga-showcase-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.ga-showcase-image {
    overflow: hidden;
    height: auto;
    width: 100%;
    padding: 20px;
}

.ga-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}

.ga-showcase-card:hover img {
    transform: scale(1.08);
}

.ga-showcase-content {
    padding: 28px;
}

.ga-showcase-tag {
    display: inline-block;
    background: #fff5d8;
    color: var(--ga-primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.ga-showcase-content h3 {
    font-size: 21px;
    margin-bottom: 10px;
    color: var(--ga-heading);
}

.ga-showcase-content p {
    margin-bottom: 25px;
    color: var(--ga-text);
    line-height: 1.8;
}

.ga-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--ga-primary);
    transition: .3s;
}

.ga-showcase-card:hover .ga-showcase-link {
    gap: 18px;
}

/* category Owl navigation */
/* ===========================
   SHOWCASE NAVIGATION
=========================== */

.ga-showcase-slider .owl-nav,
.ga-showcase-slider .owl-dots {

    margin-top: 40px;

}

.ga-showcase-slider .owl-nav {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

}

/* Arrows */

.ga-showcase-slider .owl-prev,
.ga-showcase-slider .owl-next {
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, .08) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .35s;
    text-align: center;
    line-height: 52px;

}

.ga-showcase-slider .owl-prev:hover,
.ga-showcase-slider .owl-next:hover {

    background: var(--ga-primary) !important;
    transform: translateY(-3px);

}

.ga-showcase-slider .owl-nav i {

    font-size: 18px;

}

/*=============================
        RESPONSIVE
==============================*/

@media(max-width:1199px) {

    .ga-showcase-image {

        height: 230px;

    }

}

@media(max-width:991px) {

    .ga-showcase-section {

        padding: 80px 0;

    }

    .ga-showcase-slider .owl-nav {

        display: none;

    }

    .ga-showcase-content {

        padding: 22px;

    }

}

@media(max-width:767px) {

    .ga-showcase-image {

        height: 220px;

    }

    .ga-showcase-content h3 {

        font-size: 20px;

    }

}

@media(max-width:575px) {

    .ga-showcase-section {

        padding: 70px 0;

    }

    .ga-showcase-content {

        padding: 20px;

    }

    .ga-showcase-image {

        height: 210px;

    }

}

/*---------------------
Why choose us
-----------------------*/
/* Section */
.ga-why-section {
    padding: 100px 0;
    background: #0c0c0c;
    position: relative;
}

/* Subtle gradient glow */
.ga-why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(245, 180, 0, 0.08), transparent 40%);
}

/* Content */
.ga-why-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* Points */
.ga-why-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ga-why-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ga-white);
    font-size: 14px;
}

.ga-why-point i {
    color: var(--ga-primary-yellow);
    font-size: 18px;
}

/* Counter Grid */
.ga-counter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Counter Box */
.ga-counter-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

/* Hover */
.ga-counter-box:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 180, 0, 0.3);
}

/* Counter Number */
.ga-counter {
    font-size: 36px;
    font-weight: var(--ga-fw-bold);
    color: var(--ga-primary-yellow);
    margin-bottom: 8px;
}

/* Text */
.ga-counter-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}


.ga-quality-section {
    padding: 100px 0;
    background: var(--ga-white);
}

/* Text */
.ga-quality-text {
    color: var(--ga-steel-grey);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Points */
.ga-quality-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ga-quality-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ga-primary-black);
}

.ga-quality-point i {
    color: var(--ga-primary-yellow);
    font-size: 18px;
}

/* Visual */
.ga-quality-visual {
    position: relative;
}

.ga-quality-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Floating Card */
.ga-quality-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--ga-primary-yellow);
    color: var(--ga-primary-black);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ga-quality-card h3 {
    font-size: 28px;
    margin-bottom: 0;
    font-weight: var(--ga-fw-bold);
}

.ga-quality-card p {
    margin: 0;
    color: var(--bs-body-color);
    font-size: 13px;
}

/* Bottom Cards */
.ga-quality-box {
    background: var(--ga-light-grey);
    border: 1px solid #f5b400;
    /*border: 1px solid rgba(0,0,0,0.05);*/
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
}

.ga-quality-box i {
    font-size: 28px;
    color: var(--ga-primary-yellow);
    margin-bottom: 12px;
}

.ga-quality-box h5 {
    margin-bottom: 10px;
    font-weight: var(--ga-fw-semibold);
}

.ga-quality-box p {
    font-size: 14px;
    color: var(--ga-steel-grey);
}

/* Hover */
.ga-quality-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 180, 0, 0.3);
}

/*---------------*/
.ga-cta-section {
    padding: 80px 0;
    background: var(--ga-primary-yellow);
    color: var(--ga-primary-black);
}

.ga-cta-section h2 {
    font-size: 32px;
    font-weight: var(--ga-fw-bold);
    margin-bottom: 15px;
}

.ga-cta-section p {
    max-width: 600px;
    margin: auto;
    margin-bottom: 25px;
}

.ga-cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Adjust outline button for yellow bg */
.ga-cta-section .ga-btn-outline {
    border-color: var(--ga-primary-black);
    color: var(--ga-primary-black);
}

.ga-cta-section .ga-btn-outline:hover {
    background: var(--ga-primary-black);
    color: var(--ga-primary-yellow);
}

/* Top CTA */
.ga-footer-top {
    background: var(--ga-primary-yellow);
    padding: 20px 0;
}

.ga-footer-top h4 {
    margin: 0 0 10px;
    font-weight: var(--ga-fw-semibold);
    color: var(--ga-primary-black);
}

/* Main Footer */
.ga-footer-main {
    background: #0c0c0c;
    padding: 70px 0;
}

/* Brand */
.ga-footer-brand img {
    max-width: 300px;
    margin-bottom: 15px;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 5px;
}

.ga-footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Headings */
.ga-footer-main h5 {
    color: var(--ga-white);
    margin-bottom: 15px;
    font-size: 16px;
}

/* Links */
.ga-footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ga-footer-main ul li {
    margin-bottom: 10px;
}

.ga-footer-main ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.ga-footer-main ul li a:hover {
    color: var(--ga-primary-yellow);
}

/* Contact */
.ga-footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.ga-footer-contact i {
    color: var(--ga-primary-yellow);
    margin-right: 8px;
}

/* Social */
.ga-footer-social {
    margin-top: 15px;
}

.ga-footer-social a {
    display: inline-flex;
    width: 46px;
    height: 46px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    /* border: 2.5px solid #ffffff5c !important; */
    background: #dddddd38;
    border-radius: 50%;
    color: #ffffff !important;
    margin-right: 8px;
    transition: 0.3s;
}

.ga-footer-social a:hover {
    background: var(--ga-primary-yellow);
    color: var(--ga-primary-black);
}

/* Bottom Bar */
.ga-footer-bottom {
    background: #050505;
    padding: 15px 0;
}

.ga-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================
   PAGE HEADER
======================== */
.ga-page-header {
    background: linear-gradient(rgb(11 11 10 / 41%), rgba(0, 0, 0, 0.7)), url(../images/banner/pg-header.jpg) center / cover no-repeat;
    padding: 4em 0;
    text-align: center;
    color: var(--ga-white);
}

.ga-page-header h1 {
    font-size: 35px;
    margin-bottom: 0;
    font-weight: var(--ga-fw-bold);
}

.ga-page-header p {
    margin-top: var(--ga-space-sm);
    color: var(--bs-border-color);
    font-size: 14px;
    margin: 3px 0;
}

:root {

    /* Primary */
    --ga-primary-yellow: #F5B400;
    --ga-primary-black: #0A0A0A;

    /* Secondary */
    --ga-dark-graphite: #1F1F1F;
    --ga-steel-grey: #6B6B6B;
    --ga-light-grey: #F4F4F4;

    /* Base */
    --ga-white: #FFFFFF;
    --ga-border-color: #2A2A2A;

}

/***************************
PRODUCT CARD
****************************/

.ga-product-card {

    display: block;
    text-decoration: none;
    background: var(--ga-white);
    border: 1px solid #ececec;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
    position: relative;
    height: 100%;

}

.ga-product-card::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--ga-primary-yellow);
    transition: .4s;
    z-index: 2;

}

.ga-product-card:hover::before {

    width: 100%;

}

.ga-product-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);

}

.ga-product-img {

    padding: 35px;

    position: relative;

    overflow: hidden;

}

.ga-product-img img {
    width: 100%;
    transition: .45s;
}

.hover-img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: scale(.92);
}

.ga-product-card:hover .main-img {
    opacity: 0;
    transform: scale(1.08);
}

.ga-product-card:hover .hover-img {
    opacity: 1;
    /* transform: scale(1); */
}

.ga-size-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    background: var(--ga-primary-yellow);

    color: var(--ga-primary-black);

    font-weight: 700;

    border-radius: 30px;

    padding: 7px 15px;

    z-index: 5;

}

.ga-product-content {

    padding: 24px;

}

.ga-category {

    color: var(--ga-steel-grey);

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 12px;

}

.ga-product-content h4 {

    color: var(--ga-primary-black);

    margin: 10px 0;

    font-size: 23px;

    font-weight: 700;

}

.ga-product-content p {

    color: var(--ga-steel-grey);

    margin-bottom: 18px;

}

.ga-specs {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}

.ga-specs span {

    background: rgba(245, 180, 0, .08);

    color: var(--ga-dark-graphite);

    border: 1px solid rgba(245, 180, 0, .25);

    border-radius: 40px;

    padding: 7px 14px;

    font-size: 13px;

    font-weight: 600;

}

.ga-btn-quote {

    margin-top: 24px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--ga-primary-black);

    font-weight: 700;

    border-top: 1px solid #efefef;

    padding-top: 18px;

}

.ga-btn i {

    transition: .35s;

    font-size: 18px;

}

.ga-product-card:hover .ga-btn {

    color: var(--ga-primary-yellow);

}

.ga-product-card:hover .ga-btn i {

    transform: translateX(8px);

}

@media(max-width:991px) {

    .ga-product-content h4 {

        font-size: 20px;

    }

}

@media(max-width:576px) {

    .ga-product-img {

        padding: 25px;

    }

    .hover-img {

        left: 25px;
        top: 25px;

    }

}

/* ========================
   SECTION TITLE
======================== */
.ga-product-section {
    padding: 80px 0;
}

/* ========================
   PRODUCT GRID
======================== */
.ga-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ga-space-md);
}

.ga-product-grid.small {
    grid-template-columns: repeat(2, 1fr);
}

.ga-product-img {
    width: 100%;
    padding: 20px;
    display: block;
}

.ga-product-card {
    margin-bottom: 15px;
}

.ga-product-card h3 {
    text-align: center;
    font-size: 18px;
}

.ga-product-card h3 a {
    cursor: pointer;
}

.ga-product-card h3 a:hover {
    color: var(--ga-primary-yellow)
}

/* ========================
   PRODUCT CARD
======================== */
/* Gallery + Layout */
.ga-product-page {
    padding: 80px 0;
    background: var(--ga-white);
}

/* Gallery */
.ga-main-img img {
    width: 80%;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.ga-thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.ga-thumb-row img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.ga-thumb-row img:hover {
    opacity: 1;
}

/* Info */
.ga-product-info h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.ga-product-short {
    color: var(--ga-steel-grey);
    margin-bottom: 20px;
}

.ga-product-specs {
    margin-bottom: 25px;
}

.ga-product-specs div {
    margin-bottom: 8px;
}

.ga-product-tabs {
    padding: 60px 0;
}

/* Nav */
.ga-tabs-nav {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

.ga-tabs-nav li {
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
}

.ga-tabs-nav li.active {
    color: var(--ga-primary-yellow);
}

.ga-tabs-nav li.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ga-primary-yellow);
}

/* Content */
.ga-tab-content {
    display: none;
}

.ga-tab-content.active {
    display: block;
}

.ga-about-hero {
    padding: 70px 0 80px;
    background: var(--ga-light-grey);
}

.ga-about-hero h1 {
    font-size: clamp(34px, 5vw, 48px);
    font-weight: var(--ga-fw-bold);
    margin-bottom: 20px;
}

.ga-about-hero p {
    color: var(--ga-steel-grey);
    margin-bottom: 30px;
}

.ga-about-story {
    padding: 3em 0;
}

/* Stats */
.ga-about-stats {
    display: flex;
    gap: 30px;
}

.ga-about-stats h3 {
    color: var(--ga-primary-yellow);
}

.ga-about-hero-img img {
    width: 100%;
    border-radius: 12px;
}

.ga-about-vm {
    padding: 10px 0 40px;
}

.ga-vm-card {
    background: rgb(12 12 12);
    padding: 30px;
    border-radius: 12px;
    color: white;
    backdrop-filter: blur(6px);
}

.ga-vm-card p {
    color: var(--ga-white)
}

.ga-about-cta {
    margin-bottom: 3.5em;
}

.ga-cta-box {
    background: var(--ga-dark-graphite);
    padding: 50px;
    border-radius: 14px;
    color: var(--ga-primary-yellow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ga-cta-box p {
    color: var(--ga-white);
}

/* Section */
.ga-about-why {
    padding: 20px 0 40px;
    background: var(--ga-white);
    position: relative;
}

/* subtle background accent */
.ga-about-why::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 180, 0, 0.08), transparent);
}

/* Box */
.ga-why-box {
    background: var(--ga-white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* top accent line */
.ga-why-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--ga-primary-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

/* Icon circle */
.ga-why-box i {
    width: 60px;
    height: 60px;
    background: rgba(245, 180, 0, 0.1);
    color: var(--ga-primary-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    margin-bottom: 15px;
    transition: 0.4s;
}

/* Title */
.ga-why-box h6 {
    font-size: 15px;
    font-weight: var(--ga-fw-semibold);
    color: var(--ga-primary-black);
    margin: 0;
}

/* Hover Effects */
.ga-why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 180, 0, 0.3);
}

.ga-why-box:hover::before {
    transform: scaleX(1);
}

.ga-why-box:hover i {
    background: var(--ga-primary-yellow);
    color: var(--ga-primary-black);
}

/* Section Title spacing fix */
.ga-about-why .ga-section-title {
    margin-bottom: 10px;
}

/*------------------
 Contact us
 -------------------*/
.ga-contact-hero {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('images/contact-banner.jpg') center/cover no-repeat;
    color: var(--ga-white);
}

.ga-contact-cards {
    padding: 80px 0;
    background: var(--ga-light-grey);
}

.ga-contact-card {
    background: var(--ga-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ga-contact-card i {
    font-size: 30px;
    color: var(--ga-primary-yellow);
    margin-bottom: 12px;
}

.ga-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ga-contact-main {
    padding: 80px 0;
}

/* Map */
.ga-map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 12px;
}

/* Form */
.ga-contact-form {
    background: var(--ga-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ga-contact-form h3 {
    margin-bottom: 20px;
}

.ga-contact-form input,
.ga-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Section Wrapper */
.ga-cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f5b400, #ffd24d);
    position: relative;
    overflow: hidden;
}

/* Subtle pattern / glow */
.ga-cta-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent);
}

/* Inner Content Box */
.ga-cta-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.ga-cta-section h2 {
    font-size: 34px;
    font-weight: var(--ga-fw-bold);
    color: var(--ga-primary-black);
    margin-bottom: 15px;
}

/* Text */
.ga-cta-section p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 25px;
}

/* Button Enhancement */
.ga-cta-section .ga-btn {
    padding: 14px 30px;
    font-size: 15px;
    border-radius: 6px;
    background: var(--ga-primary-black);
    color: var(--ga-white);
    transition: 0.3s ease;
}

.ga-cta-section .ga-btn:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*-------------
 Capablity page
 ---------------*/
.ga-cap-hero {
    padding: 120px 0 100px;
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)),
        url('images/banner/pg-header.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

/* HERO */
.ga-hero-title {
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 600;
}

.ga-hero-text {
    color: #666;
    margin-top: 10px;
}

.ga-hero-box {
    background: #fff;
    padding: 30px;
    border-left: 4px solid var(--ga-primary-yellow);
    box-shadow: var(--ga-shadow-light);
}

.ga-hero-box p {
    margin: 10px 0;
    font-weight: 500;
}

.ga-hero-line {
    height: 3px;
    width: 40px;
    background: var(--ga-primary-yellow);
    margin-bottom: 10px;
}


/* HEADING */
.ga-heading-wrap h2 {
    font-size: 28px;
    font-weight: 600;
}

.ga-divider {
    width: 60px;
    height: 3px;
    background: var(--ga-primary-yellow);
    margin: 10px auto;
}


/* CAP BOX */
.ga-cap-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s;
}

.ga-cap-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--ga-shadow-medium);
}

.ga-cap-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    color: #ddd;
    font-weight: 700;
}

.ga-cap-box h5 {
    font-size: 16px;
    margin-bottom: 8px;
}

.ga-cap-box p {
    font-size: 14px;
    color: #666;
}


/* INDUSTRIAL STRIP */
.ga-industrial-strip {
    background: #111;
    color: #fff;
    padding: 40px 0;
}

.ga-industrial-strip h3 {
    color: var(--ga-primary-yellow);
    margin: 0;
}

.ga-industrial-strip p {
    color: #ccc;
}


/* IMAGE FRAME */
.ga-image-frame {
    position: relative;
}

.ga-image-frame::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--ga-primary-yellow);
    z-index: 0;
}

.ga-image-frame img {
    position: relative;
    z-index: 1;
    border-radius: 6px;
}


/* CTA */
.ga-cap-cta {
    background: var(--ga-primary-yellow);
    padding: 50px 0;
}

.ga-btn {
    background: #000;
    color: #fff;
    padding: 10px 25px;
    margin-top: 10px;
    display: inline-block;
}

/*App medi Footer*/
.app-medi-footer-widget .app-medi-contact-widget .cw-widget-btn,
.medi-app-cta-form-wrap button,
.medi-app-banner-text a {
    color: #fff;
    width: 225px;
    height: 60px;
    border: none;
    margin-top: 20px;
    font-weight: 700;
    position: relative;
    background-color: #2E2E2E;
    transition: 0.3s all ease-in-out;
}

.app-medi-footer-widget .app-medi-contact-widget .cw-widget-btn span,
.medi-app-cta-form-wrap button span,
.medi-app-banner-text a span {
    top: 10px;
    right: -20px;
    width: 40px;
    height: 40px;
    position: absolute;
    line-height: 40px;
    color: #B76E79;
    border: 1px solid #B76E79;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
}

.app-medi-footer-widget .app-medi-contact-widget .cw-widget-btn:hover,
.medi-app-cta-form-wrap button:hover,
.medi-app-banner-text a:hover {
    background-color: #F28B82;
}

.app-medi-footer-widget .app-medi-contact-widget .cw-widget-btn:hover span,
.medi-app-cta-form-wrap button:hover span,
.medi-app-banner-text a:hover span {
    animation: toLeftFromRight 0.5s forwards;
}

@keyframes fadeFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeFromRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeFromUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeFromUp {
    animation-name: fadeFromUp;
}

.fadeFromRight {
    animation-name: fadeFromRight;
}

.fadeFromLeft {
    animation-name: fadeFromLeft;
}

/*global area*/
/*----------------------------------------------------*/
.app-medi {
    margin: 0;
    padding: 0;
    color: var(--arc-text-dark);
    font-size: 15px;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.625;
    font-family: "Poppins", sans-serif !important;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

.app-medi::selection {
    color: #ffffff;
    background-color: #6e3ebf;
}

.app-medi::-moz-selection {
    color: #ffffff;
    background-color: #6e3ebf;
}

.container {
    max-width: 1200px;
}

.ul-li ul {
    margin: 0;
    padding: 0;
}

.ul-li ul li {
    list-style: none;
    display: inline-block;
}

.ul-li-block ul {
    margin: 0;
    padding: 0;
}

.ul-li-block ul li {
    list-style: none;
    display: block;
}

div#app-medi-preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background-color: #f1f2f3;
    background: #fff url("../img/pre.svg") no-repeat center center;
}

[data-background] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    overflow: hidden;
}

button {
    cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    /* color: inherit; */
}

.form-control {
    box-shadow: none;
}

.pera-content p {
    margin-bottom: 0;
}

@keyframes zooming {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.05, 1.05);
    }

    100% {
        transform: scale(1, 1);
    }
}

.zooming {
    animation: zooming 18s infinite both;
}

.app-medi-headline h1,
.app-medi-headline h2,
.app-medi-headline h3,
.app-medi-headline h4,
.app-medi-headline h5,
.app-medi-headline h6 {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.app-medi-scrollup {
    width: 55px;
    right: 20px;
    z-index: 5;
    height: 55px;
    bottom: 20px;
    display: none;
    position: fixed;
    line-height: 55px;
    border-radius: 50px;
    background-color: var(--bs-body-bg);
    color: #f5b400 !important;
    border: 1px solid #f5b400 !important;
}

.app-medi-scrollup i {
    color: #fff;
    font-size: 20px;
}

.medi-app-section-title {
    z-index: 2;
    padding-bottom: 60px;
}

.medi-app-section-title .title-watermark {
    left: 0;
    right: 0;
    top: -60px;
    z-index: -1;
    line-height: 1;
    color: #e9eff4;
    font-weight: 600;
    font-size: 200px;
    font-family: "Poppins";
}

.medi-app-section-title .title-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--arc-yellow);
    letter-spacing: 3px;
}

.medi-app-section-title h2 {
    font-size: 34px;
    padding-top: 5px;
    font-weight: 700;
    color: var(--arc-primary-dark);
    margin-bottom: 10px;
}

.medi-app-background_overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

/*---------------------------------------------------- */
/*Header area*/
/*----------------------------------------------------*/
.medi-app-header-top {
    padding: 6px 40px 8px;
    background-color: var(--arc-blue-light);
    color: #e7e7e7;
}

.medi-app-header-top .medi-app-header-top-social {
    padding-right: 60px;
}

.medi-app-header-top .medi-app-header-top-social a {
    margin-right: 12px;
    transition: 0.3s all ease-in-out;
}

.medi-app-header-top .medi-app-header-top-social a:hover {
    color: #B76E79;
}

.medi-app-header-top .medi-app-header-top-login {
    font-size: 14px;
}

.medi-app-header-top .medi-app-header-top-login .h-top-login {
    color: #fff;
    font-weight: 700;
    margin-right: 5px;
}

.medi-app-header-top .medi-app-header-top-login .h-top-login i {
    color: #B76E79;
    margin-right: 5px;
}

/* .medi-app-header-top .medi-app-header-top-contact {
  padding-right: 70px;
} */

.medi-app-header-top .medi-app-header-top-contact a {
    font-size: 14px;
    margin-right: 35px;
}

.medi-app-header-top .medi-app-header-top-contact a i {
    color: #fff;
    margin-right: 5px;
}

.medi-app-header-top .medi-app-header-top-language {
    top: 0;
    right: 0;
    position: absolute;
}

.medi-app-header-top .medi-app-header-top-language:after {
    top: 10px;
    right: 22px;
    color: #fff;
    font-size: 14px;
    content: "";
    font-weight: 900;
    position: absolute;
    font-family: "Font Awesome 5 Free";
}

.medi-app-header-top .medi-app-header-top-language select {
    color: #fff;
    height: 40px;
    width: 120px;
    border: none;
    padding-left: 25px;
    text-align: center;
    background-color: #B76E79;
    -webkit-appearance: none;
}

.medi-app-main-header .side-demo span {
    top: 10px;
    right: 15px;
}

.medi-app-main-menu-wrap {
    padding-left: 5px;
}

.arc-nav-btn {
    padding: 12px 15px !important;
    background: var(--ga-btn-bg);
    line-height: 17px;
    color: #ffffff !important;
}

.arc-nav-btn:hover {
    background: var(--ga-dark-graphite) !important;
    color: var(--ga-light-grey) !important;
}

.medi-app-main-menu-wrap .site-brand-logo {
    float: left;
    width: 320px;
    margin-top: 1.2rem;
}

.medi-app-main-menu-wrap .dropdown {
    position: relative;
}

.medi-app-main-menu-wrap .dropdown:after {
    top: 1.7em;
    color: var(--ga-primary-yellow);
    right: -2px;
    content: "+";
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    transition: 0.3s all ease-in-out;
}

.medi-app-main-menu-wrap .dropdown .dropdown-menu {
    top: 115px;
    left: 0;
    opacity: 0;
    z-index: 2;
    margin: 0px;
    padding: 0px;
    height: auto;
    width: 315px;
    border: none;
    display: block;
    border-radius: 0;
    overflow-y: auto;
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
    border-top: 2px solid #ffffff;
    box-shadow: 0 5px 10px 0 rgba(83, 82, 82, 0.1);
}

.medi-app-main-menu-wrap .dropdown .dropdown-menu li {
    width: 100%;
    margin-left: 0;
    border-bottom: 1px solid #e5e5e5;
}

.medi-app-main-menu-wrap .dropdown .dropdown-menu li a {
    width: 100%;
    color: var(--arc-text-dark);
    display: block;
    font-size: 13px;
    padding: 10px 15px;
    position: relative;
    transition: 0.3s all ease-in-out;
}

.medi-app-main-menu-wrap .dropdown .dropdown-menu li a:before,
.medi-app-main-menu-wrap .dropdown .dropdown-menu li a:after {
    display: none;
}

.medi-app-main-menu-wrap .dropdown .dropdown-menu li a:hover {
    background-color: var(--kwc-aqua);
    color: #fff;
}

.medi-app-main-menu-wrap .dropdown .dropdown-menu li:last-child {
    border-bottom: none;
}

.medi-app-main-menu-wrap .dropdown:hover .dropdown-menu {
    top: 90px;
    opacity: 1;
    visibility: visible;
}

.medi-app-main-navigation .navbar-nav {
    display: inherit;
}

.medi-app-main-navigation li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--ga-dark-graphite);
    font-family: "Poppins", sans-serif;
    position: relative;
    display: inline-block;
    padding: 35px 35px 33px;
    text-transform: uppercase;
    transition: 0.4s all ease-in-out;
}

.medi-app-main-navigation .navbar-nav .nav-link {
    padding: 35px 35px 33px;
}

.medi-app-main-navigation.navbar-nav .nav-link {
    padding: 35px 35px 33px;
}

.medi-app-main-navigation li a:after {
    left: 0;
    bottom: -2px;
    width: 0%;
    right: 0;
    content: "";
    height: 4px;
    margin: 0 auto;
    position: absolute;
    background-color: var(--arc-primary);
    transition: 0.4s all ease-in-out;
}

.medi-app-main-navigation li a:hover,
.medi-app-main-navigation li a.active {
    color: var(--arc-primary);
    background-color: #f5fbff;
}

.medi-app-main-navigation li a:hover:after,
.medi-app-main-navigation li a.active:after {
    width: 100%;
}

.arc-service-list {
    list-style: none;
    padding: 0;
}

.arc-service-list li {
    margin-bottom: 0;
}

.arc-service-list li a {
    text-decoration: none;
    color: var(--arc-primary);
    font-weight: 500;
}

.arc-service-list li a i {
    margin-right: 10px;
    font-size: 20px;
    color: var(--arc-blue-light);
}

.medi-app-side-btn button {
    border: none;
    color: #abb7c0;
    font-size: 20px;
    padding: 30px 35px;
    background-color: transparent;
    border-left: 1px solid #f1f1f1;
    transition: 0.3s all ease-in-out;
}

.medi-app-side-btn button:hover {
    color: #B76E79;
}

.medi-app-main-header {
    box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 99;
}

.medi-app-sticky-on {
    top: 0px;
    z-index: 10;
    width: 100%;
    position: fixed;
    background-color: #fff;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-timing-function: ease;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}

.medi-app-sticky-on .medi-app-header-top {
    display: none;
}

.app-medi-search-body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    transform: scale(1, 0);
    transform-origin: bottom center;
    transition: transform 0.7s ease;
    background-color: rgba(0, 0, 0, 0.85);
}

.app-medi-search-body.app-medi-search-open {
    transform-origin: top center;
    transform: scale(1, 1);
}

.app-medi-search-body .app-medi-search-form {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.app-medi-search-body .app-medi-search-form .app-medi-search-form-area {
    width: 100%;
    z-index: 9991;
    max-width: 600px;
    position: relative;
}

.app-medi-search-body .app-medi-search-form input {
    width: 100%;
    height: 60px;
    border: none;
    padding: 0px 30px;
    background-color: #fff;
}

.app-medi-search-body .app-medi-search-form button {
    top: 0;
    right: 0;
    color: #fff;
    border: none;
    width: 120px;
    height: 60px;
    position: absolute;
    background-color: #B76E79;
}

.app-medi-search-body .outer-close {
    top: 40px;
    right: 55px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    line-height: 50px;
    position: absolute;
    background-color: red;
}

.app-medi-search-body .outer-close i {
    color: #fff;
}

.app-medi-search-open {
    opacity: 1;
    visibility: visible;
}

.medi-app-side-btn .shopping-cart {
    top: 85px;
    right: 90px;
    z-index: -1;
    opacity: 0;
    width: 350px;
    display: block;
    margin: 10px 0;
    background: #fff;
    padding: 30px 20px;
    position: absolute;
    visibility: hidden;
    transition: 0.3s all ease-in-out;
    border-top: 5px solid #B76E79;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.medi-app-side-btn .shopping-cart.cart-show {
    top: 80px;
    opacity: 1;
    z-index: 9;
    visibility: visible;
}

.medi-app-side-btn .shopping-cart li {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.medi-app-side-btn .shopping-cart li:last-child {
    border-bottom: none;
}

.medi-app-side-btn .shopping-cart .cart-total {
    padding-top: 10px;
    font-weight: 700;
    font-size: 14px;
}

.medi-app-side-btn .shopping-cart .cart-total span {
    color: #B76E79;
}

.medi-app-side-btn .shopping-cart .cart-checkout {
    color: #fff;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 30px;
    background-color: #B76E79;
}

.medi-app-side-btn .cart-product-img {
    margin-right: 20px;
    height: 80px;
    width: 80px;
}

.medi-app-side-btn .cart-product-text {
    padding-top: 15px;
}

.medi-app-side-btn .cart-product-text h3 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 5px;
}

.medi-app-side-btn .cart-product-text h3 a {
    color: #223645;
}

.medi-app-side-btn .cart-product-text span {
    font-size: 14px;
    margin-right: 20px;
    display: inline-block;
}

.app-medi-side-bar-toggle {
    z-index: 1;
    width: 70px;
    height: 70px;
    right: 240px;
    bottom: -60px;
    cursor: pointer;
    line-height: 65px;
    text-align: center;
    position: absolute;
    border-radius: 10px;
    background-color: #fff;
    border: 2px solid #70808c;
}

.app-medi-side-bar-toggle:before {
    top: 8px;
    left: 8px;
    content: "";
    width: 50px;
    height: 50px;
    z-index: -1;
    position: absolute;
    border-radius: 10px;
    background-color: #B76E79;
}

.app-medi-side-bar-toggle i {
    color: #fff;
    font-size: 26px;
}

.sm-side_inner_content {
    top: 0px;
    bottom: 0;
    right: -420px;
    height: 110vh;
    z-index: 101;
    position: fixed;
    width: 400px;
    overflow-y: scroll;
    background-color: #fff;
    padding: 50px 50px;
    box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.19);
    transition: all 0.5s;
}

.sm-side_inner_content p {
    text-align: left;
}

.sm-side_inner_content .side_inner_logo {
    margin: 30px 0px;
}

.sm-side_inner_content .side_contact {
    margin-bottom: 30px;
}

.sm-side_inner_content .side_contact .social_widget {
    margin-bottom: 40px;
}

.sm-side_inner_content .side_contact .social_widget h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0px 10px 0px;
}

.sm-side_inner_content .side_contact .social_widget li {
    color: #fff;
    width: 30px;
    height: 30px;
    margin: 0px 3px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
    background-color: #70808c;
}

.sm-side_inner_content .side_contact .social_widget li i {
    font-size: 14px;
}

.sm-side_inner_content .side_contact .app-medi-sidebar-gallary {
    margin-bottom: 25px;
}

.sm-side_inner_content .side_contact .app-medi-sidebar-gallary h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0px 10px 0px;
}

.sm-side_inner_content .side_contact .app-medi-sidebar-gallary li {
    float: left;
    margin: 5px 3px;
}

.sm-side_inner_content .side_copywright {
    font-size: 14px;
}

.sm-side_inner_content .close_btn {
    top: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    position: absolute;
    background-color: #f5f5f5;
    transition: 0.3s all ease-in-out;
}

.sm-side_inner_content .close_btn i {
    font-size: 14px;
}

.sm-side_inner_content .close_btn:hover {
    background-color: #B76E79;
}

.sm-side_inner_content .close_btn:hover i {
    color: #fff;
}

.app-medi-sidebar-inner.wide_side_on .sm-side_inner_content {
    right: -15px;
    z-index: 99;
    transition: all 0.7s;
}

.app-medi-sidebar-inner .side_overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    z-index: 11;
    height: 110vh;
    visibility: hidden;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease-in-out;
    cursor: url(../img/cl.png), auto;
}

.body_overlay_on {
    overflow: hidden;
}

.app-medi-sidebar-inner.wide_side_on .side_overlay {
    opacity: 1;
    visibility: visible;
}

.app-medi-sidebar-gallary li {
    width: 80px;
    float: left;
    height: 80px;
    margin: 5px;
    overflow: hidden;
}

.medi-app-main-header .app-medi-mobile_menu_content {
    top: 0;
    bottom: 0;
    right: -350px;
    height: 100vh;
    z-index: 999;
    position: fixed;
    width: 280px;
    overflow-y: scroll;
    background-color: var(--ga-dark-graphite);
    padding: 40px 0px;
    box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.19);
    transition: all 0.5s ease-in;
}

.medi-app-main-header .app-medi-mobile_menu_content .app-medi-mobile-main-navigation {
    width: 100%;
}

.medi-app-main-header .app-medi-mobile_menu_content .app-medi-mobile-main-navigation .navbar-nav {
    width: 100%;
}

.medi-app-main-header .app-medi-mobile_menu_content .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
}

.medi-app-main-header .app-medi-mobile_menu_content .app-medi-mobile-main-navigation .navbar-nav li {
    width: 100%;
    display: block;
    transition: 0.3s all ease-in-out;
    border-bottom: 1px solid #ffffff1f;
}

.medi-app-main-header .app-medi-mobile_menu_content .app-medi-mobile-main-navigation .navbar-nav li:first-child {
    border-bottom: 1px solid #ffffff42;
}

.medi-app-main-header .app-medi-mobile_menu_content .app-medi-mobile-main-navigation .navbar-nav li a {
    color: #ffffffd4;
    padding: 0;
    width: 100%;
    display: block;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 30px;
    /* font-family: "Poppins"; */
    text-transform: uppercase;
}

.medi-app-main-header .app-medi-mobile_menu_content .m-brand-logo {
    width: 160px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.medi-app-main-header .app-medi-mobile_menu_wrap.mobile_menu_on .app-medi-mobile_menu_content {
    right: 0px;
    transition: all 0.7s ease-out;
}

.medi-app-main-header .mobile_menu_overlay {
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    right: 0%;
    height: 120vh;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease-in-out;
}

.medi-app-main-header .mobile_menu_overlay_on {
    overflow: hidden;
}

.medi-app-main-header .app-medi-mobile_menu_wrap.mobile_menu_on .mobile_menu_overlay {
    opacity: 1;
    visibility: visible;
}

.medi-app-main-header .app-medi-mobile_menu_button {
    right: 10px;
    top: 6px;
    z-index: 99;
    background: var(--ga-btn-bg);
    color: var(--ga-white);
    display: none;
    cursor: pointer;
    font-size: 17px;
    width: 40px;
    border-radius: 24px;
    line-height: 40px;
    position: absolute;
    text-align: center;
}

.medi-app-main-header .app-medi-mobile_menu .app-medi-mobile-main-navigation .navbar-nav li a:after {
    display: none;
}

.medi-app-main-header .app-medi-mobile_menu .app-medi-mobile-main-navigation .dropdown>.dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.medi-app-main-header .app-medi-mobile_menu .app-medi-mobile_menu_content .app-medi-mobile-main-navigation .navbar-nav .dropdown-menu {
    border: none;
    display: none;
    transition: none;
    box-shadow: none;
    padding: 5px 0px;
    width: 100%;
    background-color: transparent;
}

.medi-app-main-header .app-medi-mobile_menu .app-medi-mobile_menu_content .app-medi-mobile-main-navigation .navbar-nav .dropdown-menu li {
    border: none;
    padding: 0 20px;
    line-height: 1;
}

.medi-app-main-header .app-medi-mobile_menu .dropdown {
    position: relative;
}

.medi-app-main-header .app-medi-mobile_menu .dropdown .dropdown-btn {
    position: absolute;
    top: 6px;
    right: 10px;
    height: 30px;
    color: #fff4f4;
    line-height: 22px;
    padding: 5px 10px;
    /* border: 1px solid #480b86; */
}

.medi-app-main-header .app-medi-mobile_menu .dropdown:after {
    display: none;
}

.medi-app-main-header .app-medi-mobile_menu .app-medi-mobile_menu_close {
    color: #ffffff73;
    cursor: pointer;
    top: 15px;
    left: 15px;
    font-size: 20px;
    position: absolute;
}

.medi-app-sticky-on .medi-app-main-menu-wrap .site-brand-logo {
    padding: 0;
    overflow: hidden;
}

/*---------------------------------------------------- */
/*banner area*/
/*----------------------------------------------------*/
@keyframes icon-bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.medi-app-banner-content {
    padding: 105px 0px 100px;
}

.medi-app-banner-text {
    max-width: 580px;
}

.medi-app-banner-text h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #223645;
    padding-bottom: 15px;
}

.medi-app-banner-text p {
    font-size: 18px;
    padding-bottom: 45px;
}

.medi-app-banner-text a {
    color: #fff;
    line-height: 60px;
    text-align: center;
    display: inline-block;
    margin: 0px 40px 0px 0px;
}

.medi-app-banner-text a:hover {
    background-color: #F8EDEB;
    color: #000000;
}

.medi-app-banner-text a:nth-child(1) {
    width: 180px;
}

.medi-app-banner-text a:nth-child(2) {
    width: 215px;
}

.medi-app-banner-feature {
    position: absolute;
    right: 0;
    bottom: 0;
}

.medi-app-banner-feature-icon-text {
    width: 150px;
    height: 150px;
    padding-top: 30px;
    margin-left: 5px;
    position: relative;
    display: inline-block;
    background-color: #fff;
}

.medi-app-banner-feature-icon-text .medi-app-banner-feature-icon {
    line-height: 1;
}

.medi-app-banner-feature-icon-text .medi-app-banner-feature-icon svg {
    height: 60px;
    fill: #B76E79;
}

.medi-app-banner-feature-icon-text .medi-app-banner-feature-text span {
    font-size: 12px;
    font-weight: 700;
}

.medi-app-banner-feature-icon-text:before {
    top: 0;
    left: 0;
    right: 0;
    width: 0%;
    content: "";
    height: 3px;
    margin: 0 auto;
    position: absolute;
    background-color: #B76E79;
    transition: 0.4s all ease-in-out;
}

.medi-app-banner-feature-icon-text:hover:before {
    width: 100%;
}

.medi-app-banner-feature-icon-text:hover .medi-app-banner-feature-icon {
    animation: icon-bounce 0.8s ease-out infinite;
}

.app-medi-banner-cta {
    background-color: var(--arc-primary);
}

.app-medi-banner-cta-icon-text {
    padding: 25px 20px 30px;
    background-color: var(--arc-green);
}

.app-medi-banner-cta-icon-text:before {
    left: 0;
    top: -15px;
    width: 100%;
    content: "";
    height: 25px;
    position: absolute;
    border-radius: 10px 10px 0 0;
    background-color: var(--arc-green);
}

.app-medi-banner-cta-icon-text .app-medi-banner-cta-icon {
    margin-right: 10px;
}

.app-medi-banner-cta-icon-text .app-medi-banner-cta-icon svg {
    fill: #fff;
    height: 55px;
}

.app-medi-banner-cta-icon-text .app-medi-banner-cta-text h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.app-medi-banner-cta-icon-text .app-medi-banner-cta-text span {
    color: #fff;
    font-size: 16px;
}

.app-medi-banner-cta-slug {
    padding-top: 28px;
    padding-left: 50px;
}

.app-medi-banner-cta-slug p {
    color: #fff;
    float: left;
    max-width: 600px;
}

.app-medi-banner-cta-slug p a {
    font-size: 20px;
    font-weight: 600;
}

.app-medi-banner-cta-slug span {
    top: 3px;
    width: 50px;
    float: right;
    height: 50px;
    line-height: 50px;
    position: relative;
    color: var(--arc-primary-dark);
    text-align: center;
    background-color: #fff;
    border-radius: 30px;
}

.app-medi-banner-cta-slug span a {
    width: 100%;
    display: block;
}

/*---------------------------------------------------- */
/*About area*/
/*----------------------------------------------------*/
@keyframes shine {
    100% {
        left: 125%;
    }
}

.medi-app-about-section {
    padding: 80px 0px 100px;
}

.medi-app-hover-img {
    overflow: hidden;
}

.medi-app-hover-img:after {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    opacity: 0;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.medi-app-hover-img:hover:after {
    opacity: 1;
    animation: shine 0.75s;
}

.medi-app-about-img-wrap .medi-app-about-img2 {
    margin-left: 20px;
    transform: translateY(70px);
}

/* .medi-app-about-text-wrap {
  padding-top: 58px;
} */

.medi-app-about-exp {
    padding-top: 40px;
    margin-right: 50px;
    border-top: 1px solid var(--arc-green-light);
}

.medi-app-about-exp .app-medi-exp-title {
    font-size: 20px;
    font-weight: 700;
    max-width: 60px;
    color: #223645;
    display: inline-block;
    font-family: "Poppins";
}

.medi-app-about-exp h2 {
    line-height: 1;
    color: var(--arc-yellow);
    font-size: 7em;
    font-weight: 600;
    padding: 20px 0;
}

.medi-app-about-exp .app-medi-title2 {
    font-size: 22px;
    font-weight: 400;
    max-width: 130px;
    color: var(--arc-primary-dark);
    display: inline-block;
}

.medi-app-about-text h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--arc-primary-dark);
    padding-bottom: 20px;
}

.medi-app-about-text p {
    line-height: 1.75;
    margin-bottom: 10px;
}

.medi-app-about-text small {
    font-size: 17px;
    font-weight: 500;
    color: #b76e79;
    margin-bottom: 3px;
    display: block;
}

.medi-app-about-text .app-medi-about-list {
    padding-top: 20px;
}

.medi-app-about-text .app-medi-about-list li {
    width: 100%;
    float: left;
    padding-left: 15px;
    margin-bottom: 3px;
    position: relative;
}

.medi-app-about-text .app-medi-about-list li:before {
    top: 0;
    left: 0;
    content: "";
    font-weight: 900;
    position: absolute;
    color: var(--arc-blue-light);
    font-family: "Font Awesome 5 Free";
}

/*---------------------------------------------------- */
/*Service area*/
/*----------------------------------------------------*/
/* SECTION */
.kwc-services-premium {
    padding: 80px 0;
    background: var(--kwc-bg-light);
}

/* SECTION TITLE WRAPPER */
.kwc-section-title {
    margin-bottom: 30px;
    position: relative;
}

/* HEADING */
.kwc-section-title h2 {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 800;
}

/* SUBTEXT */
.kwc-section-title p {
    font-size: 16px;
    color: var(--kwc-text-dark);
    max-width: 600px;
    font-weight: 500;
    margin: 0 auto;
    line-height: 1.7;
}

/* DECORATIVE LINE */
.kwc-section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--kwc-aqua), var(--kwc-blue));
    display: block;
    margin: 18px auto 0;
    border-radius: 2px;
}

@media (max-width: 575px) {
    .kwc-section-title h2 {
        font-size: 26px;
    }

    .kwc-section-title p {
        font-size: 14px;
    }
}

/* CARD */
.kwc-service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

/* IMAGE */
.kwc-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* OVERLAY */
.kwc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.2));
}

/* CONTENT */
.kwc-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
}

/* ICON */
.kwc-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

/* TEXT */
.kwc-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.kwc-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* HOVER EFFECT */
.kwc-service-card:hover img {
    transform: scale(1.1);
}

.kwc-service-card:hover .kwc-overlay {
    background: linear-gradient(to top, rgba(10, 61, 98, 0.95), rgba(0, 180, 216, 0.4));
}

/*---------- Process section ---------- */
.arc-process-section {
    padding: 80px 0;
    background: #f8fbff;
}

.arc-section-title h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.arc-tag {
    color: var(--arc-primary);
    /* color: var(--arc-yellow); */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    padding-bottom: 5px;
    display: block;
}

.arc-process-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

/* connecting line */
/* .arc-process-wrapper::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, var(--arc-primary), var(--arc-accent));
  z-index: 0;
} */

.arc-process-step {
    text-align: center;
    width: 22%;
    position: relative;
    z-index: 1;
}

.arc-process-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--arc-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.arc-process-icon img {
    border-radius: 100%;
    padding: 10px;
}

/* Hover animation */
.arc-process-step:hover .arc-process-icon {
    transform: translateY(-8px) scale(1.1);
    color: #fff;
    background: linear-gradient(135deg, var(--arc-primary), var(--arc-accent));
}

.arc-process-step h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.arc-process-step p {
    font-size: 14px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .arc-process-wrapper {
        flex-direction: column;
    }

    .arc-process-wrapper::before {
        display: none;
    }

    .arc-process-step {
        width: 100%;
        margin-bottom: 30px;
    }
}

/*----------  TRUST section ---------- */
.arc-trust-section {
    padding: 90px 0;
    /* background: linear-gradient(135deg, #f5faff, #ffffff); */
}

.arc-trust-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.arc-trust-content p {
    color: var(--arc-text-dark);
    margin-bottom: 20px;
}

.arc-trust-list {
    list-style: none;
    padding: 0;
}

.arc-trust-list li {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.arc-trust-list i {
    color: var(--arc-primary);
    margin-right: 10px;
}

/* Stats Layout */
.arc-trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.arc-stat {
    position: relative;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
}

/* Background images */
.stat-bg-1 {
    background: url('../images/medical/stat1.jpg') center/cover no-repeat;
}

.stat-bg-2 {
    background: url('../images/medical/stat2.jpg') center/cover no-repeat;
}

.stat-bg-3 {
    background: url('../images/medical/stat3.jpg') center/cover no-repeat;
}

.stat-bg-4 {
    background: url('../images/medical/stat4.jpg') center/cover no-repeat;
}

/* Dark overlay */
.arc-stat-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 80, 0.55);
    top: 0;
    left: 0;
}

/* Content */
.arc-stat-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.arc-stat-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.arc-stat-content p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

/* Hover effect */
.arc-stat:hover {
    transform: scale(1.05);
}

.arc-stat:hover .arc-stat-overlay {
    background: linear-gradient(135deg, var(--arc-primary), var(--arc-accent));
    opacity: 0.85;
}

/* ------------------Why choose us-------------------- */

/* COMMON */
.arc-tag {
    display: inline-block;
    color: var(--arc-yellow);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    position: relative;
}

.arc-tag::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--arc-yellow);
    position: absolute;
    left: 0;
    bottom: -6px;
}

/* =========================
   SECTION 1 (INTRO)
========================= */
.arc-why-intro-section {
    padding: 90px 0;
    background: var(--arc-bg-light);
}

.arc-why-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--arc-dark);
    line-height: 1.3;
    margin: 15px 0 20px;
}

.arc-why-content p {
    color: var(--arc-text);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Highlight Box */
.arc-highlight-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 180, 216, 0.08);
    padding: 18px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 180, 216, 0.15);
    transition: all 0.3s ease;
}

.arc-highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.arc-highlight-box i,
.arc-highlight-box svg {
    font-size: 44px;
    color: var(--arc-accent);
    animation: floatIcon 3s ease-in-out infinite;
}

.arc-highlight-box strong {
    display: block;
    color: var(--arc-dark);
}

.arc-highlight-box span {
    font-size: 14px;
    color: #777;
}

/* Image */
.arc-why-image img {
    width: 100%;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s ease;
}

.arc-why-image img:hover {
    transform: scale(1.03);
}

/* =========================
   SECTION 2 (STRIP)
========================= */
.arc-why-strip {
    position: relative;
    overflow: hidden;
}

/* .arc-why-strip::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 10%, transparent 10%);
  background-size: 40px 40px;
  top: -50%;
  left: -50%;
  opacity: 0.3;
} */


/* GRID */
.arc-strip-grid {
    margin-top: 3em;
    padding: 60px 0;
    background: var(--arc-green);
    border-radius: 20px;
    padding: 25px 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* ITEM */
.arc-strip-item {
    text-align: center;
    color: #fff;
    padding: 25px 15px;
    /* border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff; */
    transition: all 0.3s ease;
}

.arc-strip-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.arc-strip-item i,
.arc-strip-item svg {
    font-size: 42px;
    margin-bottom: 12px;
    display: inline-block;
    color: var(--arc-white);
    fill: var(--arc-white);
    animation: pulseIcon 2.5s infinite;
}

.arc-strip-item h4 {
    font-size: 17px;
    margin-bottom: 7px;
    font-weight: 600;
    color: var(--arc-white);
}

.arc-strip-item p {
    font-size: 14px;
}

/* =========================
   SECTION 3 (TIMELINE)
========================= */
.arc-why-timeline {
    position: relative;
    padding-left: 70px;
}

/* Vertical line */
.arc-why-line {
    position: absolute;
    left: 30px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #2b4f81, #4caf50);
}

/* Item */
.arc-why-item-pro {
    position: relative;
    margin-bottom: 20px;
}

/* Icon */
.arc-why-item-pro .icon {
    position: absolute;
    left: -12.5%;
    top: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #e6f0fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b4f81;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Content */
.arc-why-item-pro .content {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Text */
.arc-why-item-pro h5 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--arc-primary-dark);
}

.arc-why-item-pro p {
    margin: 0;
    font-size: 14px;
}

/* Image */
.arc-why-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Mobile Fix */
@media (max-width: 767px) {
    .arc-why-timeline {
        padding-left: 50px;
    }

    .arc-why-line {
        left: 20px;
    }

    .arc-why-item-pro .icon {
        left: -10px;
    }
}


/*---------------------------------------------------- */
/*CTA area*/
/*----------------------------------------------------*/
.medi-app-cta-section {
    padding: 60px 0px;
}

.medi-app-cta-section .medi-app-background_overlay {
    background-color: var(--arc-heading);
    opacity: .8;
}

.medi-app-cta-text {
    padding-top: 40px;
}

.medi-app-cta-text .medi-app-section-title {
    padding-bottom: 40px;
}

.medi-app-cta-text .medi-app-section-title .title-tag,
.medi-app-cta-text .medi-app-section-title h2,
.medi-app-cta-text .medi-app-section-title p {
    color: #fff;
}

.medi-app-cta-text .medi-app-section-title h2 {
    font-size: 38px;
    padding-bottom: 20px;
    font-weight: 700;
}

.medi-app-cta-text .medi-app-section-title p {
    line-height: 1.75;
    max-width: 520px;
}

.medi-app-cta-text .medi-app-cta-list li {
    width: 50%;
    float: left;
    color: #fff;
    font-weight: 600;
    padding-left: 60px;
    margin-bottom: 30px;
    position: relative;
}

.medi-app-cta-text .medi-app-cta-list li:before {
    top: -8px;
    left: 0;
    width: 40px;
    content: "";
    height: 40px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid #ffffffbd;
}

.medi-app-cta-text .medi-app-cta-list li:after {
    top: -1px;
    left: 13px;
    content: "";
    font-weight: 900;
    position: absolute;
    color: #ffffffbd;
    font-family: "Font Awesome 7 Free";
}

.medi-app-cta-form-wrap {
    padding: 50px;
    background-color: #fff;
}

.medi-app-cta-form-wrap h3 {
    font-weight: 600;
    font-size: 24px;
    color: #223645;
    padding-bottom: 15px;
}

.medi-app-cta-form-wrap p {
    /* font-size: 14px; */
    /* max-width: 415px; */
    padding-bottom: 25px;
}

.app-medi-cta-form-input {
    flex-wrap: wrap;
    margin: 0px -10px;
}

.app-medi-cta-input,
.app-medi-cta-input2 {
    padding: 0px 10px;
    margin-bottom: 20px;
}

.app-medi-cta-input input,
.app-medi-cta-input select,
.app-medi-cta-input2 input,
.app-medi-cta-input2 select {
    width: 100%;
    height: 58px;
    font-size: 14px;
    padding-left: 45px;
    border: 1px solid #dcdcdc;
}

.app-medi-cta-input .icon-bg,
.app-medi-cta-input2 .icon-bg {
    top: 19px;
    left: 30px;
    font-size: 14px;
    color: var(--arc-blue-light)
}

.app-medi-cta-input2 input {
    width: 143px;
}

.app-medi-cta-section-2 {
    padding: 50px 0px;
    background-color: #F8EDEB;
}

.app-medi-cta-call .app-medi-cta-icon {
    margin-right: 20px;
}

.app-medi-cta-call .app-medi-cta-icon-2 {
    margin-left: 5px;
}

.app-medi-cta-call .app-medi-cta-text-2 {
    overflow: hidden;
    padding-top: 12px;
    display: inline-block;
}

.app-medi-cta-call .app-medi-cta-text-2 span b {
    color: #B76E79;
}

.app-medi-cta-call .app-medi-cta-text-2 h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 5px;
}

.app-medi-cta-call .app-medi-cta-text-2 h4 span {
    color: #B76E79;
}

.app-medi-cta-btn a {
    color: #fff;
    height: 60px;
    width: 200px;
    margin: 0 auto;
    font-weight: 700;
    line-height: 60px;
    display: inline-block;
    background-color: #B76E79;
}

/*---------------------------------------------------- */
/*Team area*/
/*----------------------------------------------------*/
.app-medi-team-section {
    padding: 60px 0px;
}

.app-medi-team-innerbox .app-medi-team-img {
    overflow: hidden;
}

.app-medi-team-innerbox .app-medi-team-img img {
    transition: 0.5s all ease-in-out;
}

.app-medi-team-innerbox .app-medi-team-img:before {
    top: -35px;
    content: "";
    z-index: 1;
    width: 100px;
    height: 100px;
    right: -100px;
    position: absolute;
    border-radius: 100%;
    background-color: var(--arc-primary);
    transition: 0.4s all ease-in-out;
    transition-delay: 0.2s;
}

.app-medi-team-innerbox .app-medi-team-icon {
    top: 25px;
    opacity: 0;
    right: 15px;
    z-index: 2;
    visibility: hidden;
    position: absolute;
    transition: 0.4s all ease-in-out;
    transition-delay: 0.4s;
}

.app-medi-team-innerbox .app-medi-team-icon svg {
    fill: #fff;
    height: 25px;
}

.app-medi-team-innerbox .app-medi-team-social {
    left: 0;
    right: 0;
    height: 30px;
    bottom: -30px;
    margin: 0 auto;
    max-width: 165px;
    line-height: 30px;
    position: absolute;
    background-color: var(--arc-primary);
    transition: 0.3s all ease-in-out;
}

.app-medi-team-innerbox .app-medi-team-social a {
    color: #fff;
    font-size: 14px;
    margin: 0px 5px;
}

.app-medi-team-innerbox .app-medi-text-text {
    padding: 25px 35px;
    border: 2px solid #f7f7f7;
    transition: 0.3s all ease-in-out;
}

.app-medi-team-innerbox .app-medi-text-text span {
    font-size: 14px;
    font-weight: 700;
    color: var(--arc-blue-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.app-medi-team-innerbox .app-medi-text-text h3 {
    font-size: 19px;
    font-weight: 700;
    padding-top: 5px;
    color: #223645;
}

.app-medi-team-innerbox:hover .app-medi-team-social {
    bottom: 0px;
}

.app-medi-team-innerbox:hover .app-medi-team-img:before {
    right: -35px;
}

.app-medi-team-innerbox:hover .app-medi-team-icon {
    top: 15px;
    opacity: 1;
    visibility: visible;
}

.app-medi-team-innerbox:hover .app-medi-text-text {
    box-shadow: rgba(0, 0, 0, 0.1) 0px -30px 100px 0px;
}

.app-medi-team-innerbox:hover .app-medi-team-img img {
    transform: scale(1.2);
}

/*---------------------------------------------------- */
/*Process area*/
/*----------------------------------------------------*/
.app-medi-process-section {
    padding: 120px 0px;
    background-color: #f1f7fb;
}

.app-medi-process-img {
    z-index: 1;
    padding-top: 80px;
}

.app-medi-process-img:before {
    top: 0px;
    z-index: -1;
    content: "";
    left: -100px;
    width: 350px;
    height: 675px;
    position: absolute;
    background-color: #fff;
}

.medi-app-process-step-item {
    z-index: 1;
    padding-bottom: 30px;
}

.medi-app-process-step-item .medi-app-process-number {
    width: 60px;
    color: #fff;
    height: 60px;
    font-size: 14px;
    display: table;
    margin-top: 20px;
    line-height: 60px;
    font-weight: 700;
    margin-right: 30px;
    border-radius: 100%;
    font-family: "Poppins";
    background-color: #B76E79;
}

.medi-app-process-step-item .medi-app-process-step-text {
    max-width: 470px;
    padding: 35px 40px;
    background-color: #fff;
}

.medi-app-process-step-item .medi-app-process-step-text:before {
    width: 0;
    top: 35px;
    height: 0;
    content: "";
    left: -15px;
    position: absolute;
    border-top: 15px solid transparent;
    border-right: 15px solid #fff;
    border-bottom: 15px solid transparent;
}

.medi-app-process-step-item .medi-app-process-step-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #223645;
    padding-bottom: 10px;
}

.medi-app-process-step-item:before,
.medi-app-process-step-item:after {
    top: 55px;
    left: 30px;
    width: 2px;
    z-index: -2;
    content: "";
    height: 100%;
    position: absolute;
    background-color: #e2eaef;
    transition: 0.4s all ease-in-out;
}

.medi-app-process-step-item:after {
    bottom: 0;
    height: 0;
    z-index: -1;
    background-color: #B76E79;
}

.medi-app-process-step-item:last-child {
    padding-bottom: 0;
}

.medi-app-process-step-item:last-child:before,
.medi-app-process-step-item:last-child:after {
    display: none;
}

.medi-app-process-step-item:hover:after {
    height: 100%;
    bottom: auto;
}

/*---------------------------------------------------- */
/*Feature area*/
/*----------------------------------------------------*/
.app-medi-feature-section {
    background-color: #f5f5f5;
}

.app-medi-feature-img-text {
    margin: 0 auto;
    max-width: 640px;
}

.app-medi-feature-img-text:before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    background-color: rgba(34, 53, 68, 0.75);
    position: absolute;
}

.app-medi-feature-img-text .app-medi-feature-icon-text {
    top: 100px;
    left: 80px;
    position: absolute;
}

.app-medi-feature-img-text .app-medi-feature-icon-text .app-medi-feature-icon {
    line-height: 1;
    margin-bottom: 30px;
}

.app-medi-feature-img-text .app-medi-feature-icon-text .app-medi-feature-icon svg {
    height: 60px;
    fill: #B76E79;
}

.app-medi-feature-img-text .app-medi-feature-icon-text .app-medi-text h3 {
    color: #fff;
    font-size: 36px;
    max-width: 350px;
    font-weight: 700;
    line-height: 1.278;
    padding-bottom: 15px;
}

.app-medi-feature-img-text .app-medi-feature-icon-text .app-medi-text span {
    color: #adbbc5;
    font-size: 17px;
}

.app-medi-feature-img-text .app-medi-feature-icon-text .app-medi-text .app-medi-feature-more-btn {
    bottom: 0;
    right: -95px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: absolute;
    border-radius: 100%;
    display: inline-block;
    background-color: #fff;
}

/*---------------------------------------------------- */
/*Testimonial area*/
/*----------------------------------------------------*/
.app-medi-testimonial-section {
    padding: 0em 0px 15em;
}

.app-medi-testimonial-slider {
    bottom: -130px;
    padding: 45px;
    right: 30px;
    max-width: 385px;
    position: absolute;
    background-color: var(--arc-primary-dark);
}

.app-medi-testimonial-slider .owl-nav {
    display: none;
}

.app-medi-testimonial-slider .app-medi-testimonial-quote p {
    font-size: 15px;
    color: var(--arc-white);
    font-style: italic;
}

.app-medi-testimonial-slider .app-medi-testimonial-quote .app-medi-testimonial-author {
    margin-top: 25px;
}

.app-medi-testimonial-slider .app-medi-testimonial-quote .app-medi-testimonial-author .app-medi-test-author-img {
    width: 47px;
    height: 47px;
    overflow: hidden;
    margin-right: 15px;
    border-radius: 100%;
}

.app-medi-testimonial-slider .app-medi-testimonial-quote .app-medi-testimonial-author .app-medi-test-author-text {
    color: #fff;
}

.app-medi-testimonial-slider .app-medi-testimonial-quote .app-medi-testimonial-author .app-medi-test-author-text h4 {
    font-size: 20px;
    font-weight: 600;
}

.app-medi-testimonial-slider .app-medi-testimonial-quote .app-medi-testimonial-author .app-medi-test-author-text span {
    font-size: 14px;
}

.app-medi-testimonial-slider .app-medi-testimonial-quote .app-medi-icon-bg {
    right: 45px;
    bottom: -20px;
    z-index: -1;
    position: absolute;
    line-height: 1;
}

.app-medi-testimonial-slider .app-medi-testimonial-quote .app-medi-icon-bg svg {
    fill: #ffffff0a;
    height: 160px;
}

.app-medi-testimonial-text {
    padding-left: 1em;
}

.app-medi-testimonial-text .medi-app-section-title {
    padding-bottom: 0;
}

.app-medi-testimonial-text-details p {
    line-height: 1.75;
    padding-bottom: 15px;
}

.app-medi-testimonial-signature {
    margin-top: 15px;
}

/*---------------------------------------------------- */
/*blog area*/
/*----------------------------------------------------*/
.medi-app-blog-section {
    padding: 60px 0px 120px;
    background-color: #f1f7fb;
}

.medi-app-blog-img-text .medi-app-blog-img {
    overflow: hidden;
}

.medi-app-blog-img-text .medi-app-blog-img img {
    transform: scale(1.2);
    transition: 0.4s all ease-in-out;
}

.medi-app-blog-img-text .medi-app-blog-cat {
    right: 0;
    bottom: 0;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    padding: 5px 20px;
    background-color: var(--arc-blue-light);
}

.medi-app-blog-img-text .medi-app-blog-text {
    padding: 40px 35px;
    background-color: #fff;
    border: 2px solid #e2e7eb;
    transition: 0.4s all ease-in-out;
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}

.medi-app-blog-img-text .medi-app-blog-text .medi-app-blog-meta {
    margin-bottom: 8px;
}

.medi-app-blog-img-text .medi-app-blog-text .medi-app-blog-meta a {
    font-size: 14px;
    margin-right: 40px;
    position: relative;
}

.medi-app-blog-img-text .medi-app-blog-text .medi-app-blog-meta a:after {
    top: 2px;
    right: -22px;
    width: 2px;
    content: "";
    height: 12px;
    position: absolute;
    background-color: #dde6ec;
}

.medi-app-blog-img-text .medi-app-blog-text .medi-app-blog-meta a:last-child:after {
    display: none;
}

.medi-app-blog-img-text .medi-app-blog-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #223645;
    padding-bottom: 15px;
}

.medi-app-blog-img-text .medi-app-blog-text .medi-app-blog-more {
    color: #98a6b1;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.medi-app-blog-img-text .medi-app-blog-text .medi-app-blog-more:after {
    left: 0;
    bottom: 0;
    height: 2px;
    content: "";
    width: 100%;
    position: absolute;
    background-color: #98a6b1;
}

.medi-app-blog-img-text:hover .medi-app-blog-text {
    box-shadow: none;
    border: 2px solid #fff;
}

.medi-app-blog-img-text:hover .medi-app-blog-img img {
    transform: scale(1);
}

.app-medi-partner-section {
    padding: 75px 0px;
    background-color: #B76E79;
}

.app-medi-partner-slider .owl-nav {
    display: none;
}

.app-medi-partner-slider .app-medi-partner-img img {
    transition: 0.4s all ease-in-out;
    filter: grayscale(1);
}

.app-medi-partner-slider .app-medi-partner-img:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

/*---------------------------------------------------- */
/*Footer area*/
/*----------------------------------------------------*/

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    color: #fff !important;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-glass-strip .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.app-medi-footer {
    padding-top: 95px;
    border-top: 2px solid #fff;
}

.app-medi-footer .medi-app-background_overlay {
    background-color: rgb(16 30 41 / 86%);
}

.app-medi-footer .medi-app-footer-widget-content {
    padding-bottom: 100px;
}

.app-medi-footer-widget .medi-app-widget-title {
    color: #fff;
    font-size: 21px;
    font-weight: 300;
    padding-bottom: 30px;
}

.app-medi-footer-widget .app-medi-logo-widget {
    max-width: 450px;
}

.app-medi-footer-widget .app-medi-logo-widget .medi-app-footer-logo {
    margin-bottom: 30px;
    display: inline-block;
}

.app-medi-footer-widget .app-medi-logo-widget p {
    color: #b2c1cc;
    padding-bottom: 20px;
}

.app-medi-footer-widget .app-medi-logo-widget .app-medi-footer-social {
    margin-top: 15px;
}

.app-medi-footer-widget .app-medi-logo-widget .app-medi-footer-social a {
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    margin-right: 8px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    border: 1px solid #727b81;
    transition: 0.4s all ease-in-out;
}

.app-medi-footer-widget .app-medi-logo-widget .app-medi-footer-social a:hover {
    background-color: #B76E79;
    border: 1px solid #B76E79;
}

.app-medi-footer-widget .app-medi-menu-widget li {
    width: 50%;
    float: left;
    margin-bottom: 15px;
}

.app-medi-footer-widget .app-medi-menu-widget li a {
    font-size: 15px;
    color: #ececec;
}

.app-medi-footer-widget .app-medi-menu-widget li a:hover {
    color: #F28B82;
}

.app-medi-footer-widget .app-medi-contact-widget {
    background-color: #fff;
    padding: 50px 60px 50px 50px;
    border-bottom: 5px solid #B76E79;
}

.app-medi-footer-widget .app-medi-contact-widget .contact-widget-wrap {
    margin-bottom: 20px;
}

.app-medi-footer-widget .app-medi-contact-widget .contact-widget-wrap .cw-widget-text {
    padding-top: 5px;
}

.app-medi-footer-widget .app-medi-contact-widget .contact-widget-wrap .cw-widget-text h3 {
    color: #033333;
    font-size: 22px;
    font-weight: 600;
}

.app-medi-footer-widget .app-medi-contact-widget .contact-widget-wrap .cw-widget-text span {
    color: #777777;
    font-size: 14px;
}

.app-medi-footer-widget .app-medi-contact-widget .cw-widget-btn {
    margin: 0 auto;
    line-height: 60px;
}

.app-medi-footer-widget .app-medi-contact-widget .cw-widget-btn a {
    width: 100%;
    display: block;
}

.app-medi-footer-copyright {
    padding: 28px 0px;
    background-color: #1a2a36;
}

.app-medi-copyright-text {
    color: #a6b5c0;
}

.app-medi-copyright-text a {
    font-weight: 700;
}

.app-medi-footer-menu {
    text-align: right;
}

.app-medi-footer-menu li {
    margin-left: 40px;
}

.app-medi-footer-menu li a {
    color: #a6b5c0;
}

/* list css */
.list-arrow {
    margin: 0;
    padding: 0;
}

.list-arrow li {
    font-size: 15px;
    font-weight: 600;
    padding-left: 35px;
    color: #223645;
    position: relative;
    margin-bottom: 12px;
    list-style: none;
}

list-arrow li:last-child {
    margin-bottom: 0;
}

.list-arrow li:before {
    top: 0;
    left: 0;
    content: "";
    font-weight: 900;
    position: absolute;
    color: #B76E79;
    font-family: "Font Awesome 7 Free";
}

/*---------------------------------------------------- */
/*Responsive area*/
/*----------------------------------------------------*/
@media screen and (max-width: 1690px) {
    .medi-app-main-navigation li a {
        padding: 35px 15px 33px;
    }
}

@media screen and (max-width: 1280px) {
    .medi-app-main-menu-wrap .site-brand-logo {
        margin-top: 10px;
        width: 200px;
        height: 43px !important;
        background-color: #fff;
    }

    .medi-app-main-navigation li a {
        padding: 27px 15px 25px;
    }

    .medi-app-side-btn button {
        font-size: 15px;
        padding: 23px 15px 25px;
    }

    .medi-app-side-btn .shopping-cart {
        right: 0;
    }

    .medi-app-side-btn .shopping-cart.cart-show {
        top: 65px;
    }
}

@media screen and (max-width: 1199px) {
    .medi-app-main-navigation {
        display: none;
    }

    .medi-app-main-menu-wrap .site-brand-logo {
        left: 0;
        right: auto;
        height: 70px;
    }

    .medi-app-side-toggle {
        display: none;
    }

    .cart-open-btn {
        border-right: 1px solid #f1f1f1 !important;
    }

    .medi-app-side-option {
        padding-right: 50px;
    }

    .medi-app-main-header .app-medi-mobile_menu_button {
        display: block;
    }
}

@media screen and (max-width: 1024px) {
    .app-medi-banner-cta-icon-text:before {
        display: none;
    }

    .app-medi-banner-cta-icon-text {
        padding: 15px;
    }

    .app-medi-banner-cta-slug {
        padding-top: 23px;
        padding-left: 0px;
    }

    .medi-app-about-text h2 {
        font-size: 30px;
    }

    .app-medi-cta-input input,
    .app-medi-cta-input select,
    .app-medi-cta-input2 input,
    .app-medi-cta-input2 select,
    .app-medi-cta-input,
    .app-medi-cta-input2 {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {

    .medi-app-about-img-wrap,
    .medi-app-about-text-wrap,
    .app-medi-process-text,
    .app-medi-testimonial-text {
        margin: 0 auto;
        max-width: 570px;
    }

    .app-medi-team-innerbox {
        margin: 0 auto;
        max-width: 270px;
        margin-bottom: 30px;
    }

    .app-medi-process-img {
        text-align: center;
        margin-bottom: 35px;
    }

    .app-medi-cta-call {
        text-align: center;
        margin-bottom: 20px;
    }

    .app-medi-cta-call .app-medi-cta-icon,
    .app-medi-cta-call .app-medi-cta-icon-2 {
        float: none !important;
    }

    .app-medi-cta-call .app-medi-cta-text-2 {
        text-align: center !important;
        margin-top: 20px;
    }

    .app-medi-testimonial-slider {
        margin: 0 auto;
        position: static;
        margin-top: 30px;
    }

    .app-medi-testimonial-slider-img-wrap {
        text-align: center;
    }

    .medi-app-blog-img-text {
        margin: 0 auto;
        max-width: 370px;
        margin-bottom: 30px;
    }

    .app-medi-footer-widget {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 850px) {
    .medi-app-header-top {
        padding: 6px 15px 8px;
    }

    .medi-app-header-top .medi-app-header-top-social {
        padding-right: 10px;
    }

    .medi-app-header-top .medi-app-header-top-contact a {
        margin-right: 15px;
    }

    .medi-app-header-top .medi-app-header-top-language {
        display: none;
    }

    .medi-app-header-top .medi-app-header-top-contact {
        padding-right: 0;
    }

    .app-medi-footer .medi-app-footer-widget-content {
        padding-bottom: 40px;
    }

    .app-medi-footer-widget .app-medi-contact-widget .contact-widget-wrap .cw-widget-text {
        text-align: left !important;
    }

    .cw-widget-icon {
        margin-right: 15px;
    }

    .app-medi-footer {
        padding-top: 45px;
    }
}

@media screen and (max-width: 850px) {
    .medi-app-banner-text h1 {
        font-size: 60px;
    }
}

@media screen and (max-width: 650px) {
    .medi-app-header-top .medi-app-header-top-contact {
        display: none;
    }

    .medi-app-banner-feature {
        position: static;
        padding-top: 50px;
    }

    .medi-app-banner-feature-icon-text {
        width: 100px;
        height: 100px;
        padding-top: 20px;
    }

    .medi-app-banner-feature-icon-text .medi-app-banner-feature-icon svg {
        height: 40px;
    }

    .medi-app-banner-content {
        padding: 100px 0px 100px;
    }

    .medi-app-banner-text a:nth-child(1) {
        width: 140px;
    }

    .medi-app-banner-text a:nth-child(2) {
        width: 195px;
    }

    .medi-app-section-title h2 {
        font-size: 40px;
    }

    .medi-app-section-title {
        padding-bottom: 30px;
    }

    .medi-app-section-title .title-watermark {
        top: -25px;
        font-size: 125px;
    }

    .medi-app-service-section {
        padding: 60px 0px;
    }

    .medi-app-cta-section {
        padding: 10px 0px;
    }

    .app-medi-team-section {
        padding: 60px 0px;
    }

    .app-medi-process-section {
        padding: 60px 0px;
    }

    .app-medi-cta-section-2 {
        padding: 50px 0px;
    }

    .app-medi-feature-img-text .app-medi-feature-icon-text {
        top: 35px;
        left: 35px;
    }

    .app-medi-testimonial-section {
        padding: 60px 0px 60px;
    }

    .medi-app-blog-section {
        padding: 60px 0px;
    }

    .app-medi-footer-menu {
        float: left;
        margin-top: 10px;
    }

    .app-medi-footer-menu li {
        margin-left: 0px;
        margin-right: 10px;
    }

    .bis-contact-page-content {
        padding: 35px 10px;
    }

    .bis-faq-contact-info .info-item-area .inner-text {
        word-break: break-word;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .medi-app-banner-text h1 {
        font-size: 45px;
    }

    .medi-app-banner-text a {
        height: 50px;
        font-size: 14px;
        margin-top: 20px;
        line-height: 50px;
        margin: 0px 25px 0px 0px;
    }

    .medi-app-about-section {
        padding: 60px 0px;
    }

    .app-medi-footer-widget .app-medi-contact-widget .cw-widget-btn span,
    .medi-app-cta-form-wrap button span,
    .medi-app-banner-text a span {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .medi-app-banner-feature-icon-text {
        margin-bottom: 10px;
    }

    .medi-app-banner-text a:nth-child(1) {
        width: 120px;
    }

    .medi-app-banner-text a:nth-child(2) {
        width: 155px;
    }

    .medi-app-banner-text p {
        padding-bottom: 25px;
    }

    .medi-app-about-text-wrap {
        flex-wrap: wrap;
    }

    .medi-app-about-exp {
        margin-bottom: 20px;
    }

    .medi-app-cta-text .medi-app-section-title h2 {
        font-size: 30px;
    }

    .medi-app-cta-text .medi-app-cta-list li {
        width: 100%;
    }

    .medi-app-cta-form-wrap {
        padding: 25px;
    }

    .app-medi-footer-widget .app-medi-contact-widget .cw-widget-btn,
    .medi-app-cta-form-wrap button,
    .medi-app-banner-text a {
        height: 50px;
        line-height: 50px;
    }

    .app-medi-process-img:before {
        display: none;
    }

    .app-medi-process-img {
        padding-top: 0;
    }

    .app-medi-feature-img-text .app-medi-feature-icon-text .app-medi-text h3 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .app-medi-feature-img-text .app-medi-feature-icon-text .app-medi-feature-icon svg {
        height: 30px;
    }

    .app-medi-feature-img-text .app-medi-feature-icon-text .app-medi-feature-icon {
        margin-bottom: 15px;
    }

    .medi-app-section-title h2 {
        font-size: 34px;
    }

    .medi-app-side-btn .shopping-cart.cart-show {
        top: 60px;
    }

    .medi-app-header-top .medi-app-header-top-social a {
        font-size: 14px;
        margin-right: 10px;
    }

    .medi-app-side-btn .cart-product-text h3 {
        font-size: 16px;
    }

    .app-medi-search-body .outer-close {
        top: 15px;
        right: 15px;
    }

    .app-medi-search-body .app-medi-search-form button {
        width: 70px;
    }
}

@media screen and (max-width: 380px) {
    .medi-app-banner-text h1 {
        font-size: 40px;
    }

    .medi-app-section-title .title-watermark {
        top: 0px;
        font-size: 75px;
    }

    .app-medi-cta-btn a {
        width: 160px;
    }

    .app-medi-footer-widget .app-medi-contact-widget .contact-widget-wrap .cw-widget-text h3 {
        font-size: 20px;
    }

    .app-medi-footer-widget .app-medi-contact-widget {
        padding: 52px 30px 50px 30px;
    }

    .medi-app-about-img-wrap .medi-app-about-img2 {
        transform: translateY(27px);
    }
}

@media screen and (max-width: 320px) {
    .medi-app-side-btn .shopping-cart {
        width: 310px;
    }

    .medi-app-about-img-wrap .medi-app-about-img2 {
        transform: translateY(27px);
    }
}

/*---------------------------------------------------- */

/*** Start Of blog Section ***/
.saasio-breadcurmb-section {
    background-color: #b76e79;
    padding: 90px 0px 50px;
    background-image: url(../images/medical/banner/f-bg.jpg);
    position: relative;
    z-index: 1;
}

.overlay-head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-size: cover;
    background: radial-gradient(#ffffff3d 15%, transparent 16%), linear-gradient(45deg, transparent 49%, #ffffff3d 49% 51%, transparent 51%), linear-gradient(-45deg, transparent 49%, #ffffff3d 49% 51%, transparent 51%);
    background-size: 2em 2em;
    background-color: #101010;
    opacity: 0.2;
}

.breadcurmb-title h2 {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 36px;
    padding-bottom: 20px;
}

.saasio-page-breadcurmb li a {
    color: #fff;
    margin: 0px 10px;
    position: relative;
}

.saasio-page-breadcurmb li a:after {
    top: 2px;
    right: -17px;
    content: '\f054';
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
}

.saasio-page-breadcurmb li:last-child a::after {
    display: none;
}