* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a497b;
    --secondary-color: #3c3c3e;
    --background: #fff;
    --background-secondary: #eef3f7;
    --clr-white: rgb(255, 255, 255);
    --clr-black: rgb(0, 0, 0);
    --clr-light: rgb(245, 248, 255);
    --clr-light-gray: rgb(196, 195, 196);
    --clr-blue: rgb(63, 134, 255);
    --clr-light-blue: rgb(171, 202, 255);
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Roboto Condensed", sans-serif;
    background: var(--background);
}

.background-primary {
    background: var(--primary-color);
}

.background-secondary {
    background: var(--background-secondary);
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #0a497b 0%, #0a497b 40%, #eef3f7 100%);
}

.login-card {
    background-color: white;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.login-card h2 {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.login-card p {
    text-align: left;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.form-control {
    padding: 0.5rem 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
    transition: border 0.3s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.filter-card .form-control {
    padding: 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid #ccc;
    transition: border 0.3s ease-in-out;
}

.filter-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.filter-card label {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.filter-card .form-check-input {
    width: 1.125em;
    height: 1.125em;
}

.filter-card .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-card .form-check-label {
    font-size: 0.875rem;
}

.filter-card .card-header {
    padding: 1rem;
    text-align: left;
}

.filter-card .card-header .card-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0;
}

.sorting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sorting-row .form-control {
    color: #fff;
    text-align: center;
    width: 150px;
    border-radius: 2rem;
    background: var(--primary-color);
}

.sorting-row .total-installer {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0;
}

.slider-wrapper {
    max-width: 300px;
    margin: 20px auto;
    font-family: sans-serif;
}

#experience-slider .noUi-handle {
    border: none;
    background: #064b7f;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

#experience-slider .noUi-connect {
    background: #064b7f;
}

#experience-slider .noUi-tooltip {
    transition: opacity 0.2s ease;
}

#experience-slider .noUi-connect,
#experience-slider .noUi-base,
#experience-slider.noUi-target {
    height: 6px;
}

#experience-slider.noUi-target {
    border: 0;
    background: #ebf0ff;
}

.noUi-horizontal .noUi-handle {
    width: 20px;
    height: 20px;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.slider-labels {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.75rem;
    color: gray;
    font-size: 0.875rem;
    gap: 0.375rem;
}

.input-group-text {
    font-size: 0.875rem;
    color: var(--secondary-color);
    background: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}

.form-check-label {
    color: var(--secondary-color);
}

.btn-login {
    background: linear-gradient(135deg, #0a497b, #0d6eb1);
    color: #fff !important;
    border-radius: 2rem;
    padding: 0.5rem 2rem;
    border: none;
    font-weight: 600;
    transition: background 0.4s ease-in-out;
}

.btn-login:hover {
    color: #fff;
    background: linear-gradient(135deg, #09406b, #095a94);
}

.btn-outline-primary {
    background: #fff;
    color: #0a497b;
    border-radius: 2rem;
    padding: 0.5rem 2rem;
    border: 1px solid #0a497b;
    font-weight: 600;
    transition: background 0.4s ease-in-out;
}

.btn-outline-primary:hover {
    color: #fff;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #09406b, #095a94);
}

.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.options-row a {
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
}

.options-row a:hover {
    text-decoration: underline;
}

.login-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1rem;
}

.login-footer .primary-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-footer .primary-link:hover {
    text-decoration: underline;
    font-weight: 600;
}

.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
}

header {
    background-color: var(--primary-color);
    color: white;
}

/* .navbar-nav a {
    color: white !important;
    font-weight: 500;
} */

.hero-banner {
    background: url("../images/hero-banner.svg") center/cover no-repeat;
    position: relative;
    width: 100%;
    height: 450px;
    padding: 120px 20px;
    color: white;
    overflow: hidden;
}

.hero-banner::after {
    width: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    margin: auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.search-form .input-group {
    background: #fff;
    padding: 1rem;
    border-radius: 2rem;
    align-items: center;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid #0a497b;
}

.search-form .input-group .form-control {
    background: transparent;
    padding: 0;
    border: 0;
}

.search-button {
    background: linear-gradient(135deg, #0a497b, #0d6eb1);
    color: #fff !important;
    border-radius: 2rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 1rem 2rem !important;
    border: none;
    font-weight: 500;
    transition: background 0.4s ease-in-out;
    flex-shrink: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero .search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    border-radius: 30px 0 0 30px;
    padding: 0.75rem 1rem;
}

.search-box button {
    border-radius: 0 30px 30px 0;
    background-color: var(--secondary-color);
    color: white;
}

.speciality-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 0;
}

.speciality-row .speciality-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.speciality-row .txt-bold {
    font-size: 1.375rem;
    font-weight: 500;
}

.speciality-row .nrml-text {
    font-size: 1rem;
    font-weight: 300;
}

.services {
    padding: 60px 20px;
    background-color: white;
}

.services h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.explore-card {
    width: 100%;
    height: 100%;
    max-height: 315px;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.explore-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.explore-card .card-inner-wrap {
    height: 100%;
    position: relative;
}

.explore-card .card-inner-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-card .card-inner-wrap .category-title {
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    text-decoration: none;
}

.intro {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.intro h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-section {
    height: 300px;
    width: 100%;
}

.filter-card {
    background-color: white;
    border-radius: 1.25rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    border: 1px solid transparent;
    overflow: hidden;
}

.map-card {
    height: 100%;
    background-color: white;
    border-radius: 1.25rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    border: 1px solid transparent;
    overflow: hidden;
}

.how-it-work-section {
    width: 100%;
    position: relative;
    padding: 50px 0;
}

.how-it-work-card {
    padding: 1rem;
    border-radius: 1.25rem;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.how-it-work-card:hover {
    border: 1px solid var(--primary-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.how-it-work-card .card-heading {
    font-size: 1.5rem;
}

.card-icon {
    background: linear-gradient(135deg, #0a497b, #0d6eb1);
    border-radius: 100px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.375rem;
    margin: 0 auto 2rem;
}

.card-icon i {
    color: var(--primary-color);
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 3rem !important;
    font-weight: 600 !important;
    color: var(--primary-color);
    font-weight: 700;
}

.explore-section,
.installer-section {
    width: 100%;
    position: relative;
    padding: 50px 0;
    background-color: #eff6ff;
}

.installer-card {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.05);
}

.installer-card .card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #000;
}

.installer-card .installer-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.installer-card .installer-stats .stats-item {
    color: #8e8e8e;
    font-weight: 300;
}

.installer-card .card-badge-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.installer-card .card-badge-row .installer-badge {
    background: #cee3ff;
    border-radius: 1.125rem;
    padding: 5px 10px;
    color: var(--primary-color);
    font-size: 0.75rem;
}

.installer-card .card-action-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.installer-card .installer-rating {
    background: #fff;
    color: var(--primary-color);
    border-radius: 1.125rem;
    padding: 5px 10px;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.cta-section {
    background: url("../images/cta-banner.svg") center/cover no-repeat;
    position: relative;
    width: 100%;
    height: 450px;
    padding: 120px 20px;
    color: white;
    overflow: hidden;
    display: flex;
}

.cta-section::after {
    width: 100%;
    position: absolute;
    content: "";
    top: 3rem;
    left: 0;
    right: 0;
    bottom: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 2;
    margin: auto;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-btn {
    background: #fff;
    border-radius: 2rem;
    color: var(--primary-color);
}

.navbar-nav {
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: #374151;
    font-size: 1rem;
    font-weight: 400;
}

.nav-link-btn {
    background: linear-gradient(135deg, #0a497b, #0d6eb1);
    color: #fff !important;
    border-radius: 2rem;
    padding: 0.5rem 2rem !important;
    border: none;
    font-weight: 600;
    transition: background 0.4s ease-in-out;
}

.nav-link-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #09406b, #095a94);
}

.type {
    padding: 3rem 0;
}

.profile-card {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, #09406b, #095a94);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.avatar {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.profile-info {
    text-align: center;
}

.name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.title {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 0.875rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.bio {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.bio i {
    margin-right: 0.5rem;
}

.actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    flex: 1;
    position: relative;
    padding: 0.8rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.action-btn span {
    position: relative;
    z-index: 1;
}

.btn-effect {
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease;
}

.primary {
    background: linear-gradient(45deg, #60a5fa20, #a78bfa20);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary .btn-effect {
    background: linear-gradient(45deg, #60a5fa, #a78bfa);
    opacity: 0;
}

.primary:hover .btn-effect {
    opacity: 0.2;
}

.footer {
    padding: 2rem 0 0;
    background-color: var(--background-secondary);
}

.footer-col .col-title {
    margin-bottom: 1.5rem;
}

.footer-menu .footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-menu .footer-list-item {
    padding: 0.375rem 0;
}

.footer-menu .footer-list-item .footer-menu-link {
    text-decoration: none;
    color: #212529;
}

.footer-menu .footer-list-item .footer-menu-link:hover {
    color: var(--primary-color);
}

.footer-menu .footer-list-item p i {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons .social-link {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
}

.copywrite-footer {
    text-align: center;
}

.plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.plan {
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    flex: 0 1 340px;
    border: 2px solid #e5e7eb;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 520px;
}

.plans.subscription .plan {
    flex: 0 0 23%;
    width: 100%;
}

.plan.recommended {
    border-color: var(--primary-color);
}

.plan .badge {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
}

.plan h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    align-self: left;
}

.plan .price {
    font-size: 2rem;
    font-weight: bold;
    align-self: left;
}

.plan .per {
    font-size: 1rem;
    color: #6b7280;
}

.plan .button {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    display: block;
    margin: 1.5rem 0;
    text-align: center;
    width: 100%;
    max-width: 260px;
    transition: all 0.3s ease-in-out;
}

.plan .button:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.plan.recommended .button {
    background: var(--primary-color);
    color: white;
}

.features {
    width: 100%;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    padding: 14px 0;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    text-align: left;
    color: #374151;
    border-bottom: 1px dashed #cbcbcb;
}

.features li:last-child {
    border-bottom: 0;
}

.features li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
    min-width: 18px;
}

/* Comparison Table */
.comparison {
    /* max-width: 1000px; */
    margin: 60px auto;
    padding: 0 20px;
}

.comparison h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.comparison th,
.comparison td {
    padding: 1rem;
    font-size: 1rem;
}

.comparison th {
    background: #f9fafb;
    text-align: left;
}

.comparison tbody tr:nth-child(even) {
    background: #f9fafb;
}

.comparison td:first-child {
    text-align: left;
}

.comparison .disabled {
    color: #9ca3af;
}

.search-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
}

.search-input input {
    border: none;
    outline: none;
    font-size: 1rem;
    flex: 1;
}

.dropdown,
.filter-button {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filters {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filters div {
    padding: 8px 16px;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    font-size: 0.9rem;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filters i {
    margin-left: 6px;
}

.pagination {
    justify-content: center;
}

.pagination a {
    text-decoration: none;
    color: #374151;
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    margin: 0 4px;
    font-weight: 500;
}

.pagination a.active {
    background: #0a4970;
    color: white;
    border-color: #0a4970;
}

@media (max-width: 768px) {
    .plans {
        flex-direction: column;
        align-items: center;
    }

    .comparison table {
        font-size: 0.95rem;
    }

    .comparison th,
    .comparison td {
        padding: 0.75rem;
    }
}

/* User Dashboard */

.bg-light-blue {
    background-color: var(--background-secondary);
}

.sidebar {
    background: #fff;
    height: 100vh;
    border-right: 1px solid #eee;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    overflow-y: auto;
    overflow-x: hidden;
}

.logo-wrap {
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #e9ecf3;
}

.logo-wrap.cover-logo-wrap {
    border-bottom: 0;
    justify-content: center;
}

.logo-wrap .logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #0a497b, #0d6eb1);
}

.logo-wrap .logo-text {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.logo-wrap .logo-text .dark-text {
    font-weight: 700;
}

.header-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.content-area {
    padding: 20px;
}

.sidebar-list {
    padding: 2rem 1rem;
}

.sidebar-menu-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    text-decoration: none;
    position: relative;
    color: var(--secondary-color);
    transition: all 0.2s ease-in-out;
}

.sidebar-menu-link.active {
    font-weight: 600;
    color: #212529;
}

.sidebar-menu-link:hover {
    font-weight: 600;
    color: #212529;
}

.sidebar-menu-link.active::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 60%;
    border-radius: 10px;
    right: -1.75rem;
    background: var(--primary-color);
}

.sidebar-menu-link.active svg path {
    fill: var(--primary-color);
}

.sidebar-menu-link:hover svg path {
    fill: var(--primary-color);
}

.sidebar-menu-link:hover::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 60%;
    border-radius: 10px;
    right: -1.75rem;
    background: var(--primary-color);
}

.header-right-part {
    background: #fff;
    border-radius: 2rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-right-part .form-control {
    background: var(--background-secondary);
    border: 0;
    padding: 0.5rem;
    border-radius: 2rem;
    width: 200px;
}

.header-right-part .dropdown {
    padding: 0;
    border: 0;
}

.header-right-part .dropdown .btn-profile {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 100px;
    overflow: hidden;
    border: 0;
}

.header-right-part .dropdown .btn-profile img {
    height: 100%;
    object-fit: cover;
}

.header-right-part .dropdown .dropdown-menu.show {
    background: #fff;
    border: 0;
    border-radius: 0.875rem;
    padding: 0.5rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    left: -8rem;
}

.dropdowns .dropdown-menu.show {
    background: #fff;
    border: 0;
    border-radius: 0.875rem;
    padding: 0.5rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.header-right-part .dropdown .dropdown-menu.show .dropdown-item,
.dropdowns .dropdown-menu.show .dropdown-item {
    font-size: 1rem;
    color: #212529;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-right-part .dropdown .dropdown-menu.show .dropdown-item:hover,
.dropdowns .dropdown-menu.show .dropdown-item:hover {
    background-color: var(--background-secondary);
    color: var(--primary-color);
}

.header-right-part .dropdown .dropdown-menu.show .dropdown-item:hover svg path {
    fill: var(--primary-color);
}

.header-right-part .dropdown .dropdown-menu.show li {
    margin-bottom: 0.5rem;
}

.header-right-part .dropdown .dropdown-menu.show li:last-child {
    margin-bottom: 0;
}

.header-left-part .breadcrumbs .breadcrumbs-nav {
    opacity: 0.7;
}

.dash-card {
    background: #fff;
    border: 0;
    border-radius: 1.25rem;
}

.dash-card .inner-body {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dash-card .inner-body .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-secondary);
}

.dash-card .inner-body .stat-icon svg path {
    fill: var(--primary-color);
}

.dash-card .inner-body .stat-text small {
    opacity: 0.6;
}

.dash-card .inner-body .stat-text .stat-main-text {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 0;
    background: none;
}

.dash-card-header .card-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0;
}

.dash-card-header .card-header-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-secondary);
}

.dash-card-header .card-header-icon svg path {
    fill: var(--primary-color);
}

.card-header-btn {
    font-size: 0.875rem;
    color: var(--primary-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.375rem 0.5rem;
    background: var(--background-secondary);
}

.card-header-btn svg path {
    fill: var(--primary-color);
}

.card-header-btn:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card-header-btn:focus,
.card-header-btn:active {
    background: var(--background-secondary);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .offcanvas-start {
        width: 250px;
    }

    .mobile-logo {
        display: inline-block;
        font-weight: bold;
        font-size: 1.2rem;
        margin-left: 10px;
    }
}

.dash-card-header .badge {
    position: relative;
    top: inherit;
    left: inherit;
    transform: translate(0);
}

.table-report tr th {
    font-size: 0.875rem !important;
    font-weight: normal !important;
    color: #9c9c9c !important;
    text-transform: uppercase !important;
}

.table-report tr th:hover {
    outline: 0 !important;
}

.table-report tr td {
    font-size: 0.875rem !important;
    vertical-align: middle !important;
    text-align: left !important;
    padding: 0.5rem !important;
    box-shadow: none !important;
}

table.dataTable {
    width: 100% !important;
}

.table-report .badge {
    font-size: 0.75rem;
    font-weight: 400;
}

table.dataTable th.dt-type-date {
    text-align: left !important;
}

table.dataTable th.dt-type-date .dt-column-header,
table.dataTable th.dt-type-numeric .dt-column-header {
    flex-direction: row !important;
    text-align: left;
}

.btn-action-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-action {
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--primary-color);
}

.btn-action svg path {
    fill: var(--primary-color);
}

.btn-action:hover {
    color: #fff;
    background: var(--primary-color);
}

.btn-action:hover svg path {
    fill: #fff;
}

.btn-action.delete-btn {
    color: #dc3545;
}

.report-action-btn {
    font-size: 0.875rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.375rem 0.5rem;
    color: var(--primary-color);
    background: #fff;
    border: 1px solid var(--primary-color);
}

.report-action-btn svg path {
    fill: var(--primary-color);
}

.report-action-btn:hover {
    color: #fff;
    background: var(--primary-color);
}

.report-action-btn:hover svg path {
    fill: #fff;
}

.form-section label {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
}

.required {
    color: #ff0000;
}

.form-section .form-control::placeholder {
    font-size: 0.875rem;
    opacity: 0.7;
}

.form-section .form-control {
    padding: 0.625rem 0.5rem;
    border-radius: 0.875rem;
    border: none;
    border: 1px solid #ccc;
    transition: border 0.3s ease-in-out;
}

.form-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.item-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.item-flex .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem;
}

.item-flex .form-check .form-check-input {
    margin-top: 0;
}

.item-flex .form-check .form-check-label {
    margin-bottom: 0;
}

.cns-profile-card {
    background-color: white;
    border-radius: 1.25rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    border: 1px solid transparent;
    overflow: hidden;
}

.cns-profile-card .card-header {
    padding: 1rem;
}

.cns-profile-card .card-header .card-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0;
}

.service-badge-row,
.service-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-badge {
    background: #f7f7f7;
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    flex: 0 0 30%;
    box-sizing: border-box;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.contact-detail i {
    color: var(--primary-color);
}

.service-pill {
    font-size: 0.875rem;
    background: #f7f7f7;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.profile-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-section .image-section {
    flex: 0 0 30%;
    border-radius: 0.5rem;
    overflow: hidden;
}

.profile-section .profile-detail-section {
    flex: 0 0 70%;
}

.designation {
    color: #94a3b8;
}

.profile-badge {
    padding: 0.5em;
    border-radius: 50px;
    font-weight: 300;
}

.profile-badge-primary {
    color: #072d54;
    background-color: #7db4fd;
}

.profile-badge-success {
    color: #003112;
    background-color: #9bfbbe;
}

@media (min-width: 768px) {
    .sidebar-collapse-toggle {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .sidebar-collapse-toggle {
        display: none;
    }

    #revenueAreaChart {
        width: auto !important;
    }

    .dash-card .d-flex.align-items-start.pt-4 {
        flex-direction: column;
    }

    .header-bar {
        gap: 0.5rem;
    }

    .header-left-part {
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .service-badge {
        flex: 0 0 50%;
    }
}

.flooring-image-section {
    width: 95%;
    height: 400px;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 10px 10px 0 rgb(9 73 123 / 14%);
}

.borderRight {
    border-right: 2px solid var(--primary-color);
}

.action-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff;
    margin-bottom: 0.75rem;
}

.action-button:last-child {
    margin-bottom: 0;
}

.delete-btn {
    border: 1px solid #ef4444;
    color: #ef4444;
}

.delete-btn svg path {
    fill: #ef4444;
}

.delete-btn:hover {
    background: #ef4444;
    color: #fff;
}

.delete-btn:hover svg path {
    fill: #fff;
}

.suspend-btn {
    background: #f97316;
    border: 1px solid #f97316;
    color: #fff;
}

.suspend-btn svg path {
    fill: #fff;
}

.suspend-btn:hover {
    background: #fff;
    color: #f97316;
    border: 1px solid #f97316;
}

.suspend-btn:hover svg path {
    fill: #f97316;
}

.revoke-btn {
    background: #ef4444;
    border: 1px solid #ef4444;
    color: #fff;
}

.revoke-btn svg path {
    fill: #fff;
}

.revoke-btn:hover {
    background: #fff;
    color: #ef4444;
    border: 1px solid #ef4444;
}

.revoke-btn:hover svg path {
    fill: #ef4444;
}

.btn-revoke {
    padding: 0.125rem 0.75rem;
    border-radius: 2rem;
    background: #ef4444;
    font-size: 0.875rem;
    color: #fff;
}

.user-image {
    border-radius: 2rem;
    overflow: hidden;
}

.profile-group {
    margin-bottom: 1.25rem;
}

.profile-label {
    font-size: 1.125rem;
    color: #9c9c9c;
}

.profile-text {
    font-size: 1rem;
    margin-bottom: 0;
}

.total-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.gray-text {
    color: #9c9c9c;
    font-size: 1rem;
}

.font-md {
    font-size: 1rem;
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.plan-name,
.plan-price {
    margin-bottom: 0;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.method-card {
    border: 1px solid rgba(10, 73, 123, 0.15);
    padding: 0.625rem;
    border-radius: 0.75rem;
}

.inner-section {
    margin: 3rem 0;
}

.image-upload-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.image-upload-container {
    position: relative;
    width: 60%;
    padding-top: 60%;
    overflow: hidden;
    border: 2px dashed rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-upload-container:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

.image-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.image-input {
    display: none;
}

.img-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.remove-image-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    color: #fff;
    background-color: #f44336;
    border: none;
    font-size: 0.875rem;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-image-btn:hover {
    background-color: #d32f2f;
}

.section-header {
    background: var(--background-secondary);
    padding: 0.75rem;
    border-bottom: 1px solid #0a4970;
    margin-bottom: 0.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

.section-header .section-title {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--primary-color);
}

.flex-1 {
    flex: 1 1 0%;
}

.upload-area__drop-zoon {
    position: relative;
    height: 11.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed var(--primary-color);
    border-radius: 15px;
    margin-top: 0.875rem;
    cursor: pointer;
    transition: border-color 300ms ease-in-out;
}

.upload-area__drop-zoon:hover {
    border-color: var(--clr-blue);
}

.drop-zoon__icon {
    display: flex;
    font-size: 3.75rem;
    color: var(--primary-color);
    transition: opacity 300ms ease-in-out;
}

.drop-zoon__paragraph {
    font-size: 0.9375rem;
    color: var(--clr-light-gray);
    margin: 0;
    margin-top: 0.625rem;
    transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__icon,
.drop-zoon:hover .drop-zoon__paragraph {
    opacity: 0.7;
}

.drop-zoon__loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: var(--clr-light-blue);
    z-index: 10;
}

.drop-zoon__preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.3125rem;
    border-radius: 10px;
    display: none;
    z-index: 1000;
    transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__preview-image {
    opacity: 0.8;
}

.drop-zoon__file-input {
    display: none;
}

/* (drop-zoon--over) Modifier Class */
.drop-zoon--over {
    border-color: var(--clr-blue);
}

.drop-zoon--over .drop-zoon__icon,
.drop-zoon--over .drop-zoon__paragraph {
    opacity: 0.7;
}

/* File Details Area */
.upload-area__file-details {
    height: 0;
    visibility: hidden;
    opacity: 0;
    text-align: left;
    transition: none 500ms ease-in-out;
    transition-property: opacity, visibility;
    transition-delay: 500ms;
}

/* (duploaded-file--open) Modifier Class */
.file-details--open {
    height: auto;
    visibility: visible;
    opacity: 1;
    margin-top: 1rem;
}

.file-details__title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--clr-light-gray);
}

/* Uploaded File */
.uploaded-file {
    display: flex;
    align-items: center;
    padding: 0.625rem 0;
    visibility: hidden;
    opacity: 0;
    transition: none 500ms ease-in-out;
    transition-property: visibility, opacity;
}

/* (duploaded-file--open) Modifier Class */
.uploaded-file--open {
    visibility: visible;
    opacity: 1;
}

.uploaded-file__icon-container {
    position: relative;
    margin-right: 0.3125rem;
}

.uploaded-file__icon {
    font-size: 3.4375rem;
    color: var(--primary-color);
}

.uploaded-file__icon-text {
    position: absolute;
    top: 1.5625rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--clr-white);
}

.uploaded-file__info {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.uploaded-file__info::before,
.uploaded-file__info::after {
    content: "";
    position: absolute;
    top: 2.125rem;
    width: 0;
    height: 0.5rem;
    background-color: #ebf2ff;
    border-radius: 0.625rem;
    display: none;
}

.uploaded-file__info::before {
    width: 100%;
}

.upload-area__file-details.file-details--open {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.upload-area__file-details.file-details--open
    .uploaded-file.uploaded-file--open {
    position: relative;
    flex-direction: column;
    flex: 0 0 19%;
    border: 1px solid #000;
    border-radius: 1.25rem;
    padding: 0;
    overflow: hidden;
}

.uploaded-file__remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    border: 0;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area__file-details.file-details--open
    .uploaded-file.uploaded-file--open
    .uploaded-file__icon-container {
    margin-right: 0;
    width: 100%;
    border-bottom: 1px solid #0a497b;
}

.upload-area__file-details.file-details--open
    .uploaded-file.uploaded-file--open
    .uploaded-file__info.uploaded-file__info--active {
    padding: 0.5rem 1rem;
}

.upload-area__file-details.file-details--open .uploaded-file:first-child {
    display: none;
}

.uploaded-file__info::after {
    width: 100%;
    background-color: var(--primary-color);
}

.uploaded-file__info--active::after {
    animation: progressMove 800ms ease-in-out;
    animation-delay: 300ms;
}

@keyframes progressMove {
    from {
        width: 0%;
        background-color: transparent;
    }

    to {
        width: 100%;
        background-color: var(--primary-color);
    }
}

.uploaded-file__name {
    width: 100%;
    max-width: 6.25rem;
    display: inline-block;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uploaded-file__counter {
    font-size: 1rem;
    color: var(--clr-light-gray);
}

.primary-modal .modal-content {
    background: #fff;
    border: 0;
    border-radius: 1.25rem;
}

.cover-page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
}

.cover-image .upload-area__drop-zoon {
    width: 40%;
    height: 20rem;
    margin: 2rem auto;
}

.cover-details-wrap {
    padding: 1rem 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
    color: #fff;
    background: var(--primary-color);
}

.border-radius-lg {
    border-radius: 2rem;
}

.report-label {
    display: block;
    font-size: 1rem !important;
    font-weight: 600;
}

.report-card {
    padding: 1rem;
    border: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.report-card .report-header-top {
    display: flex;
    gap: 2rem;
}

.report-card .installer-details-wrap {
    flex: 1;
}

.report-card .wrap-title {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecf3;
}

.report-detail-section {
    padding: 0.75rem;
    border: 1px solid #e1e6e9;
    border-radius: 0.5rem;
}

.flex-3 {
    flex: 1 1 30%;
}

#preInstallationReportTable_wrapper .dt-search {
    text-align: right;
}

.confirmDeleteModal .modal-content {
    background: #fff;
    border: 0;
    border-radius: 1.25rem;
}

.confirmDeleteModal .modal-body {
    padding: 1.5rem;
}

.confirmDeleteModal .main-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}

.confirmDeleteModal .sub-text {
    text-align: center;
    font-size: 1rem;
    color: #8e8e8e;
    font-weight: 300;
}

.confirmDeleteModal .close-btn-wrap {
    text-align: right;
}

.confirmDeleteModal .btn-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.delete-button {
    background: #e53935;
    border: 1px solid #e53935;
    color: #fff;
    border-radius: 0.75rem;
    width: 50%;
}

.delete-button:hover {
    background: #e53935;
    border: 1px solid #e53935;
    color: #fff;
    box-shadow: 0px 3px 8px 0px rgba(229, 57, 53, 0.5);
}

.cancel-button {
    background: #fff;
    border: 1px solid #8e8e8e;
    color: #8e8e8e;
    border-radius: 0.75rem;
    width: 50%;
}

.cancel-button:hover {
    background: #8e8e8e;
    border: 1px solid #8e8e8e;
    color: #fff;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
}

.alert-icon-container {
    position: relative;
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
}

.alert-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #e53935;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.alert-icon span {
    transform: rotate(-45deg);
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background-color: rgba(229, 57, 53, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }
}

.no-data-wrapper {
    border: 1px solid #064b7f63;
    border-radius: 1rem;
    text-align: center;
    /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); */
}

.no-data-wrapper .no-data-image {
    width: 100px;
    margin: 2rem auto;
}

.no-data-wrapper .message {
    color: var(--primary-color);
}

.pdf-card {
    background-color: white;
    border-radius: 1.25rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 0;
    overflow: hidden;
}

.pdf-card .top-wrap {
    position: relative;
    border-bottom: 1px solid #8e8e8e;
}

.pdf-card .hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.35);
    padding: 10px;
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
}

.pdf-card:hover .hover-icon {
    opacity: 1;
}

.pdf-card .content-wrap {
    padding: 1rem;
    text-align: center;
}

.pdf-card .content-wrap .pdfTitle {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
}

.error-wrapper .image-wrapper {
    width: 40%;
    margin: 0 auto;
}

.contact-card {
    border: 0;
    border-radius: 2rem;
    background: linear-gradient(135deg, #0a497b, #0d6eb1);
}

.contact-card .card-body {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.contact-card .upper-text p {
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.75rem;
}

.contact-card .upper-text h4 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card .contact-details .details-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-card .details-item .card-icon {
    background: #fff;
}

.contact-card .details-item .card-heading {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.contact-card .details-item p {
    font-size: 1rem;
    color: #fff;
}

.get-in-touch-wrap .upper-section p {
    text-transform: uppercase;
    color: var(--secondary-color);
}

.get-in-touch-wrap .upper-section h4 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-section {
    background: url("../images/cta-banner.svg") bottom/cover no-repeat;
    position: relative;
    width: 100%;
    height: 250px;
    color: white;
    overflow: hidden;
    display: flex;
    margin-bottom: 5rem;
}

.page-header-section::after {
    width: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-title {
    position: relative;
    z-index: 2;
    margin: auto;
    text-align: center;
}

.title-text {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bg-none {
    background: none !important;
}

.pl-70 {
    padding-left: 70px;
}

@media only screen and (max-width: 991px) {
    .md-pl-15 {
        padding-left: 15px;
    }
}
/* 
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f0f0f0;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
} */

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

/* table {
    border-collapse: collapse;
    width: 100%;
    min-width: 1200px;
    background-color: #e8e8e8;
    border: 2px solid #666;
}

th,
td {
    border: 1px solid #666;
    text-align: center;
    padding: 8px 6px;
    font-size: 12px;
    font-weight: bold;
    position: relative;
}

th {
    background-color: #d0d0d0;
    font-weight: bold;
} */

.temp-header {
    background-color: #c8c8c8;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    width: 40px;
    font-size: 11px;
}

.humidity-header {
    background-color: #d0d0d0;
    font-size: 11px;
}

.moisture-cell {
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f5f5f5;
}

.moisture-cell:hover {
    background-color: #e0e8ff;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.moisture-cell.selected {
    background-color: #4caf50;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.5);
}

.corner-cell {
    background-color: #b8b8b8;
    font-size: 10px;
    line-height: 1.2;
}

.fahrenheit {
    font-size: 9px;
    color: #666;
}

.celsius {
    font-size: 9px;
    color: #666;
}

.selected-info {
    background-color: #e8f5e8;
    border: 2px solid #4caf50;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    display: none;
}

.submit-btn {
    background-color: #2196f3;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    display: none;
}

.submit-btn:hover {
    background-color: #1976d2;
}

.form-data {
    background-color: #f0f8ff;
    border: 1px solid #2196f3;
    border-radius: 6px;
    padding: 15px;
    margin-top: 20px;
    display: none;
}

.instructions {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    z-index: 1050;
}

.mobile-drawer .sidebar-menu-link.active::after {
    right: 0;
}

.mobile-drawer.open {
    left: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1040;
}

.drawer-overlay.show {
    display: block;
}


@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    th,
    td {
        padding: 4px 2px;
        font-size: 10px;
    }
}
