/* =====================================================
GLOBAL
===================================================== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* =====================================================
NAVBAR
===================================================== */
.navbar {
    background: #f1ece6;
    border-bottom: 1px solid rgba(79, 143, 154, 0.2);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .container-fluid {
    padding: 10px 30px;
}

.navbar-brand {
    width: 100px;
    height: auto;
    margin: 0;
    padding: 0px;
}

.navbar-collapse {
    justify-content: space-between;
}

.navbar-nav {
    gap: 25px;
    text-align: center;
    padding-left: 6rem;
}

.nav-link {
    color: #4f8f9a;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #4f8f9a;
    transform: translateX(-50%);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 50%;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    background: #f1ece6;
    border: none;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dropdown-item:hover {
    color: #1f6f8b;
    background: #fff;
    width: 100%;
}

.dropdown-item {
    color: #4f8f9a;
    font-weight: 500;
    /* padding: 10px 16px; */
    transition: 0.3s ease;
}

.dropdown-item.user-name {
    font-weight: 600;
    color: #1f6f8b;
}

.dropdown-item.logout-btn {
    color: #4f8f9a;
    font-weight: 500;
    /* padding: 10px 16px; */
    width: 100%;
    text-align: left;
}

.account-btn {
    background: #1f6f8b;
    color: #ffffff;
    /* padding: 8px 22px; */
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

.account-btn:hover {
    background: #155e7b;
    color: #ffffff;
}

.category-dropdown {
    height: auto !important;
    overflow-y: auto;
}

.makeadjust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 23%;
}

.buton-div {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
    color: #4f8f9a;
}

.icons-phone {
    display: none;
}

.icons-desktop {
    display: flex;
    padding-right: 15px;
}

.adjust-icons-list {
    display: flex;
    align-items: center;
    align-content: center;
    margin: 0px;
    gap: 10px;
    padding: 0px;
    list-style: none;
}

.dropdown-menu {
    min-width: 0px;
}

/* =====================================================
HOME SECTION
===================================================== */
.home {
    padding: 0;
    margin: 0;
}

/* =====================================================
BANNER CAROUSEL (CUSTOM)
===================================================== */
.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 400px;
}

.banner-slide img {
    width: 100%;
    /* height: 400px; */
    object-fit: cover;
}

@media (max-width: 768px) {
    .banner-slide {
        min-height: 300px;
    }
    
    .banner-slide img {
        height: 300px;
        object-fit: fill;
    }
}

@media (max-width: 480px) {
    .banner-slide {
        min-height: 200px;
    }
    
    .banner-slide img {
        height: 200px;
    }
}

/* =====================================================
SCANNING SECTION
===================================================== */
.scanning {
    background: linear-gradient(to bottom, #f6fbfc, #ffffff);
}

.scan-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    border: 1px solid #e4ecee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.scan-left h2 {
    color: #2d6f78;
}

.scan-sub {
    color: #555;
    font-size: 14px;
}

.scan-box h4 {
    margin-bottom: 15px;
    color: #2d6f78;
}

.scan-input-wrapper {
    position: relative;
    margin: 20px 0;
}

.scan-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #4f8f9a;
}

.scan-input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 42px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    outline: none;
}

.scan-input-wrapper input:focus {
    border-color: #4f8f9a;
    box-shadow: 0 0 0 3px rgba(79, 143, 154, 0.2);
}

.scan-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #4f8f9a, #2d6f78);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

/* =====================================================
PRODUCT SECTION
===================================================== */
.product {
    margin: 40px 44px;
}

.product .text-center {
    font-size: 34px;
    font-family: auto;
    margin-bottom: 40px;
}

.card-product {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
}

.product-head {
    width: 280px;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3e8eb;
    transition: 0.35s ease;
}

.product-head:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.product-head:hover .product-img {
    transform: scale(1.01);
}

.product-img {
    text-align: center;
    background: #f8fcfd;
}

.product-img img {
    height: 235px;
    max-width: 100%;
    object-fit: cover;
    transition: 0.4s;
    width: 100%;
}

.product-head:hover img {
    transform: scale(1.08);
}

.product-text {
    background: #2d6f78;
    color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    height: 17rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product .heading {
    font-size: 32px;
    font-weight: 700;
    color: #1e88b6;
}

.product-text ul li a {
    color: white;
    text-decoration: none;
}

.product .pera {
    color: #555;
    margin-bottom: 50px;
    font-size: 15px;
}

.product-text h3 {
    margin-bottom: 12px;
    font-family: "Times New Roman", Times, serif;
}

.features-heading {
    font-size: 14px;
    margin: 8px 0 10px 0;
    font-weight: 600;
    color: #ffd700;
}

.product-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-family: "Times New Roman", Times, serif;
}

.product-text ul li {
    transition: 0.25s;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.product-text ul li:hover {
    transform: translateX(8px);
    color: wheat;
}

.product-button button {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    background: #1e88b6;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
}

.product-button button:hover {
    background: linear-gradient(135deg, #155e7b, #155e7b);
    transform: scale(1.05);
}

.to-make-category-center {
    text-align: center;
    margin: 25px 0px;
}

/* =====================================================
ABOUT COMPANY SECTION
===================================================== */
.about-company {
    padding: 40px 0;
    background: #e3e8e9;
}

.about-company .heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e88b6;
}

.about-company .heading p {
    margin-bottom: 50px;
    color: #555;
    font-size: 15px;
}

.about-company h3 {
    color: #2d6f78;
    font-size: 22px;
    margin-bottom: 15px;
}

.about-company p {
    color: #444;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 8px;
}

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

.about-company ul li {
    background: #ffffff;
    border-left: 4px solid #1e88b6;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    transition: 0.3s;
}

.about-company ul li:hover {
    background: #2d6f78;
    color: #ffffff;
    transform: translateX(5px);
}

/* =====================================================
TESTIMONIALS SECTION
===================================================== */
.testimonials {
    padding: 80px 20px;
    background: #f6fbfc;
    text-align: center;
}

.testi-title {
    font-size: 32px;
    color: #1e88b6;
    margin-bottom: 8px;
}

.testi-sub {
    color: #555;
    margin-bottom: 50px;
    font-size: 15px;
}

.testi-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.testi-card {
    width: 31%;
    background: #ffffff;
    padding: 22px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.quote {
    font-size: 42px;
    color: #2d6f78;
    text-align: left;
}

.testi-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testi-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #2d6f78;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    margin: 0;
    font-size: 16px;
    color: #1e88b6;
}

.user-info span {
    font-size: 13px;
    color: #666;
}

/* =====================================================
FOOTER
===================================================== */
.footer {
    background-color: #2d6f78;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #ffffff;
    position: relative;
}

.footer-col h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #1e88b6;
    margin-top: 8px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #e0f2f4;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #e0f2f4;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-form input,
.footer-form textarea {
    padding: 10px;
    border: none;
    border-radius: 6px;
    outline: none;
    font-size: 15px;
}

.footer-form textarea {
    resize: none;
    height: 80px;
}

.footer-form button {
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #1e88b6;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #155e7b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding: 20px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
    color: #e0f2f4;
}

.footer-bottom-icon {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.footer-bottom-icon a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-icon a:hover {
    background: #1e88b6;
    transform: translateY(-4px);
}

/* Footer Bottom Links */
.footer-bottom-left {
    flex: 1;
}

.footer-bottom-middle {
    flex: 1;
    text-align: center;
}

.footer-link {
    color: #e0f2f4;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-divider {
    color: #e0f2f4;
    margin: 0 10px;
}

/* =====================================================
RESPONSIVE CSS
===================================================== */
@media (max-width: 1224px) {
    .navbar-nav {
        gap: 18px;
        padding-left: 1rem;
    }
}

@media (max-width: 1024px) {
    .navbar-collapse {
        justify-content: space-between;
    }

    .navbar-nav {
        gap: 0px;
        padding-left: 0rem;
    }

    .navbar .container-fluid {
        padding: 5px 15px;
    }

    .testi-card {
        width: 48%;
    }
}

@media (max-width: 400px) {
    .navbar .container-fluid {
        padding: 3px 5px !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0px 5px !important;
    }

    .navbar .container-fluid {
        padding: 5px 15px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
.footer-bottom-content {
    justify-content: center;
    flex-direction: column;

}
    .footer {
        text-align: center;
    }

    .footer-col h3::after {
        margin: auto;
        margin-top: 8px;
    }

    .scan-card {
        padding: 25px;
        text-align: center;
    }

    .scan-left {
        margin-bottom: 25px;
    }

    .about-company {
        padding: 20px 20px;
        text-align: center;
    }

    .about-company h2 {
        font-size: 26px;
    }

    .about-company h3 {
        font-size: 20px;
        margin-top: 20px;
    }

    .about-company ul li {
        text-align: left;
    }

    .account-btn {
        display: block;
        margin: 12px auto 0;
        text-align: center;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .product-head {
        width: 90%;
    }
}

@media (max-width: 600px) {
    .testi-card {
        min-width: 85%;
        max-width: 85%;
        width: 100%;
    }

    .testi-title {
        font-size: 26px;
    }

    .testi-text {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .testi-card {
        width: 48%;
    }

    .icons-phone {
        display: block;
    }

    .icons-desktop {
        display: none;
    }

    .makeadjust {
        width: 90%;
    }
}

@media (max-width: 682px) {
    .makeadjust {
        width: 87%;
    }
}

@media (max-width: 525px) {
    .makeadjust {
        width: 84%;
    }
}

@media (max-width: 439px) {
    .makeadjust {
        width: 81%;
    }
}
