:root {
    --primary-gold: #ffa801;
    --dark-navy: #0f172a;
    --slate-gray: #64748b;
    --off-white: #f8fafc;
    --premium-gradient: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Premium Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 72px;
    transition: all 0.3s ease;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-navy) !important;
    margin: 0 15px;
    position: relative;
    padding: 5px 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar .btn {
    background: var(--dark-navy);
    color: white;
    border-radius: 8px;
    padding: 10px 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
}

.navbar .btn:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 168, 1, 0.3);
}


/* Hero Section for Inner Pages */
.home_hero,
.search_banner {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    z-index: 1;
}

.home_hero::before,
.search_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
    z-index: -1;
}

.home_hero .container,
.search_banner .container {
    position: relative;
    z-index: 2;
}

.home_hero p,
.search_banner p {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.home_hero p span,
.search_banner p span {
    color: var(--primary-gold);
    font-weight: 700;
}

.home_hero .btn,
.search_banner .btn {
    background: transparent;
    border: 3px solid var(--primary-gold);
    color: white !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.home_hero .btn:hover,
.search_banner .btn:hover {
    background: var(--primary-gold);
    color: var(--dark-navy) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 168, 1, 0.3);
}


/* Industry Excellence Section */
.welcome {
    padding: 75px 0 !important;
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.welcome .title {
    text-align: center;
    margin-bottom: 30px;
}

.welcome .title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.welcome .title h2 span {
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome .title p {
    font-family: 'Open Sans', sans-serif;
    font-size: 19px;
    color: var(--slate-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.industry-card {
    background: white;
    padding: 25px 20px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 165, 116, 0.3);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: #fff9f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 168, 1, 0.1);
}

.industry-card:hover .industry-icon {
    background: var(--primary-gold);
    transform: scale(1.1) rotate(5deg);
}

.industry-icon i {
    font-size: 32px;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon i {
    color: white;
}

.industry-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.industry-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: var(--slate-gray);
    line-height: 1.7;
    margin: 0;
}

.category-counter {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-counter p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--dark-navy);
    font-weight: 600;
    margin: 0;
    padding: 0 20px;
}

.category-counter span {
    color: var(--primary-gold);
    font-weight: 800;
}

.welcome .request_btn {
    text-align: center;
}

.welcome .request_btn .btn {
    background: var(--dark-navy);
    color: white;
    padding: 20px 45px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.welcome .request_btn .btn:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 168, 1, 0.25);
}

@media (max-width: 991px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .welcome .title h2 {
        font-size: 32px;
    }

    .welcome {
        padding: 60px 0;
    }
}

.about_business {
    background-image: url(../images/about-us-small.png);
    background-size: cover;
    padding: 100px 0;
}

.about_business h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about_business h2 small {
    color: #ffa801;
    font-size: 28px;
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

.about_business p {
    color: #12151A;
    font-family: 'Lato', Sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about_business a {
    border-color: #ffa801;
    color: #000;
    border-radius: 25px;
    font-size: 16px;
    padding: 10px 30px;
    border-width: 3px;
    font-weight: 500;
    margin-top: 25px;
    text-decoration: none;
    display: inline-block;
}

.about_business a:hover {
    background-color: #ffa801;
    color: #fff;
}


/* ============================================
INNER PAGE SECTIONS
============================================ */

/* About Us Section */
.about_us {
    padding: 80px 0;
    background: #fff;
}

.about_us h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 25px;
}

.about_us h2 small {
    display: block;
    color: var(--primary-gold);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.about_us p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-gray);
    margin-bottom: 20px;
}

.about_us .btn {
    background: var(--dark-navy);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.about_us .btn:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
}

.aboutImg img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.steps {
    padding: 80px 0;
    background: var(--off-white);
}

.step_row {
    margin-bottom: 60px;
    align-items: center;
}

.step_row:last-child {
    margin-bottom: 0;
}

.step_img img {
    max-width: 100%;
    height: auto;
}

.step_counter h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.05);
    text-align: center;
    line-height: 1;
}

.step_desc h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.step_desc p {
    font-size: 16px;
    color: var(--slate-gray);
    line-height: 1.7;
}

/* Judging Panel / Recognition Section */
.judging_pannel {
    padding: 80px 0;
    background: var(--dark-navy);
    color: white;
}

.judging_pannel .title {
    text-align: center;
    margin-bottom: 60px;
}

.judging_pannel .title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.judging_pannel .title h2 span {
    color: var(--primary-gold);
}

.judging_pannel .title p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.inner_jugdes {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.inner_jugdes:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.stat-icon svg {
    fill: var(--primary-gold);
}

.inner_jugdes h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.inner_jugdes p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.inner_jugdes p small {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.6;
}

/* Request Consideration Section */
.request_consi {
    padding: 80px 0;
}

.request_consi .title {
    text-align: center;
    margin-bottom: 50px;
}

.request_consi .title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-navy);
}

.request_consi .title h2 span {
    color: var(--primary-gold);
}

.business_quality .title h2 {

    font-size: 58px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.business_quality .title h2 small {
    color: #ffa801;
    font-size: 35px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
}

.businessQuality_finder {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 0px;
    padding: 50px 30px 50px 30px;
    border-radius: 25px 25px 25px 25px;
    margin-top: 40px;
    background-color: #FAF9FD;
}

.businessQuality_finder h3 {
    font-size: 27px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 35px;
}

.businessQuality_finder h3 span {
    color: #ffa801;
}

.businessQuality_finder .searh_form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.businessQuality_finder .searh_form .search-container {
    width: 100%;
}

.businessQuality_finder .searh_form .search-container .autocomplete-suggestions {
    border: 0;
}

.businessQuality_finder .searh_form .form-control,
.businessQuality_finder .searh_form .form-select {
    border-radius: 4px;
    height: 48px;
}

.businessQuality_finder .searh_form .form-control:focus,
.businessQuality_finder .searh_form .form-control:visited,
.businessQuality_finder .searh_form .form-control:active,
.businessQuality_finder .searh_form .form-select:focus,
.businessQuality_finder .searh_form .form-select:visited,
.businessQuality_finder .searh_form .form-select:active {
    outline-color: #ffa801;
    box-shadow: none;
    border-color: #ffa801;
}

.businessQuality_finder .searh_form .btn {
    border-radius: 4px;
    background-color: #ffa801;
    color: #fff;
    height: 48px;
}

.businessQuality_finder .searh_form .btn:hover {
    background-color: #000;
}

.businessQuality_finder .or {
    position: relative;
    text-align: center;
    padding: 25px 0;
    width: 400px;
    margin: 0 auto;
}

.businessQuality_finder .or:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background-color: #e2e2e2;
}

.businessQuality_finder .or span {
    background-color: #FAF9FD;
    padding: 4px 10px;
    position: relative;
    z-index: 1;
}

.bg {
    background-color: #FAF9FD;
    padding: 20px 0;
}

.location_block {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.19);
    margin-bottom: 55px;
}

.location_block .heading {
    text-align: center;
    background: #3c3030;
    padding: 22px;
}

.location_block .heading h2 {
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 55px;
    font-size: 58px;
    font-weight: 600;
    color: #fff;
}

.location_block:nth-child(odd) .heading {
    background-color: #ffa801;
}

.location_block .inner_cities_area {
    padding: 50px;
}

.location_block ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.location_block ul li {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 20%;
    max-width: 20%;
    margin-bottom: 15px;
}

.location_block ul li a {
    background-color: #f5f5f5;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    text-decoration: none;
    font-family: "Lato", Sans-serif;
}

.location_block ul li a svg {
    width: 16px;
    fill: #ffa801;
    height: 16px;
    margin-right: 0.75rem;
}

.location_block ul li a:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #ffa801;
}

.location_block ul li a:hover svg {
    fill: #000;
}

.location_block .more_cities {
    text-align: right;
    padding: 0 15px;
}

.location_block .more_cities .btn {
    background-color: #ffa801;
    color: #fff;
    border-radius: 25px;
    font-size: 16px;
    padding: 12px 25px;
    font-family: "Lato", Sans-serif;
    font-weight: 600;
}

.location_block .more_cities .btn:hover {
    background-color: #000;
}

/*------ABOUT US-------*/
section {
    padding: 75px 0 !important;
}

.about_us h2 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 35px;
}

.about_us h2 small {
    display: block;
    color: #ffa801;
    font-size: 20px;
    font-weight: 500;
}

.about_us p {
    text-align: justify;
    font-size: 18px;
    line-height: 30px;
    font-family: "lato", sans-serif;
}

.about_us .btn {
    font-family: "lato", sans-serif;
    background-color: #ffa801;
    color: #fff;
    border-radius: 25px;
    padding: 8px 30px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
}

.about_us .btn:hover {
    background-color: #000;
}

.steps {
    background-color: #EFF5FD;
}

.steps .step_row {
    padding-bottom: 50px;
}

.steps .step_row:nth-child(even) .step_img {
    text-align: left;
}

.steps .step_row:nth-child(even) .col-md-5:first-child {
    order: 3;
}

.steps .step_row:nth-child(even) .col-md-5:last-child {
    order: 1;
}

.steps .step_row:nth-child(even) .col-md-2 {
    order: 2;
}

.steps .step_img {
    text-align: right;
}

.steps .step_counter {
    text-align: center;
    height: 100%;
    position: relative;
}

.steps .step_counter:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
    width: 4px;
    background-color: #ffa801;
}

.steps .step_counter h3 {
    background-color: #ffa801;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 25px;
}

.steps .step_desc h4 {
    color: #3c3030;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 20px;
}

.steps .step_desc p {
    font-family: "lato", sans-serif;
    color: #3c3030;
}

.judging_pannel .title {
    text-align: center;
    margin-bottom: 80px;
}

.judging_pannel .title h2 {
    color: #000;
    font-weight: 500;
    font-size: 48px;
}

.judging_pannel .title h2 span {
    color: #ffa801;
    font-weight: 400;
}

.judging_pannel .title p {
    color: #666;
    font-size: 1.1rem;
}

.judging_pannel .inner_jugdes {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.judging_pannel .inner_jugdes img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
}

.judging_pannel .inner_jugdes .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.judging_pannel .inner_jugdes .stat-icon svg {
    width: 100%;
    height: 100%;
    fill: #FFA500;
}

.judging_pannel .inner_jugdes h4 {
    font-size: 2rem;
    font-weight: bold;
    color: #FFA500;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.judging_pannel .inner_jugdes p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.judging_pannel .inner_jugdes p small {
    display: block;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 0.8rem;
}

.judging_pannel .inner_jugdes:hover {
    transform: translateY(-5px);
}

/*----REQUEST CONSIDERATION---------*/
.select2-container {
    font-family: "lato", sans-serif;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #ffa801;
}

.request_consi .title {
    text-align: center;
}

.request_consi .title h2 {
    color: #000;
    font-weight: 500;
    font-size: 58px;
    margin-bottom: 30px;
}

.request_consi .title h2 span {
    color: #ffa801;
    font-weight: 400;
}

.request_consi .title p {
    font-size: 18px;
    line-height: 30px;
    font-family: "lato", sans-serif;
    color: #333;
}

.request_consi .request_form {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 50px 120px;
}

.request_consi .request_form .inner_form {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 4px;
    font-family: "lato", sans-serif;
}

.request_consi .request_form .inner_form [class*=col-] {
    margin-bottom: 20px;
}

.request_consi .request_form .inner_form h4 {
    font-size: 1.56em;
    font-weight: 700;
}

.request_consi .request_form .inner_form p {
    color: #717273;
}

.request_consi .request_form .inner_form label {
    margin-bottom: 6px;
    font-size: 0.9em;
    color: #212223;
    font-weight: 600;
}

.request_consi .request_form .inner_form .form-check {
    margin-top: 10px;
}

.request_consi .request_form .inner_form .form-check label {
    font-size: 1.1em;
    font-weight: 500;
}

.request_consi .request_form .inner_form .form-control {
    height: 50px;
}

.request_consi .request_form .inner_form .form-control:focus,
.request_consi .request_form .inner_form .form-control:visited,
.request_consi .request_form .inner_form .form-control:active {
    box-shadow: none;
}

.request_consi .request_form .inner_form textarea {
    min-height: 6em;
}

.request_consi .request_form .inner_form .btn {
    background-color: #ffa801;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    width: 300px;
    margin: 20px auto;
    display: block;
}

.request_consi .request_form .inner_form .btn:hover {
    background-color: #000;
}

.request_consi .request_form .inner_form .select2-container .select2-selection--single {
    height: 50px !important;
    border-color: #dee2e6;
}

.request_consi .request_form .inner_form .select2-container .select2-selection--single .select2-selection__rendered {
    height: 100%;
    line-height: 42px;
}

.request_consi .request_form .inner_form .select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.common_title {
    text-align: center;
}

.common_title h2 {
    font-size: 58px;
    font-weight: 400;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.common_title h2 span {
    color: #ffa801;
    font-weight: 500;
}

.common_title p {
    font-family: "lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.common_title p a {
    text-decoration: none;
    color: #ffa801;
}

.common_title p a:hover {
    color: #000;
}

/*-------------*/
.awards {
    background-color: #F7F7F7;
}

.awards .common_title {
    margin-bottom: 30px;
}

.awards .awards_block {
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 7px 7px 7px 7px;
    display: flex;
    align-items: center;
    transition: all 0.3s linear;
    margin-bottom: 20px;
}

.awards .awards_block:hover {
    background-color: #FFFAF1;
}

.awards .awards_block .award_img {
    padding: 10px;
    width: 38%;
    flex: 0 0 38%;
}

.awards .awards_block .award_img img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    height: 180px;
    width: 180px;
}

.awards .awards_block .award_img img[src="images/2025-badge-With-Sample.png"] {
    height: auto;
}

.awards .awards_block .award_desc {
    padding: 10px;
    font-family: "lato", sans-serif;
    width: 62%;
    flex: 0 0 62%;
}

.awards .awards_block .award_desc h3 {
    font-size: 22px;
    font-weight: 800;
}

.awards .awards_block .award_desc p {
    font-size: 14px;
    font-weight: 400;
    color: #7A7A7A;
}

.awards .awards_block .award_desc .bottom_btn {
    display: flex;
    justify-content: space-between;
}

.awards .awards_block .award_desc .bottom_btn .btn {
    width: 45%;
    margin-right: 10px;
    font-size: 15px;
    padding: 12px 15px;
    border-radius: 3px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
}

.awards .awards_block .award_desc .bottom_btn .btn:last-child {
    margin-right: 0;
}

.awards .awards_block .award_desc .bottom_btn .btn.btn_yellow {
    background-color: #ffa801;
}

.awards .awards_block .award_desc .bottom_btn .btn.btn_yellow:hover {
    background-color: #000;
}

.awards .awards_block .award_desc .bottom_btn .btn.btn_green {
    background-color: #30980C;
}

.awards .awards_block .award_desc .bottom_btn .btn.btn_green:hover {
    background-color: #000;
}

.winners {
    background-color: #ffa801;
}

.winners .common_title {
    margin-bottom: 30px;
}

.winners .common_title h2 span {
    color: #fff;
}

.winners .award_carousel .slide {
    text-align: center;
}

.winners .award_carousel .slide img {
    border-radius: 8px 8px 8px 8px;
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
}

.pricing .common_title h4 {
    font-family: "lato", sans-serif;
    color: #353535;
    font-weight: 600;
    font-size: 2rem;
}

.pricing_block {
    margin-top: 60px;
}

.pricing_block .inner_price {
    padding: 15px;
    border: 1px solid #ffa801;
    box-shadow: 0px 15px 10px 0px rgba(0, 0, 0, 0.16);
    border-radius: 25px;
}

.pricing_block h6 {
    text-align: center;
    font-size: 20px;
}

.pricing_block h6 span {
    background-color: #C5FFB4;
    color: #29AF00;
    text-transform: uppercase;
}

.pricing_block .img {
    text-align: center;
    margin: 20px 0;
}

.pricing_block .img img {
    width: 60%;
}

.pricing_block h2 {
    text-align: center;
    color: #676767;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.pricing_block .card {
    border: 0;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
}

.pricing_block .card p {
    color: #B3B3B3;
    text-decoration: line-through;
    text-decoration-color: red;
    margin-bottom: 0;
}

.pricing_block .card h3 {
    color: #ffa801;
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 0;
}

.pricing_block .card h3 small {
    color: #B3B3B3;
    font-size: 14px;
    font-weight: 400;
}

.pricing_block ul li {
    color: #565656;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
    font-family: "lato", sans-serif;
    font-size: 14px;
}

.pricing_block ul li:before {
    content: "";
    background-image: url(../images/check.png);
    position: absolute;
    left: 0;
    top: 5px;
    height: 18px;
    width: 18px;
    background-size: cover;
    background-repeat: no-repeat;
}

.pricing_block ul li a {
    color: #ffa801;
    display: block;
}

.pricing_block ul li a:hover {
    color: #000;
}

.pricing_block .btn {
    width: 70%;
    display: block;
    margin: 25px auto;
    background-color: #ffa801;
    color: #fff;
    height: 51px;
    border-radius: 15px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing_block .btn:hover {
    background-color: #000;
}

.bottom_btn {
    display: flex;
    font-family: "lato", sans-serif;
    margin-top: 30px;
}

.bottom_btn .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border: 2px solid transparent;
}

.bottom_btn .btn.btn_fill {
    background-color: #ffa801;
    color: #fff;
}

.bottom_btn .btn.btn_fill:hover {
    background-color: #000;
}

.bottom_btn .btn.btn_outline {
    background-color: transparent;
    border-color: #ffa801;
    color: #ffa801;
    margin-left: 15px;
}

.bottom_btn .btn.btn_outline:hover {
    background-color: #ffa801;
    color: #fff;
}

/*---DECAL WIDNOW----------*/
.decal_wrraper {
    background-color: #f9fafb;
}

.decal_wrraper .decal_title {
    background-color: #fff;
    padding: 75px 0 !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-top: 1px solid #ccc;
}

.decal_wrraper .decal_title h2 {
    font-size: 32px;
    font-weight: 700;
}

.decal_wrraper .decal_title p {
    font-size: 18px;
    color: #3A3A3C;
    margin-bottom: 0;
    font-family: "lato", sans-serif;
}

.decal_wrraper .decal_desc {
    padding: 75px 0 !important;
}

.decal_wrraper .decal_desc h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.decal_wrraper .decal_desc p {
    font-size: 18px;
    font-family: "lato", sans-serif;
    color: #4b5563;
    line-height: 30px;
    text-align: justify;
}

.decal_wrraper .decal_desc .card {
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 0;
    margin-top: 25px;
}

.decal_wrraper .decal_desc .card .card-body h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

.decal_wrraper .decal_desc .card .card-body ul li {
    display: flex;
    margin-bottom: 10px;
    font-family: "lato", sans-serif;
}

.decal_wrraper .decal_desc .card .card-body ul li span {
    font-size: 16px;
}

.decal_wrraper .decal_desc .card .card-body ul li svg {
    color: #10b981;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 10px;
}

.decal_wrraper .search_question {
    margin: 30px 0;
}

.decal_wrraper .search_question .card {
    border: 0;
    padding: 15px 50px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.decal_wrraper .search_question .card .input_field {
    position: relative;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 55px;
    padding-left: 50px;
}

.decal_wrraper .search_question .card .input_field .form-control {
    border: 0;
    height: 50px;
    border-radius: 10px;
    font-family: "lato", sans-serif;
}

.decal_wrraper .search_question .card .input_field .form-control:active,
.decal_wrraper .search_question .card .input_field .form-control:visited,
.decal_wrraper .search_question .card .input_field .form-control:focus {
    box-shadow: none;
    border: 0;
    outline: none;
}

.decal_wrraper .search_question .card .input_field svg {
    color: #9ca3af;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.decal_wrraper .accordion {
    margin-bottom: 30px;
    font-family: "lato", sans-serif;
}

.decal_wrraper .accordion .accordion-button:not(.collapsed) {
    background-color: rgba(255, 168, 1, 0.19);
    color: #000;
}

.decal_wrraper .accordion .accordion-button:active,
.decal_wrraper .accordion .accordion-button:visited,
.decal_wrraper .accordion .accordion-button:focus {
    box-shadow: none;
    border: 0;
    outline: none;
}

.decal_wrraper .accordion .accordion-body p {
    color: #4b5563;
}

.decal_wrraper .accordion .accordion-body ul li {
    color: #4b5563;
    display: flex;
    margin-bottom: 10px;
    font-size: 16px;
}

.decal_wrraper .accordion .accordion-body ul li span {
    background-color: #ffa801;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
}

.decal_wrraper .accordion .accordion-body ul li svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #10b981;
    margin-right: 10px;
}

.decal_img {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 0.75rem;
    overflow: hidden;
    height: 15rem;
    position: relative;
}

.decal_img a {
    display: block;
    text-decoration: none;
    color: #fff;
}

.decal_img a:hover {
    color: #ffa801;
}

.decal_img img {
    height: 15rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.decal_img .mask {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 35%, rgba(0, 0, 0, 0) 100%);
    padding: 20px;
    width: 100%;
}

.decal_img .mask p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 0;
}

.decal_img .mask p small {
    display: block;
}

.decal_img.large {
    height: 28rem;
    margin-bottom: 25px;
}

.decal_img.large img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    height: 28rem;
    width: 100%;
}

.legend_btn {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 30px;
}

.legend_btn .btn {
    font-family: "lato", sans-serif;
    font-size: 18px;
    padding: 1rem;
    border-color: #e5e7eb;
    background-color: #fff;
}

.legend_btn .btn:hover {
    background-color: transparent;
}

.legend_btn .btn.active {
    background-color: #ffa801;
    color: #fff;
    border-color: #ffa801;
}

.new_plaque .decal_img {
    margin-bottom: 30px;
}

.new_plaque .decal_img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.glass_trophy [class*=col-] {
    position: relative;
}

.glass_trophy .decal_img {
    margin-bottom: 30px;
    height: 30rem;
}

.glass_trophy .decal_img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.glass_trophy .glass_tropy_desc {
    position: sticky;
    top: 120px;
}

/*-----PRESS RELEASE--------*/
.press_release {
    margin: 50px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.press_release .pressImg {
    padding: 30px 20px;
    height: 100%;
    display: flex;
    /* Add flexbox to center */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.press_release .pressImg img {
    max-width: 100%;
    height: auto;
    /* Removes fixed height */
    object-fit: cover;
    /* Or 'contain' if you want to see the whole image */
}

.press_release.gym .pressImg img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 90%;
    display: block;
    margin: 0 auto;
}

.press_release [class*=col-]:first-child {
    background: #f8f9fa;
}

.press_release .press_desc {
    padding: 30px 20px;
}

.press_release .press_desc .common_title {
    text-align: left;
}

.press_release .press_desc p {
    font-family: "lato", sans-serif;
    text-align: justify;
}

.press_release .press_desc p a {
    color: #ffa801;
}

.press_release .press_desc p a:hover {
    color: #000;
}

.press_release .press_desc .common_title .card {
    border: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.press_release .press_desc .common_title .card .card-body ul {
    margin: 0;
}

.press_release .press_desc .common_title .card .card-body ul li {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3338;
}

.press_release .press_desc .common_title .card .card-body ul li svg {
    width: 24px;
    height: 24px;
    fill: #FFA500;
    flex-shrink: 0;
}

.press_release h4 {
    font-size: 25px;
}

.press_release ul {
    margin-top: 15px;
}

.press_release ul li {
    margin-bottom: 10px;
}

.press_release ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: #ffa801;
    transition: all 0.2s;
}

.press_release ul li a:hover {
    background-color: #000;
}

.press_release.gym .highlighter {
    background-color: #fff;
}

.press_release.gym .highlighter p {
    color: #000;
}

.press_release.gym .bottom_btn .btn svg {
    width: 24px;
    height: 24px;
    animation: bounceArrow 2s infinite;
}

.press_release.award_winner {
    box-shadow: none;
}

.press_release.award_winner .common_title p {
    font-weight: 600 !important;
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    color: #ffa801 !important;
}

.press_release.award_winner .common_title .card {
    background: #f8f9fa;
    border: 1px solid #eee !important;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: none !important;
}

.press_release.award_winner .common_title .card .card-body {
    padding: 0;
}

.press_release.award_winner .common_title .card .card-body ul li {
    font-size: 1.75rem !important;
    font-weight: 700;
    color: #2c3338;
    font-family: "lato", sans-serif;
}

.press_release.award_winner [class*=col-]:first-child {
    background: #fff;
}

.press_release.award_winner .press_desc p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.press_release.award_winner .highlighter {
    padding-top: 5px;
    padding-bottom: 5px;
    border-width: 3px;
}

.press_release.award_winner .highlighter p {
    color: #555 !important;
    margin-bottom: 0;
}

.press_release.award_winner .bottom_btn .btn.btn_fill {
    border: 2px solid #2c3338;
    border-radius: 4px;
    color: #2c3338;
    background: transparent;
}

.press_release.award_winner .bottom_btn .btn.btn_fill:hover {
    background: #2c3338;
    color: #fff;
}

.press_release.award_winner .bottom_btn .btn.btn_outline {
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    color: #2c3338;
}

.press_release.award_winner .bottom_btn .btn.btn_outline:hover {
    background: #ffa801;
}

@keyframes bounceArrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(3px);
    }
}

.highlighter {
    background: rgba(255, 168, 1, 0.08);
    border-left: 4px solid #ffa801;
    padding: 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.highlighter p {
    color: #ffa801;
    margin-bottom: 0;
}

.highlighter ul li {
    display: flex;
    margin-bottom: 10px;
    font-family: "lato", sans-serif;
}

.highlighter ul li svg {
    color: #ffa801;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 10px;
}

.note {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.note .icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #ffa801;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note .txt {
    font-size: 14px;
    font-family: "lato", sans-serif;
}

.whyNeed_press {
    padding: 75px 0 !important;
}

.whyNeed_press .heading {
    text-align: center;
    margin-bottom: 50px;
}

.whyNeed_press .heading h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.whyNeed_press .heading p {
    font-family: "lato", sans-serif;
    font-size: 20px;
}

.whyNeed_press .card {
    border: 0;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.whyNeed_press .card .ico {
    width: 50px;
    height: 50px;
    background: rgba(255, 168, 1, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.whyNeed_press .card .ico svg {
    stroke: #ffa801;
}

.whyNeed_press .card h4 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.whyNeed_press .card p {
    font-family: "lato", sans-serif;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.whyNeed_press .share_story {
    background: linear-gradient(to right, rgba(255, 168, 1, 0.1), #ffffff);
    padding: 40px;
    border-radius: 16px;
    margin: 50px 0;
}

.whyNeed_press .share_story h4 {
    font-size: 25px;
}

.whyNeed_press .share_story p {
    font-size: 14px;
    font-family: "lato", sans-serif;
}

.whyNeed_press .share_story .btn {
    padding: 12px 24px;
    background-color: #ffa801;
    color: #fff;
}

.whyNeed_press .share_story .btn:hover {
    background-color: #000;
}

.whyNeed_press .share_story ul {
    flex: 0 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 0;
    justify-content: flex-end;
}

.whyNeed_press .share_story ul li {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #ddd;
}

.whyNeed_press .share_story ul li:last-child {
    border: 0;
}

.whyNeed_press .share_story ul li h4 {
    color: #ffa801;
    font-size: 32px;
    font-weight: 800;
}

.whyNeed_press .share_story ul li h4 small {
    display: block;
    color: #666;
    font-size: 13px;
    font-weight: 400;
    font-family: "lato", sans-serif;
    margin-top: 5px;
}

.google_news {
    background-color: #ffa801;
    font-family: "lato", sans-serif;
    color: #fff;
}

.google_news h2 {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 43px;
}

.google_news p {
    line-height: 28px;
    font-size: 15px;
    font-weight: 400;
}

.google_news .google_searach_img {
    min-height: 475px;
    border-radius: 15px;
    background-size: cover;
    background-position: top center;
    transition: ease-in-out 7s !important;
}

.google_news .google_searach_img:hover {
    background-position: center bottom !important;
}

/*-----SEARCH PAGE--------*/
.on_banner_search {
    margin-top: -90px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.on_banner_search .businessQuality_finder {
    margin-top: 0;
}

.search_result .result-card {
    background: white;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.07);
}

.search_result .result-card .award-icon {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    -o-object-fit: contain;
    object-fit: contain;
}

.search_result .result-card .business-info {
    flex-grow: 1;
}

.search_result .result-card .business-info .business-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3338;
    margin-bottom: 0.5rem;
}

.search_result .result-card .business-info .business-meta {
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.search_result .result-card .business-info .business-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.search_result .result-card .business-info .business-meta .meta-item .meta-icon {
    width: 14px;
    height: 14px;
    fill: #ffa801;
}

.search_result .result-card .view-btn {
    background: #FFA500;
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.search_result .result-card .view-btn:hover {
    background-color: #000;
}

/*-----rated--------*/
.rated {
    margin: 100px 0;
}

.rated .row {
    position: relative;
    z-index: 2;
}

.rated .legend {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#c49c56+1,b08849+9,f6e3a0+22,faf5d9+36,c49c56+46,915d38+59,c49c56+75,faf5d9+89,c49c56+100 */
    background: linear-gradient(to right, rgb(196, 156, 86) 1%, rgb(176, 136, 73) 9%, rgb(246, 227, 160) 22%, rgb(250, 245, 217) 36%, rgb(196, 156, 86) 46%, rgb(145, 93, 56) 59%, rgb(196, 156, 86) 75%, rgb(250, 245, 217) 89%, rgb(196, 156, 86) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    padding: 8px 15px 8px 15px;
    border-radius: 45px 45px 45px 45px;
    color: #FFFFFF;
    font-family: "lato", sans-serif;
    font-size: 30px;
    font-weight: 600;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
    margin-top: -50px;
    margin-bottom: 20px;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.16);
    position: relative;
    z-index: 999;
}

.rated .card-body {
    background-color: #fff;
    border-radius: 25px;
    padding-bottom: 10px;
    background: linear-gradient(to right, rgb(196, 156, 86) 1%, rgb(176, 136, 73) 9%, rgb(246, 227, 160) 22%, rgb(250, 245, 217) 36%, rgb(196, 156, 86) 46%, rgb(145, 93, 56) 59%, rgb(196, 156, 86) 75%, rgb(250, 245, 217) 89%, rgb(196, 156, 86) 100%);
    position: relative;
}

.rated .card-body:after {
    content: "";
    position: absolute;
    top: 5px;
    /* Adjust based on border width */
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: white;
    /* Inner content background */
    border-radius: 25px;
    /* Adjust to match inner border corner */
}

.rated .card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 0;
    border-width: 2px;
    border-radius: 25px;
    position: relative;
    margin-top: 0 !important;
}

.rated .card .card-body .card {
    background-color: #f5f5f5;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: none;
    border: 2px solid #C59D58;
    border-radius: 0;
    margin-bottom: 10px;
}

.rated .card .card-body .card .card-body {
    border-radius: 0;
    padding-top: 7px;
    padding-bottom: 7px;
    background: #fff;
}

.rated .card .card-body .card h3 {
    background: linear-gradient(to right, rgb(196, 156, 86) 1%, rgb(176, 136, 73) 9%, rgb(246, 227, 160) 22%, rgb(250, 245, 217) 36%, rgb(196, 156, 86) 46%, rgb(145, 93, 56) 59%, rgb(196, 156, 86) 75%, rgb(250, 245, 217) 89%, rgb(196, 156, 86) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    padding: 5px 10px;
    margin-bottom: 0;
}

.rated .card .card-body .card ul {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 333;
}

.rated .card .card-body .card ul li {
    max-width: 50%;
    flex: 0 0 50%;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3338;
    font-family: "lato", sans-serif;
}

.rated .card .card-body .card ul li:last-child {
    margin-bottom: 0;
}

.rated .card .card-body .card ul li img {
    width: 24px;
    height: 24px;
    fill: #ffa801;
    margin-right: 10px;
}

.rated p {
    font-family: "lato", sans-serif;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    /* Make the border transparent initially */
    -o-border-image: linear-gradient(to right, rgb(196, 156, 86) 1%, rgb(176, 136, 73) 9%, rgb(246, 227, 160) 22%, rgb(250, 245, 217) 36%, rgb(196, 156, 86) 46%, rgb(145, 93, 56) 59%, rgb(196, 156, 86) 75%, rgb(250, 245, 217) 89%, rgb(196, 156, 86) 100%);
    border-image: linear-gradient(to right, rgb(196, 156, 86) 1%, rgb(176, 136, 73) 9%, rgb(246, 227, 160) 22%, rgb(250, 245, 217) 36%, rgb(196, 156, 86) 46%, rgb(145, 93, 56) 59%, rgb(196, 156, 86) 75%, rgb(250, 245, 217) 89%, rgb(196, 156, 86) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-image-slice: 1;
    /* Slice the border image to fit */
    padding-bottom: 5px;
}

.rated .rating {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.rated .rating li {
    display: flex;
    max-width: 50%;
    flex: 0 0 50%;
    align-items: center;
    margin-bottom: 5px;
    color: #C59D58;
    font-weight: 700;
}

.rated .rating li img {
    width: 100px;
}

.rated .rating li span {
    font-size: 20px;
    width: 150px;
    margin-left: 25px;
}

.rated .bottom_btn {
    display: flex;
    align-items: center;
    margin-top: 0;
}

.rated .bottom_btn .btn {
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    margin-bottom: 15px;
    margin-bottom: 0;
    font-size: 13px;
}

.rated .bottom_btn .btn.btn_fill {
    background-color: #000000;
}

.rated .bottom_btn .btn.btn_outline {
    color: #C59D58;
    border-color: #C59D58;
    margin-left: 5px;
}

.rated .bottom_btn .btn.btn_outline:hover {
    background-color: #C59D58;
    color: #fff;
}

.ward_logo img {
    width: 100%;
}

/*-----BUSINESS FINDER--------*/
.business_finder .common_title h2 {
    font-size: 35px;
}

.business_finder .steps_count {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.business_finder .steps_count li {
    text-align: center;
    position: relative;
    padding-right: 90px;
}

.business_finder .steps_count li:after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #c9cacb;
    position: absolute;
    left: 0;
    top: 32%;
    transform: translateY(-32%);
}

.business_finder .steps_count li:last-child {
    padding-right: 0;
}

.business_finder .steps_count li:last-child:after {
    display: none;
}

.business_finder .steps_count li span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: #c9cacb;
    border-radius: 50%;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.business_finder .steps_count li small {
    color: #ccc;
    display: block;
    font-weight: 800;
    margin-top: 5px;
    text-transform: uppercase;
}

.business_finder .steps_count li.active span {
    background-color: #ffa801;
    color: #fff;
}

.business_finder .steps_count li.active small {
    color: #909090;
}

.business_finder .searh_form .form-control {
    width: 70%;
    height: 60px;
}

.business_finder .searh_form .btn {
    font-size: 18px;
    width: 180px;
}

.business_finder .table-responsive {
    padding: 25px;
    background: #f1f3f6;
    border-radius: 20px;
}

.business_finder .table-responsive table {
    font-size: 18px;
    font-family: "lato", sans-serif;
}

.business_finder .table-responsive table th,
.business_finder .table-responsive table td {
    padding: 15px;
}

.business_finder .table-responsive table td img {
    width: 90px;
}

.business_finder .table-responsive table td .btn {
    background-color: #ffa801;
    color: #fff;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 15px;
}

.business_finder .table-responsive table td .btn:hover {
    background-color: #000;
}

.business_finder .request_consi .request_form {
    padding: 50px;
    width: 80%;
    margin: 0 auto;
}

.business_finder .request_consi .inner_form small {
    font-size: 12px;
}

.business_finder .request_consi .inner_form ul li {
    display: flex;
    font-size: 12px;
    color: rgb(0, 138, 0);
}

.business_finder .request_consi .inner_form ul li h5 {
    font-weight: 800;
}

.business_finder .request_consi .inner_form ul li svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 10px;
}

.business_finder .request_consi .inner_form h4 {
    font-size: 18px;
}

.business_finder .request_consi .inner_form .form-control {
    font-size: 13px;
}

.business_finder .request_consi .inner_form .card_number {
    position: relative;
}

.business_finder .request_consi .inner_form .card_number .form-control {
    background: url(../images/credit-card.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: 98%;
}

.business_finder .request_consi .inner_form .card_number a {
    background-color: #000;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    display: inline-block;
    padding: 2px 4px;
    font-weight: 600;
    position: absolute;
    top: 75%;
    right: 50px;
    transform: translateY(-75%);
}

.business_finder .request_consi .inner_form .card_number a:hover {
    background-color: #07513a;
}

.business_finder .request_consi .inner_form .card_number a span {
    color: #00d66f;
}

/*----banner badge---------*/
.banner_badge_top {
    margin-top: 70px;
    font-family: "lato", sans-serif;
}

.banner_badge_top .row [class*=col-]:nth-child(1) {
    margin-right: -50px;
}

.banner_badge_top .row [class*=col-]:nth-child(2) {
    position: relative;
    z-index: 1;
    transform: translateY(-50px);
}

.banner_badge_top .row [class*=col-]:nth-child(3) {
    margin-left: -50px;
}

.banner_badge_top .card {
    background-color: #fff2da;
    border-color: #ffa801;
    text-align: center;
    height: 200px;
    border-radius: 25px;
}

.banner_badge_top .card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
}

.banner_badge_top .card .card-body img {
    height: 80px;
    width: 80px;
    background-color: #ffdf9c;
    padding: 10px;
    border-radius: 10px;
}

.banner_badge_top .card .card-body p {
    font-size: 20px;
    font-weight: 600;
}

.digital_badgeDec .hightlighter {
    background: rgba(255, 168, 1, 0.08);
    border-left: 4px solid #ffa801;
    padding: 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.digital_badgeDec .hightlighter p {
    margin-bottom: 0;
}

.digital_badgeDec ul {
    padding: 25px 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
}

.digital_badgeDec ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.digital_badgeDec ul li img,
.digital_badgeDec ul li svg {
    margin-right: 20px;
    width: 20px;
    height: 20px;
}

.digital_banner {
    background-color: #FFF2CA;
    position: relative;
}

.digital_banner .common_title {
    padding-bottom: 25px;
}

.digital_banner p {
    font-size: 16px;
    line-height: 30px;
}

.digital_banner ul {
    margin-top: 35px;
}

.digital_badgeDec {
    position: sticky;
    top: 120px;
    font-family: "lato", sans-serif;
}

.awardsSample_img .img {
    margin-bottom: 10px;
    position: relative;
}

.awardsSample_img .img img {
    width: 100%;
    border-radius: 15px;
}

.awardsSample_img .img span {
    display: block;
    background-color: rgb(255, 255, 255);
    color: #000000;
    width: 100%;
    padding: 15px;
    font-size: 14px;
    font-family: "lato", sans-serif;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: center;
    font-weight: 700;
    margin-top: -15px;
    position: relative;
    z-index: 1;
}

.certi_img {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.certi_img img {
    max-width: 50%;
    flex: 0 0 50%;
    box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.24);
    border-radius: 5px;
}

.certi_img img.hori {
    margin-right: -50px;
    position: relative;
}

.order_now {
    padding: 25px 0;
    background-color: rgba(255, 168, 1, 0.13);
    border: 1px solid #ffa801;
    margin: 15px 0;
}

.order_now .btn {
    background-color: #ffa801;
    text-transform: uppercase;
    font-size: 22px;
    width: 300px;
    height: 50px;
    color: #fff;
}

.order_now .btn:hover {
    background-color: #000;
}

/*-------------*/
.titlec1 {
    text-align: center;
    width: 100%;
    padding-top: 50px !important;
}

.titlec1 h1 {
    font-size: 3.5rem;
    color: #E73438;
}

.b_form_home.edit_search {
    background-color: #ffa801;
    color: #fff;
    font-size: 27px;
    font-weight: 800;
    font-family: "lato", sans-serif;
    text-decoration: none;
    padding: 15px 28px;
    margin: 20px 0px;
    display: inline-block;
}

.b_form_home.edit_search:hover {
    background-color: #000;
}



.verification_process,
.why_verify,
.privacy_matters,
.verification_cta {
    font-family: "lato", sans-serif;
}

.verification_card {
    height: 100%;
}

@media screen and (max-width: 992px) {

    html,
    body {
        overflow-x: hidden;
    }

    .navbar {
        position: relative;
    }

    .home_hero,
    .home_hero.gym_lock {
        padding: 75px 0 !important;
        min-height: 250px;
    }

    .home_hero.search_banner,
    .home_hero.gym_lock.search_banner {
        min-height: 250px;
        padding-top: 50px;
    }

    .home_hero p,
    .home_hero.gym_lock p {
        font-size: 4vw;
    }

    .home_hero h2,
    .home_hero.gym_lock h2 {
        font-size: 6.5vw;
        margin-bottom: 15px;
    }

    .home_hero .btn,
    .home_hero.gym_lock .btn {
        border-width: 1px;
        font-size: 3vw;
    }

    .banner_badge_top {
        margin-top: 0;
    }

    .banner_badge_top .row [class*=col-]:nth-child(1) {
        margin-right: 0;
    }

    .banner_badge_top .row [class*=col-]:nth-child(2) {
        transform: translateY(0);
    }

    .banner_badge_top .row [class*=col-]:nth-child(3) {
        margin-left: 0;
    }

    .common_title h2,
    .welcome .title h2 {
        font-size: 30px;
    }

    .common_title p,
    .welcome .title p {
        font-size: 16px;
    }

    .footer .top_area img {
        margin-bottom: 15px;
    }

    .footer .top_area .email img {
        margin-bottom: 0;
        width: 30px;
    }

    .welcome ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .welcome ul li {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 15px;
    }

    .welcome ul li img {
        width: 70px;
    }

    .welcome ul li p {
        font-size: 14px;
    }

    .about_business h2,
    .business_quality .title h2,
    .about_us h2,
    .judging_pannel .title h2,
    .request_consi .title h2 {
        font-size: 30px;
    }

    .about_business h2 small,
    .business_quality .title h2 small,
    .about_us h2 small,
    .judging_pannel .title h2 small,
    .request_consi .title h2 small {
        font-size: 20px;
    }

    .about_business p,
    .business_quality .title p,
    .about_us p,
    .judging_pannel .title p,
    .request_consi .title p {
        font-size: 18px;
    }

    .businessQuality_finder h3 {
        font-size: 18px;
    }

    .businessQuality_finder .searh_form {
        flex-direction: column;
    }

    .location_block .heading {
        padding: 10px;
    }

    .location_block .heading h2 {
        font-size: 25px;
    }

    .location_block .inner_cities_area {
        padding: 15px;
    }

    .location_block ul li {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .location_block ul li a {
        font-size: 12px;
    }

    .location_block .more_cities {
        text-align: center;
    }

    .location_block .more_cities .btn {
        font-size: 14px;
    }

    .about_us p,
    .request_consi .title p {
        font-size: 14px;
        text-align: left;
    }

    .press_release {
        margin-top: 0;
    }

    .press_release.gym .pressImg img {
        width: 50%;
        margin: 0 auto;
        display: block;
    }

    .steps .step_img {
        text-align: center !important;
    }

    .steps .step_img img {
        width: 150px;
    }

    .steps .step_counter {
        text-align: left;
    }

    .steps .step_counter:after {
        display: none;
    }

    .steps .step_counter h3 {
        margin-left: 0;
    }

    .steps .step_row:nth-child(even) .col-md-2 {
        order: 1;
    }

    .steps .step_row:nth-child(even) .col-md-5:first-child {
        order: 0;
    }

    .steps .step_desc {
        padding-left: 50px;
        position: relative;
    }

    .steps .step_desc:before {
        content: "";
        left: 25px;
        top: 0;
        position: absolute;
        width: 2px;
        height: 100%;
        background-color: #ffa801;
    }

    .request_consi .request_form {
        padding: 10px;
    }

    .request_consi .request_form .inner_form {
        padding: 10px;
    }

    .business_finder .common_title h2 {
        font-size: 25px;
    }

    .business_finder .searh_form .form-control {
        width: 100%;
    }

    .business_finder .request_consi .request_form {
        width: 100%;
        padding: 15px;
    }

    .business_finder .request_consi .request_form .inner_form .btn {
        width: 100%;
    }

    .businessQuality_finder {
        padding: 25px 15px;
    }

    .business_finder .table-responsive table {
        font-size: 14px;
    }

    .business_finder .table-responsive table td img {
        width: 50px;
        margin-right: 15px;
    }

    .awards .awards_block {
        padding: 1vw;
    }

    .awards .awards_block .award_img {
        padding: 1vw;
        width: 30%;
        flex: 0 0 30%;
    }

    .awards .awards_block .award_img img {
        height: auto;
    }

    .awards .awards_block .award_desc {
        padding: 1vw;
        width: 70%;
        flex: 0 0 70%;
    }

    .awards .awards_block .award_desc h3 {
        font-size: 4vw;
    }

    .awards .awards_block .award_desc p {
        font-size: 3vw;
        margin-bottom: 0;
    }

    .awards .awards_block .award_desc .bottom_btn {
        margin-top: 2.5vw;
    }

    .awards .awards_block .award_desc .bottom_btn .btn {
        margin-right: 2vw;
        font-size: 2.5vw;
        padding: 2vw 2vw;
    }

    .banner_badge_top .card {
        height: 145px;
    }

    .banner_badge_top .card .card-body img {
        height: 13vw;
        width: 13vw;
    }

    .banner_badge_top .card .card-body p {
        margin-bottom: 0;
        font-size: 4vw;
    }

    .banner_badge_top .row [class*=col-]:nth-child(2) {
        transform: translateY(-25px);
    }

    .digital_badgeDec ul {
        display: flex;
        flex-wrap: wrap;
        padding: 15px;
    }

    .digital_badgeDec ul li {
        flex: 0 0 50%;
        max-width: 50%;
        font-size: 3vw;
    }

    .digital_badgeDec ul li img,
    .digital_badgeDec ul li svg {
        margin-right: 3vw;
    }

    .pricing .common_title h4 {
        font-size: 20px;
    }

    .pricing_block .inner_price {
        margin-bottom: 30px;
    }

    .glass_trophy .glass_tropy_desc {
        margin-bottom: 25px;
    }

    .decal_wrraper .decal_desc {
        padding-top: 5px;
    }

    .decal_wrraper .decal_desc p {
        font-size: 14px;
        line-height: 25px;
    }

    .new_plaque .decal_img {
        margin-top: 30px;
    }

    .whyNeed_press .share_story {
        text-align: center;
    }

    .whyNeed_press .share_story ul {
        flex-direction: column;
        margin-top: 25px;
    }

    .whyNeed_press .share_story ul li {
        border-bottom: 1px solid #ddd;
        border-right: 0;
        padding: 0;
    }

    .whyNeed_press .share_story ul li h4 {
        font-size: 14px;
    }

    .on_banner_search {
        margin-top: 15px;
    }

    .search_result .result-card {
        padding: 2vw;
    }

    .search_result .result-card .award-icon {
        margin-right: 2vw;
        width: 45px;
        height: 45px;
    }

    .search_result .result-card .business-info {
        padding: 2vw;
    }

    .search_result .result-card .business-info .business-name {
        font-size: 4vw;
        margin-bottom: 0.1vw;
    }

    .search_result .result-card .business-info .business-meta {
        font-size: 3vw;
        gap: 1vw;
    }

    .search_result .result-card .business-info .business-meta .meta-item {
        gap: 1vw;
    }

    .search_result .result-card .view-btn {
        padding: 2vw 5vw;
        font-size: 3vw;
    }

    .decal_wrraper .decal_desc .card .card-body ul li span {
        font-size: 14px;
    }

    .decal_wrraper .search_question .card {
        padding: 10px;
    }

    .decal_wrraper .accordion .accordion-body ul li span {
        flex: 0 0 30px;
        width: 30px;
    }

    .decal_img {
        margin-bottom: 25px;
    }

    .legend_btn {
        flex-direction: column;
        display: flex;
    }

    .decal_img.large {
        margin-top: 15px;
    }

    .decal_wrraper .decal_title {
        padding: 25px 0;
        text-align: center;
    }

    .decal_wrraper .decal_title h2 {
        font-size: 22px;
    }

    .decal_wrraper .decal_title p {
        font-size: 14px;
    }

    .pricing_block .img {
        margin: 10px 0;
    }

    .pricing_block .img img {
        width: 35%;
    }

    .pricing_block h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .pricing_block .card h3 {
        font-size: 30px;
    }

    .pricing_block .card p {
        font-size: 12px;
    }

    .pricing_block ul li {
        font-size: 13px;
    }

    .pricing_block .btn {
        height: 40px;
        width: 50%;
        font-size: 14px;
    }

    .press_release.gym .bottom_btn .btn {
        font-size: 3vw;
        height: auto;
        padding: 1.5vw 1vw;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .press_release.gym .bottom_btn .btn svg {
        width: 15px;
        height: 15px;
    }

    .rated .legend {
        font-size: 5.5vw;
    }

    .rated p {
        font-size: 3vw;
    }

    .rated .ward_logo {
        text-align: center;
        margin-bottom: 15px;
    }

    .rated .ward_logo img {
        width: 70%;
    }

    .rated .card-body {
        padding-bottom: 30px;
    }

    .rated .card .card-body .card h3 {
        font-size: 4.5vw;
    }

    .rated .card .card-body .card ul {
        list-style: none;
        padding-left: 0;
    }

    .rated .card .card-body .card ul li {
        font-size: 3vw;
        display: flex;
    }

    .rated .card .card-body .card ul li img {
        max-width: 18px;
        height: 18px;
    }

    .rated .card .card-body .card ul li:last-child {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .rated .rating {
        margin-bottom: 15px;
    }

    .rated .rating li span {
        font-size: 3.2vw;
        width: auto;
    }
}

/* Locations Section */
.locations_section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.locations_section .location_accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.locations_section .location_accordion .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.locations_section .location_accordion .accordion-header {
    margin-bottom: 0;
}

.locations_section .location_accordion .accordion-button {
    background: linear-gradient(135deg, #ffa801 0%, #ff9500 100%);
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 20px 25px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.locations_section .location_accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ff9500 0%, #ffa801 100%);
    color: white;
    box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.125);
}

.locations_section .location_accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.locations_section .location_accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.locations_section .location_accordion .accordion-button:hover {
    background: linear-gradient(135deg, #ff9500 0%, #e68700 100%);
}

.locations_section .location_accordion .accordion-collapse {
    border: none;
}

.locations_section .location_accordion .accordion-body {
    padding: 30px;
    background-color: white;
}

.locations_section .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.locations_section .cities-grid .city-link {
    display: block;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.locations_section .cities-grid .city-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 168, 1, 0.1), transparent);
    transition: left 0.5s ease;
}

.locations_section .cities-grid .city-link:hover::before {
    left: 100%;
}

.locations_section .cities-grid .city-link:hover {
    background-color: white;
    border-color: #ffa801;
    color: #ffa801;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 168, 1, 0.2);
}

.locations_section .cities-grid .city-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 168, 1, 0.3);
}

@media (max-width: 768px) {
    .locations_section .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }

    .locations_section .cities-grid .city-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .locations_section .location_accordion .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 30px 0 0;
    margin-top: 50px;
    font-family: "lato", sans-serif;
}

.footer-main {
    padding-bottom: 20px;
    border-bottom: 1px solid #34495e;
}

.footer-section {
    margin-bottom: 15px;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.footer-about {
    font-size: 13px;
    line-height: 1.4;
    color: #bdc3c7;
    margin-bottom: 10px;
    font-family: "lato", sans-serif;
}

.footer-contact {
    font-size: 13px;
    color: #ffa801;
    margin-bottom: 0;
    font-family: "lato", sans-serif;
}

.footer-section h5 {
    color: #ffa801;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "lato", sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    font-family: "lato", sans-serif;
}

.footer-links a:hover {
    color: #ffa801;
}

.footer-bottom {
    background-color: #1a252f;
    padding: 15px 0;
}

.copyright {
    margin: 0;
    font-size: 12px;
    color: #7f8c8d;
    font-family: "lato", sans-serif;
}

.footer-bottom-links {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    font-family: "lato", sans-serif;
}

.footer-bottom-links a:hover {
    color: #ffa801;
}

.footer-bottom-links .divider {
    color: #7f8c8d;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .footer {
        padding: 25px 0 0;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-bottom-links {
        justify-content: center;
        text-align: center;
        margin-top: 10px;
    }

    .copyright {
        text-align: center;
    }
}

/*# sourceMappingURL=style.css.map */
```