:root {
            --primary-red: #eb1c24;
            --deep-black: #000000;
            --text-body: #000;
            --light-bg: #f8f9fa;
            --white: #ffffff;
        }
::selection {
  background: var(--primary-red);
  color: #ffffff;
}

::-moz-selection {
  background: var(--primary-red);
  color: #ffffff;
}
html {
    scroll-behavior: smooth;
}
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-body);
            background-color: var(--white);
            margin: 0;
            /* background: rgb(250 236 255 / 44%); */
        }

        /* --- Header --- */
        header {
            /* background: #000000; */
            padding: 15px 0;
            /* border-bottom: 1px solid #eee; */
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        .logo-placeholder {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--deep-black);
            text-decoration: none;
            display: flex;
            align-items: center;
            outline: none;
        }
        .logo-placeholder span { color: var(--primary-red); margin-left: 5px; }
        
        .nav-right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 25px;
        }
        .phone-num {
                color: #000;
                font-weight: 500;
                text-decoration: none;
                font-size: 1.4rem;
        }
        .btn-apply {
        background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    font-size: 18px;
    line-height: 30px;
    text-decoration: none;
    cursor: pointer;
    }
        .btn-apply:hover {
            /* background-color: var(--primary-red); */
            transform: translateY(-2px);
            color: #fff;
        }
    
.theme-btn {        background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    font-size: 18px;
    -webkit-appearance: button;
    text-decoration: none;}
.theme-btn:hover {
    transform: scale(1.02);
}
.theme-btn i {margin-right: 12px;
    font-size: 20px;}
.theme-btn-anim-blk {overflow: hidden;
            z-index: 1;    position: relative;}
.theme-btn-anim-blk::before {
    content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: var(--deep-black);
            transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
            z-index: -1;
}
.theme-btn-anim-blk:hover::before { left: 0; }
.theme-btn-anim-red {overflow: hidden;
            z-index: 1;    position: relative;    -webkit-appearance: button;}
.theme-btn-anim-red::before {
    content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: #000;
            transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
            z-index: -1;
}
.theme-btn-anim-red:hover::before { left: 0; }
        /* --- Hero Section --- */
        .hero {
            position: relative;
            min-height: 100dvh;
            padding-top: 0px;
            padding-bottom: 80px;
            /*background:linear-gradient(rgb(36 35 35), rgb(0 0 0 / 85%)), url(https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2000);*/
            background: linear-gradient(rgb(255 255 255 / 97%), rgb(255 255 255 / 94%)), url(../images/h12.webp);
            background-size: cover;
            background-position: center;
            /* background: #000; */
            display: flex;
            align-items: center;
        }
    
.hero-title-tt {    padding-top: 60px;} 
.form-bonwic { padding-top: 120px;}
        /* Left Side Content */
        .hero-label {
            display: inline-flex;
            align-items: center;
            background: var(--white);
            padding: 8px 15px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 25px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .hero-label i { color: var(--primary-red); margin-right: 10px; font-size: 1.2rem; }
        
        .hero-title {
            font-size: clamp(2.5rem, 4vw, 3.6rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 25px;
        }
        .hero-title span.highlight-red { color: var(--primary-red); }
        .hero-title span.highlight-blue { color: #0066cc; } /* Kept from ref or can change to red */

        .hero-subtitle {
            font-size: 1.2rem;
            color: #000;
            border-left: 4px solid var(--primary-red);
            padding-left: 20px;
            margin-bottom: 35px;
            max-width: 650px;
            line-height: 1.6;
        }

        .hero-tagline {
            font-weight: 500;
            color: var(--deep-black);
            max-width: 500px;
        }

        /* Right Side Form */
        .form-card {
                background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0px 6px rgb(170 167 167 / 88%);
    border: 1px solid #eee;
        }
        .form-card h3 {    font-weight: 600;
    font-size: 22px;}
        .form-card p {
                margin-bottom: 15px;
    font-size: 14px;
        }
        .form-label {
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--deep-black);
        }
        .form-control, .form-select {
            border: 1px solid #4d4d4d;
            padding: 12px 15px;
            border-radius: 8px;
            font-size: 0.95rem;
            background-color: #fff;
        }
.form-card .btn-submit { border-radius: 8px;}
        .form-control:focus, .form-select:focus {
            border-color: var(--deep-black);
            box-shadow: none;
            background-color: #fff;
        }
        .form-check-label { font-size: 0.8rem; color: #666; }
        .form-check-input:checked { background-color: var(--primary-red); border-color: var(--primary-red); }
        .form-card input::placeholder, .form-card textarea::placeholder { color: #ccc; }
        .btn-submit {
                background-color: var(--primary-red);
    color: var(--white);
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    /* text-transform: uppercase; */
    border: none;
    transition: 0.3s;
    font-size: 18px;
        }
        .btn-submit:hover {
            /* background-color: var(--deep-black); */
            transform: scale(1.02);
        }

        /* Smooth Scroll Helper */
        html.lenis { height: auto; }
        .lenis.lenis-smooth { scroll-behavior: auto; }
.listing-ul {
        list-style: none;
    padding-left: 0;
    display: flex;
    gap: 20px;
}
.listing-ul li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #000;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.listing-ul li i {
    color: var(--primary-red);
    margin-right: 10px;
}
.listing-ul li svg {
        color: var(--primary-red) !important;
    margin-right: 7px;
    width: 18px;
    height: 18px;
    line-height: 18px;
}
.mtbadge {
     border-radius: 8px;
     font-weight: 500;
     font-size: 16px;
     display: inline-flex;
     align-items: center;
     padding: 0 !important;
     /*color: #ffffff;*/
     margin-bottom: 20px;
}
.mtbadge ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    gap: 5px;
    margin-right: 10px;
}
.mtbadge i {
        color: var(--primary-red);
}
#typewriter {
    display: inline-block;
    min-height: 1em; /* Prevents height collapse while empty */
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    font-weight: 300;
    color: var(--primary-red);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

section {padding: 120px 0;}
.section-title {     font-weight: 600;
    color: var(--deep-black);
    line-height: 1.2;
    margin-bottom: 15px;
    font-size: 2.6rem;}
.partners-logo-listing {}
.partners-logo-listing ul {       display: flex;
    flex-flow: wrap;
    gap: 32px;
    max-width: 1120px;
    margin: 50px auto;
    padding: 0;
    list-style: none;
    justify-content: center;}
.partners-logo-listing li { width: calc(16% - 30px);
    text-align: center;}
.partners-logo-listing li img {
    max-width: 100%;
    filter: drop-shadow(none);
    transform: scale(1);
    transition: all ease 0.5s;
        border: 1px solid #ddd;
    border-radius: 22px;
}
.why-choose-us {
    padding-bottom: 120px;
}
.section-para {    font-size: 1.1rem;}
.section-para .para-break { display: block;}
.service-listing {       display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    justify-content: center;}
    
.pink-bg { background: var(--primary-red); }
.sds {
            pointer-events: none;
            border-radius: 50%;
            width: 130%; 
            aspect-ratio: 1/1;
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: -1;
            transition: 
                transform 0.8s cubic-bezier(0.32, 0.72, 0, 1), 
                background 0.6s ease,
                left 0.6s cubic-bezier(0.32, 0.72, 0, 1), 
                top 0.6s cubic-bezier(0.32, 0.72, 0, 1);
            transform: translate(-50%, -50%) scale(0);
            will-change: transform, left, top;
            filter: blur(8px);
        }

        .service-content:hover .sds { transform: translate(-50%, -50%) scale(3.5); }
        .service-content:hover .service-img { background: #fff;}
         .service-content:hover .service-img img {
    filter: invert(27%) sepia(91%) saturate(7452%) hue-rotate(354deg) brightness(91%) contrast(128%);
} 
        .service-content:hover { color: #ffffff; font-weight: 700; }
.service-content {
        /* transition: all 0.3s ease; */
    /* width: calc(33.333% - 20px); */
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    position: relative;
    z-index: 9;}
.address-widget {    width: 30%;}
.service-content h3 {    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    /*transition: all 0.3s ease;*/
}
.service-content p {    margin: 0;
    font-weight: 400;}
.service-content .service-img {    display: inline-block;
    width: 55px;
    height: 55px;
    background: var(--primary-red);
    line-height: 55px;
    text-align: center;
    border-radius: 6px;
    padding: 0px 10px;} 
.service-img img {
        filter: invert(1);
}
.service-listing-link {    width: calc(33.333% - 20px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: whitesmoke;
    box-shadow: 1px 1px 3px #eee;
    text-decoration: none;
    color: #000;
}
.service-img i {    font-size: 30px;
    color: #fff;
}
 
.service-card-listing {    display: flex;
    gap: 30px;
    flex-wrap: wrap; margin-top: 50px;}
.service-card-listing .service-card {     width: calc(50% - 20px);
    background: #fbfbfb;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    padding-left: 100px;}
.service-listing-link:hover {    background: var(--primary-red);
    color: #fff;}
.service-listing-link:hover h3 { color: #fff;}
.service-listing-link:hover .service-img-card {background: #fff;}
.service-card h3 {    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;}
.service-card p {    margin: 0;}
.service-card .service-img-card {      display: inline-block;
    width: 60px;
    height: 60px;
    background: #f3f3f3;
    line-height: 56px;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    left: 18px;
    top: 30px;
    padding: 0px 10px;
} 
.service-img-card img {    width: 35px;  }
.service-img-card i {    font-size: 30px;
    color: #fff;
}
.inner-container {    width: 95%;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    padding: 80px 0px;}


.partners-sectionss {
    padding: 15px 0;
    background-color: var(--primary-red);
    overflow: hidden;
    /*border-top: 1px solid #eee;*/
    color: #fff;
        }

        /* --- MARQUEE ENGINE --- */
        .partners-sectionss .logo-slider {
            display: flex;
            width: calc(100% * 14);
            /* animation: scroll 30s linear infinite; */
        }

        .partners-sectionss .logo-slider:hover {
            /* animation-play-state: paused;  */
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-250px * 7)); } /* Scroll half the total width */
        }

        .partners-sectionss .logo-item {
                font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    text-decoration: none;
    white-space: nowrap;
            will-change: transform;
        }
.partners-sectionss .logo-item a {     color: #fff;
    text-decoration: none;
    font-weight: 600;}
        .partners-sectionss .logo-item img {
            width: 100%;
            max-width: 42px;
            filter: grayscale(100%); /* Makes it look professional like Upthrust */
            /* opacity: 0.6; */
            transition: all 0.3s ease;
        }

        .partners-sectionss .logo-item img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
.inner-pages .fixed-header-custome { background: #fff;
    box-shadow: 1px 1px 1px #eee;}
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .partners-sectionss .logo-slider {
                /* animation: scroll 20s linear infinite;   */
            }
        }
.mybtn { 
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    font-size: 18px;
    -webkit-appearance: button;
    text-decoration: none;
    position: relative;
    overflow: hidden;}
.white-btn { background-color: var(--white);
    color: var(--deep-black);
    } 
.theme-btn-anim-white:before {
    content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: var(--deep-black);
            transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
            z-index: -1;
} 
.mybtn-blk { background-color: #000; color: #fff;}
.mybtn-blk:hover {color:#000;}
.mybtn-blk:before {
    content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: #fff;
            transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
            z-index: -1;
} 
.white-btn:hover {color:#000;    background-color: rgb(255 255 255 / 83%);}
.cta-one {    /* background: var(--primary-red) url(../images/cta-bg.svg) left top no-repeat; */
    text-align: center;
    color: #fff;
    /* padding: 80px; */
    border-radius: 30px;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;}
.cta-one h2 {font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;}
.cta-one p {    font-size: 18px;
    margin-bottom: 0px;}
.cta-one p .para-break { display: block;}
.light-mtbadge.mtbadge { color: #fff;}
.light-mtbadge.mtbadge i { color: #fff13d;}
 .cta-red {    background: var(--primary-red) url(../images/cta-bg.svg) left top no-repeat; background-attachment: fixed;}
.cta-red h2 .para-break { display: block;}
.cta-right {  width: 380px;  text-align: center;}
.floating-arrow { max-width: 100px;
    position: absolute;
    right: -50px;
    filter: brightness(20.5);
-webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;} 
.cta-left {position: relative;} 
.new-cta-section {background: var(--primary-red) url(../images/cta-bg.svg) left top no-repeat;
    background-attachment: fixed;
    padding: 80px 0px;
}
.new-cta {display: flex;
    gap: 50px;
    align-items: center;}
.new-cta-left {    width: 50%;}
.new-cta-left .mtbadge { color: #fff;}
.new-cta-left .mtbadge li { color: #fff;}
.new-cta-left .mtbadge li i {color: #fff13d;}
@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}


        /* CUSTOM SELECT BOX STYLE */
        .custom-select-box {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #4d4d4d;
            transition: 0.3s; width: 100%;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
             position: relative;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 16px 12px;
            font-size: 0.95rem;
            color: #ccc;
        }
        .custom-select-box.has-value { }
    .custom-select-box.selected-active { color: #000;}
.custom-select-box .form-check-label {font-size: 0.95rem;}
        /* Dropdown Menu Styling */
        .dropdown-menu { 
            width: 100%; border-radius: 12px; border: 1px solid #eee; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 10px; 
        }
        .dropdown-item-check { 
            padding: 0px; border-radius: 6px; transition: 0.2s; cursor: pointer;
        }
         .dropdown-item-check .form-check { 
              gap: 8px;
    padding-left: 30px;
    display: flex;
    align-items: center;
         }
        .dropdown-item-check:hover { background: #f8f9fa; }
        .form-check-input:checked { background-color: var(--primary-red); border-color: var(--primary-red); }
    .service-drop-down .dropdown-menu.show {
    display: flex;
    flex-wrap: wrap;
}
.service-drop-down .dropdown-menu .dropdown-item-check {width: calc(100% - 0px);}
.service-drop-down .dropdown-menu .form-check-label {     font-size: 0.8rem;
    color: var(--deep-black);
    padding: 8px 12px 8px 0px;
    cursor: pointer;}
.service-drop-down .dropdown-menu .form-check .form-check-input { border-color: #bab6b6;
    width: 18px;
    height: 18px;}

    
.case-listing { margin-top: 50px; }
.case-listing-wrapper { margin-top: 50px; position: relative;}
.case-listing-wrapper .swiper-button-next, .case-listing-wrapper .swiper-button-prev {
        width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: inline-block;
    background: #eee;
    border-radius: 50%;}
.case-listing-wrapper .caseSwiper { padding: 0px 10px;}
.case-listing-wrapper .swiper-button-next:after, .case-listing-wrapper .swiper-button-prev:after { 
    font-size: 18px;
    background: #eee;
    color: #000000;}
.section-padding .swiper-pagination {position: relative;
    margin-top: 30px;}
.section-padding { padding-top: 120px;}
.case-card {        display: flex;
    /* gap: 50px; */
    position: sticky;
    top: 120px;
    perspective: 1000px;
    /* padding: 30px; */
    background: #bcc3ff;
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px #eee;
    flex-direction: row-reverse;
    justify-content: space-between;
    overflow: hidden;
}
.green-card {background:#baf787;}
.cyan-card { background: #e3f8ff;}
.gray-card {background:#e9e9e8;}
/* .case-listing:nth-child(1) { z-index: 1; } */
        .case-listing .case-card:nth-child(3) { z-index: 2; }
        .case-listing .case-card:nth-child(4) { z-index: 3; }
.case-left {     width: 100%;
    padding: 45px;}
.case-right {    width: 55%;}
.section-padding .swiper-pagination-bullet {    width: 12px;
    height: 12px;}
.section-padding .swiper-pagination-bullet-active { background: var(--primary-red); }
.process-steps {       display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 48px;
    position: relative;
    padding-top: 70px;}
.process-steps .step {    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    position: relative;
    text-align: center;}
.process-steps .step:hover .step-num { }
.process-steps .step:hover h4 { color: var(--primary-red); }
.step_line_icon {    position: absolute;
    top: -60px;
    left: 0;
    right: 0;}
.step-num {      /* width: 44px; */
    /* height: 44px; */
    /* border-radius: 50%; */
    /* border: 1px solid var(--deep-black); */
    /* background: var(--deep-black); */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* margin: 0 auto 20px; */
    /* position: relative; */
    /* z-index: 1; */
    /* transition: border-color .3s, color .3s; */
    /* color: #fff; */
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;}
.process-steps h4 {    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 600;}
.process-steps p {margin: 0;}
.process-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    /* background: linear-gradient(90deg, #00000000, #ccc, #ccc, #ccc, transparent); */
    border: 2px dashed #d9d9d9;
}
.case-logo {    max-height: 66px;
    margin-bottom: 15px;}
.case-left h3 {        font-size: 2.1rem;
   /*font-size: 3rem;*/
    font-weight: 700; }
.case-left img {}
.case-left h4 {font-size: 40px;
    font-weight: 700;    color: #000 !important;}
.case-left ul {     padding-left: 20px; }
.case-left ul li {      font-size: 14px;
    /* border: 1px solid #fcf6ff; */
    /* padding: 5px 15px; */
    border-radius: 20px;
    /* background: #fdf7ff; */
    /*text-transform: uppercase;*/
    /*font-weight: 500;*/
        margin-bottom: 3px;
}
.case-header {    display: flex;
    justify-content: flex-start;
    /* gap: 20px; */
    flex-direction: column;
    margin-bottom: 20px;
    /* align-items: center; */
}
.case-left p {}
.case-left a {}
.case-right img {border-radius: 0px;}
.detailed-metrics h6 {font-weight: 600;
    /* color: var(--primary-red); */
}
.detailed-metrics .border-top {border-color: #333 !important;}
.case-row {    display: flex;
    justify-content: left;
    gap: 50px;
    margin-bottom: 50px;}
.case-col-6:first-child {padding-right: 50px;}
.case-col-6 {}
.statsNumber { margin-top: 30px;}
.stats-num {display: flex; font-family: "Inter", sans-serif;}
.stats {         display: flex;
    gap: 25px;
    color: #fff;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;}
.stats-row {    display: flex;
    justify-content: space-around;
    gap: 25px;}
.stats-content {    flex: 1;
    background-image: linear-gradient(140deg, #c80f16, #ff040e);
    padding: 20px 30px;
    border-radius: 30px;
        width: 200px;
     }
.star-text {margin-bottom: 20px;}
.star-text ul { display: flex;
    list-style: none;
    gap: 7px;
    padding: 0;
    margin-bottom: 8px;}
.star-text ul li {}
.star-text ul li i {    color: #fff13d;}
.stats-content img {    max-width: 160px;
    filter: brightness(19.5);}
.stats-number {}
.stats-number-head {     font-size: 38px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;}
.stats-number-head i {      font-size: 18px;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #000;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;}
.prefixnumber {line-height: 40px;}
.st-number {       display: flex;
    align-items: center;
    font-size: 45px;
    font-weight: 600;
    line-height: 45px;}
.st-number span {}
.stats-number-head span {}
.stats-content-listing {    display: flex;
    flex-direction: column;}
.stats-content-listing h3 {       font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0px;}
.stats-content-listing p {margin: 0;}
.odometer-suffix {font-size: 2.5rem;
    font-weight: 700;    line-height: 40px; }
.plus-sufix {line-height: 40px;}
.tracking-wider {    margin-top: -5px;
    position: absolute;}

 
 .testimonials { overflow: hidden;}
 .testimonials .quote-mark { font-size: 80px; font-family: 'Playfair Display', serif; color: #ccc; line-height: 0; margin-bottom: 20px; display: block; }
 
        /* Swiper Container */
       .testimonials .swiper { overflow: visible !important; width: 100%; }

        .testimonial-card {
    background: #f7f6f6;
    padding: 30px;
    border-radius: 12px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px #eee;
        }

        .testimonial-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--deep-black);
    margin: 0;
        }

        .testimonials .user-info { display: flex; align-items: center; gap: 15px; }
        .testimonials .avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: #eee; }
        .testimonials .name { font-weight: 700; display: block; font-size: 16px; color: var(--dark); }
        .testimonials .role { font-size: 14px;
    color: #767676;}

        /* --- Custom Progress & Nav Row --- */
        .testimonials .footer-controls {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
        }

        /* The horizontal line tracker */
        .testimonials .progress-container {
            width: calc(100% - 200px);
            height: 4px;
            background: rgba(0,0,0,0.05);
            position: relative;
            border-radius: 2px;
                overflow: hidden;
        }

        .testimonials .progress-bar-fill {
            position: absolute;
            height: 100%;
            width: 0%; /* Managed by JS */
            background: var(--primary-red);
            transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            border-radius: 2px;
        }

        .testimonials .nav-row { display: flex; gap: 12px; }
        .testimonials .nav-btn {
            width: 48px;
    height: 48px;
    background: #000;
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
        }
    .name-info {        height: 45px;
    width: 45px;
    line-height: 45px;
    background: var(--deep-black);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;}
       .testimonials .nav-btn:hover { background: var(--primary-red); transform: translateY(-2px); }
       .testimonials .nav-btn:active { transform: translateY(0); }
       .testimonials .nav-btn svg { width: 50px; height: 50px; fill: currentColor; }
        
        /* Swiper specific disable state */
        .testimonials .swiper-button-disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
        .testimonialSwiper { margin-top: 50px;}
    .testimonial-card ul {    padding: 0;
    display: flex;
    list-style: none;
    color: #ffc300;
    gap: 5px; }
    .testimonial-card ul li { }
 /* testimonial slider end */

 .footer {   background: rgb(178 173 172 / 11%);
    background-size: cover;
    background-attachment: fixed;
    color: #000000;
    }
.container-cta-red {
    /* background: var(--primary-red) url(../images/cta-bg.svg) left top no-repeat;
    background-attachment: fixed;
    width: calc(100% - 120px);
    margin: 0 auto;
    padding: 80px 0px;
    border-radius: 20px;    box-shadow: 2px 2px 5px #bcbcbc; */
}
.we-dont {padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    font-size: 18px;
    -webkit-appearance: button;
    text-decoration: none;
    position: relative;
    overflow: hidden;
        background-color: #000;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.we-dont:hover { background: #fff; color: #000;}
.container-cta-red .multiple-btn {display: flex;
    flex-direction: column;
    gap: 20px;}
 .cta-2 {     display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0px; } 
.lets-talk-btn {    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;}
.lets-talk-btn i {}
.cta-2 h2.section-title {color: #fff; }
.cta-gif-container {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 50%;
}
.cta-gif-container text {
    fill: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.cta-gif-container .logo-center {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.logo-center a {
    text-align: center;
    display: block;
    line-height: 100px;
}
.cta-gif-container .logo-center img {
    width: 85%;
    height: auto;
    /* filter: brightness(0) invert(1); */
}
.cta-gif-container .rotating-svg {
    width: 100%;
    height: 100%;
    animation: rotate-continuous 10s linear infinite;
}

.custom-tooltip {
            position: absolute;
            bottom: 120%; /* Position above logo */
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: #000;
            color: #fff;
            padding: 10px 18px;
            border-radius: 12px;
            white-space: nowrap;
            font-size: 0.85rem;
            font-weight: 600;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
.partners-logo-listing ul:hover li.aos-animate {
            opacity: 0.2;
            filter: grayscale(100%);
                transition-delay: 0s;
        }

        /* Keep the specific hovered item bright */
        .partners-logo-listing li:hover {
            opacity: 1 !important;
            filter: grayscale(0%) !important;
            transform: scale(1.1);
            z-index: 10;
        }
        /* Designer Text in Tooltip */
        .custom-tooltip span {
            display: block;
            font-size: 0.7rem;
            color: #aaa;
            font-weight: 400;
            margin-top: 2px;
        }

        /* Tooltip Arrow */
        .custom-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -6px;
            border-width: 6px;
            border-style: solid;
            border-color: #000 transparent transparent transparent;
        }

        .partners-logo-listing li:hover .custom-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
/* Animation */
        @keyframes rotate-continuous {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
.footer-scnd { padding: 20px 0px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;}
.widgets { }
    .widgets img {    width: 200px;
    filter: brightness(24.5);}
.widgets ul {    margin: 0;
    list-style: none;
    padding: 0;}
.widgets ul li {}
.widgets a {color: #000; text-decoration: none;}
.widgets .social-media { 
    display: flex;
    gap: 10px;   padding: 0;
    margin: 0;
    list-style: none; margin-top: 10px;}
.social-media svg {    width: 22px;
    fill: var(--primary-red);}
.social-media li:hover svg { fill: #000;}
.widgets a:hover {color: var(--primary-red); text-decoration: underline;}
.social-media li:hover a,.social-media li:hover { color: var(--deep-black); border-color: var(--deep-black);}
.social-media li {    width: 35px;
    height: 35px;
    line-height: 32px;
    border: 1px solid var(--primary-red);
    text-align: center;
    border-radius: 50%;}
.social-media li a {    color: var(--primary-red);
    font-size: 18px;
    transition: all 0.3s ease;}
.scnd-container {    display: flex;
    justify-content: space-between;}
.widgets h3 {    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;}
.copyright {     padding: 10px 0px;
    font-size: 14px;
    background: #efefef;}
.copyright p { margin-bottom: 0px; text-align: center;}


.cursor-dot {
            width: 8px;
            height: 8px;
            background-color: var(--primary-red);
            position: fixed;
            top: 0;
            left: 0;
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
        }

        /* The Outline - Soft following effect */
        .cursor-outline {
            width: 40px;
            height: 40px;
            border: 1px solid #000;
            position: fixed;
            top: 0;
            left: 0;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            /* mix-blend-mode: difference; Optional: for cool inversion */
        } 

        @media (hover: none) {
            .cursor-dot, .cursor-outline { display: none; }
            body { cursor: auto; }
        }

 .countdown-partners {    background: var(--primary-red);
    padding: 15px 0px;}
.stats-container {
                display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    width: 100%;
        }

        .stat-item {
            flex: 1;
            position: relative;
        }

        /* Vertical Divider Logic */
        .stat-item:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background-color: #c9c9c9; /* Light green divider from image */
        }

        .stat-number {
            display: block;
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
    line-height: 54px;
        }

        .stat-label {
            display: block;
            font-size: 1.1rem;
            color: #666;
        }
.mystats {display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;}
.stats-title {    width: 500px;}
.stats-title h2 {font-size: 1.3rem;
    margin: 0;
    font-weight: 600;}
.stats-title p {    font-size: 14px;
    margin: 0;}
        /* Responsive Design */
        @media (max-width: 768px) {
            .stats-container {
                flex-direction: column;
                gap: 30px;
            }
            .stat-item:not(:last-child)::after {
                display: none;
            }
        }
.cta-text-solid:before {
    content: '';
    background: url(../images/cfav.webp) center right no-repeat;
    position: absolute;
    right: 375px;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: .2;
    background-size: contain;
}
.cta-text-solid {
        padding: 30px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(165, 48, 191, 0.1);
    position: relative;
    flex-wrap: wrap;
        margin-top: -80px;
}
.lefttest {
    position: relative;
}
.lefttest h3 {
    color: #fff;
}
.lefttest p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 500;
}
.lefttest p span {
    display: block;
}
.lefttest:first-child {    width: calc(100% - 460px); }
.lefttest:last-child { width: 330px; }
.impact-row {     display: flex;
    gap: 80px;
    margin-top: 20px;}
.impact-col {}
.impact-prefix {     font-size: 40px;
    font-weight: 600;
    color: var(--primary-red);
    position: absolute;
    left: 0;
    top: 0;}
.impact-number {     font-size: 4rem;
    font-weight: 600;
    line-height: normal;}
.impact-title {     font-size: 18px;
    letter-spacing: 0;
    font-weight: 600;
    /* border-bottom: 1px solid #ccc; */
    /* padding-bottom: 5px; */
    width: 100px;
    line-height: 22px;
    margin-top: 0px;}
.impact-col p {    font-size: .9rem;
    display: none;}
.impact-content {      padding-left: 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;}

.thank-you {   }
.success-messagge {        max-width: 480px;
    width: calc(100% - 15px);
    background: #fbfbfb;
    padding: 30px;
    border-radius: 20px;
    margin: 0 auto;
    margin-top: 70px;
    text-align: center;
    box-shadow: 0px 0px 8px rgb(209 209 209 / 90%);}
.success-icon {
    width: 5rem;
    border-radius: 100px;
    background-color: #5ad10a;
    margin: 0 auto;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;}
.success-icon svg {}
.thank-you h1 {color: #000;
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;}
.thank-you p {}
.thank-you a {
    background: #000000;
    box-shadow: 0px 0px 3px #444444;
    /* transition: background 0.4s ease; */
    color: #fff;
    text-decoration: none;
    padding: 14px 70px;
    border-radius: 100px;
    margin-top: 15px;
    font-weight: 600;
    display: inline-block;
}
.sus-icon {     background-color: #5ad10a;
    border-radius: 9999px;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    bottom: 0;
    width: 60px;
    margin: 0 auto;
    height: 60px;}
 .animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.icon-sus { position: relative;}
@keyframes ping { 
75%, 100% {
    transform: scale(2);
    opacity: 0;
}}






















.trusted {   margin-top: 40px;   font-weight: 600;
    margin-bottom: 30px; }
        .hero-title {
             color: #000;
                 margin-bottom: 25px;
    font-size: 60px;
        }
.brandSwiper .swiper-wrapper {
            transition-timing-function: linear !important;
            align-items: center;
        }
.brandSwiper {
    max-width: 850px;
    perspective: 1200px;
    overflow: hidden;
    mask-image: linear-gradient(to left, transparent, black 16%, black 99%, transparent);
}
        .logo-slider-container .swiper-slide { display: flex; justify-content: center; align-items: center; }
        .logo-slider-container .swiper-slide img {
            max-width: 125px;
            /*filter: brightness(50);*/
     /* opacity: 0.5; */
    transition: 0.3s;
        }

.about-us {background: #f7f6f6;
    padding-bottom: 200px;}
.about-us-row {display: flex;
    gap: 50px;
flex-wrap: wrap;}
.about-us-col { }
.about-us-left img {    border-radius: 10px;}
.about-us-left {width: 40%;}
.about-us-right {width: calc(60% - 50px);}
.about-us-right .listing-ul {    flex-direction: column;
    margin: 30px 0px 30px 0px;}
.about-us-right .listing-ul li {     color: #000;
    margin-bottom: 0;}
.goolge-review {
    color: #000;
    margin-top: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}
.review-btn {text-decoration: none; display: none;}
.goolge-review img {
    height: 60px;
}
.goolge-review .rates {
        display: flex;
    flex-direction: column;
    font-size: 20px;
    line-height: 33px;
    font-weight: 600;
}
.goolge-review i {
    color: #ffd400;
}
.hightlight-text {    color: var(--primary-red);}
.ribbon-stats {    position: absolute;
       left: -25px;
    top: 25px;
    background: var(--primary-red);
    padding: 5px 15px;
    color: #fff;
    border-radius: 10px 10px 10px 0px;
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;}
.ribbon-stats:before {    content: '';
    border-top: 12px solid #db1c23;
    border-right: 13px solid #db1c23;
    border-bottom: 13px solid transparent;
    border-left: 13px solid transparent;
    position: absolute;
    bottom: -25px;
    left: 0px;}
.ribbon-stats h3 {     font-size: 67px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;}
.plussign {    line-height: 15px;
    height: 30px;
    font-size: 50px;}
.years {    font-size: 34px;
    font-weight: 600;}
.years-of {     font-size: 14px;
    display: block;}
.about-stats {    position: relative;}
.process-section {     background: #f7f6f6;
    border-radius: 100px;}
.cta-section {background: var(--primary-red) url(../images/cta-bg.svg) left top no-repeat;
    background-attachment: fixed;
    /* width: calc(100% - 120px); */
    margin: 0 auto;
    padding: 80px 0px;
    /* border-radius: 20px; */
    /* box-shadow: 2px 2px 5px #bcbcbc; */
}

.header-scrolled { background-color: #fff;
    box-shadow: 1px 1px 1px #eee;}
.header-scrolled .phone-num {}
.seo-services {background: url(../images/seo.avif) center center no-repeat;}
/*.service-listing-link:before {content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    top: 0;*/
/*    background: #101010;*/
/*    border-radius: 10px;*/
/*    opacity: .8;}*/
.service-listing-link:hover:before {
    /*background: var(--primary-red);*/
    }
.service-new-listing-row {display: flex;
    margin-top: 50px;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;}
.service-new-listing-col {    overflow: hidden;
    width: calc(33.333% - 20px);
    border-radius: 10px;
    border: 1px solid #ddd;
    background: whitesmoke;
    box-shadow: 1px 1px 3px #eee;
    text-decoration: none;
    color: #000;}
.service-new-listing-col img {    max-width: 100%;
    height: auto;}
.service-new-listing-col h3 {     margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;}
.service-new-listing-col p { margin: 0px;}
.listi-content { padding: 20px;}


@media (max-width: 1399px) {
    .cta-left {
    position: relative;
    width: 61%;
}
}
@media (max-width: 1199px) {

.form-bonwic {
    padding-left: 15px !important;
}
    .listing-ul {    gap: 0px;
    flex-direction: column;}
.hero-title { font-size: 45px; }
.lefttest:first-child {
    width: calc(100% - 390px);
}
.impact-row {
     gap: 40px;
 }
 .impact-number {
    font-size: 3rem;
 }
 .impact-col p {
    margin-top: 15px;
}
.cta-left { 
    width: 100%;
            text-align: center;
}
.cta-right {
    width: 100%;
}
.container-cta-red .multiple-btn {
     flex-direction: row;justify-content: center;
 }
 
.cta-one {flex-direction: column;}
.floating-arrow { display: none;}
.process-steps { gap: 20px;}
}

@media (max-width: 991px) {
.hero-title-tt {    padding-top: 0px;} 
.service-new-listing-row { gap: 20px;}
.service-new-listing-col {
    width: calc(50% - 20px);
}
.form-bonwic {
    padding-top: 95px;
}
.service-listing-link {
    width: calc(50% - 20px);
}
.step_line_icon {
    display: none;
}
.process-steps { padding-top: 0px;}

.about-us-left,.about-us-right {
    width: 100%;
}

.about-us-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex-direction: column;
}
.hero {    text-align: center;
padding-top: 140px;
    
}
.hero-subtitle {
     border-left: 0px solid var(--primary-red);
     padding: 0;
    max-width: 100%;
}
    .listing-ul {
         flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    .partners-logo-listing li {
    width: calc(22% - 30px);
 }
.section-para .para-break {
    display: inline;
} 
/*.service-content { width: calc(50% - 15px);}*/
.cta-text-solid { padding: 40px;   flex-direction: column;
    gap: 40px;}
.lefttest, .lefttest:first-child { width: 100%; text-align: center;}
.cta-text-solid:before {
    right: auto;
    left: 12px;
    top: auto;
    bottom: 0;
    background-size: cover;
    width: 79px;
    height: 139px;
}
.case-card {     flex-direction: column;}
.case-left, .case-right { width: 100%;}
.process-steps {
     grid-template-columns: repeat(2, 1fr);
    gap: 30px; 
}
.process-steps::before { content: none;}
 
        .impact-number {
        font-size: 4rem;
    }
.multiple-btn .mybtn {          overflow: hidden;  font-size: 16px;}
.scnd-container {
             flex-wrap: wrap;
        gap: 15px;
}
.widgets {
            width: calc(50% - 10px);

}
.btn-apply {font-size: 16px;}
.phone-num {
     font-size: 1.2rem;
}
}
@media (max-width: 768px) {
.service-new-listing-col {
    width: 100%;
}
    .service-new-listing-row {
        gap: 30px;
    }
    .service-listing-link {
        width: 100%;
    }
    .impact-number {
        font-size: 3rem;
    }
    .about-us-right .listing-ul li {
    color: #000;
    margin-bottom: 15px;
}
.about-us-right .listing-ul {
     margin: 0px;
         margin-top: 10px;
}
.impact-title {
    font-size: 16px;
    line-height: 20px;
}
.process-steps h4 {
     font-size: 1.2rem;
 }
 .step-num { color: var(--primary-red);}
    .listing-ul {
        display: inline-block;
    }
    .listing-ul li {
        display: inline-block;
        margin: 0px 10px 10px 10px;
    }
.phone-num { display: none;}
            .stats-container {
                flex-direction: column;
                gap: 30px;
            }
            .stat-item:not(:last-child)::after {
                display: none;
            }
                .partners-logo-listing li {
        width: calc(35% - 30px);
    }
.partners-logo-listing ul { 
    gap: 15px;
}
.service-content {
        width: 100%;
    }
        .container-cta-red .multiple-btn {
        flex-direction: column;
     }
        .multiple-btn .mybtn {
        font-size: 18px;
     }
 .case-left {
     padding: 30px;
}   
.cta-one p .para-break {
    display: inline;
}
.form-card h3 {
    font-weight: 700;
    font-size: 30px;
}
section, .why-choose-us {
    padding: 80px 0;
}
.about-us { padding-bottom: 160px;}
.section-padding { padding-top: 80px;}
 .why-choose-us {
         overflow: hidden;
    }
        }
@media (max-width: 575px) {
.ribbon-stats h3 {
    font-size: 53px;
    margin-bottom: 5px;
}
    .about-us {
        padding-bottom: 60px;
    }
    .impact-row {
        gap: 30px;
        flex-direction: column;
    }
    .impact-number {
        font-size: 5rem;
    }
 .process-steps {
        grid-template-columns: repeat(1, 1fr);
     }
        .impact-title {
        font-size: 20px;
        line-height: 26px;
    }
  .trusted {
    margin-top: 30px;
  }  
.process-section {
     border-radius: 0px;
}
.about-us-left {    padding: 0px 30px;} 
.case-left h3 {font-size: 2rem;}
    .cta-text-solid {   justify-content: center;
        flex-direction: initial;
        padding: 50px 0px;
        margin: 0;
        border-radius: 0;
     }
.solid-cta { background: var(--primary-red);}
     .plus-sufix {
    line-height: 36px;
}
.case-listing-wrapper .swiper-button-next,
.case-listing-wrapper .swiper-button-prev { display: none;}
.odometer-suffix {line-height: 43px;}
        .hero-title {
        font-size: 35px;
    }
.case-left h4 {
    font-size: 30px;
}
.odometer-suffix {
    font-size: 1.6rem;
}
.hero-subtitle {
    font-size: 1rem;
}
section {
     overflow: hidden;
}
.form-card { padding: 25px;}
.section-title {
    font-size: 1.9rem;
}
.container-cta-red .multiple-btn {
     gap: 15px;
}
.widgets p { font-size: 14px;}
.widgets a {
     font-size: 14px;
}
.widgets .social-media {
    gap: 6px;
}
.widgets h3 {
    font-size: 18px;
     margin-bottom: 16px;
}
.cta-one { gap: 30px;}
 
 .cta-one h2 {
    font-size: 28px; 
}
    .multiple-btn .mybtn {
        font-size: 16px;
                overflow: hidden;
    }
.btn-apply {
        font-size: 14px;
    }
}