* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

:root {
    --font-heading-1-size: 40px;
    --font-heading-2-size: 32px;
    --font-heading-3-size: 24px;
    --font-heading-4-size: 22px;
    --font-heading-5-size: 20px;
    --font-heading-6-size: 18px;
    --font-paragraph-size: 16px;
    --black: #000;
    --white: #fff;
    --Light-golden: #e9c276;
    --Dark-golden: #c6923b;
}

.bg-black {
    background-color: var(--black);
}

.bg-light-golden {
    background-color: var(--Light-golden);
}

.bg-dark-golden {
    background-color: var(--Dark-golden);
}

body {
    --font-family: Alkatra;
    --heading-font-family: Alkatra;
}

h1 {
    font-size: var(--font-heading-1-size);
}

h2 {
    font-size: var(--font-heading-2-size);
}

h3 {
    font-size: var(--font-heading-3-size);
}

h4 {
    font-size: var(--font-heading-4-size);
}

h5 {
    font-size: var(--font-heading-5-size);
}

h6 {
    font-size: var(--font-heading-6-size);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font-family);
}

p {
    font-size: var(--font-paragraph-size);
}

::-webkit-scrollbar {
    height: 4px !important;
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--Light-golden);
    border-radius: 2px;
}

/* header */

.header-banner-wrapper {
    position: relative;
    width: 100%;
}

.hero-banner {
    position: relative;
    width: 100%;
    background-image: url('../images/main-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: inherit;
    display: flex;
    justify-content: center;
    min-height: 80vh;
}

    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(28, 30, 38, 0.5) 100%);
        z-index: 1;
    }

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    margin-top: 80px;
    padding: 80px 20px 0 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-content h1 {
    font-size: var(--font-heading-1-size);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-content h2 {
    font-size: var(--font-heading-2-size);
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--Light-golden);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: var(--font-paragraph-size);
    line-height: 1.8;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}


.btn-secondary-custom {
    position: relative;
    background-color: transparent;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #000;
    transition: all 0.3s ease;
    display: inline-block;
    overflow: hidden;
}

    .btn-secondary-custom:hover {
        color: var(--Dark-golden);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(47, 41, 41, 0.3);
    }

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.navbar-brand img {
    height: 80px;
}

.menu-bar {
    backdrop-filter: blur(10px);
    border: 1px solid gray;
    border-radius: 50px;
    padding: 8px 35px;
    display: inline-flex;
    justify-content: center;
    gap: 25px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .navbar-nav .nav-link {
        color: var(--black);
        font-weight: 600;
        padding: 10px 5px;
        position: relative;
        transition: color 0.3s ease;
        text-decoration: none;
        white-space: nowrap;
    }

        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: var(--Light-golden);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-item.show .nav-link {
            color: var(--Light-golden);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), inset 0 2px 6px rgba(255, 255, 255, 0.35);
            border-radius: 20px;
        }

.dropdown-section {
    margin-bottom: 15px;
}

    .dropdown-section:last-child {
        margin-bottom: 0;
    }

    .dropdown-section h6 {
        font-size: var(--font-heading-6-size);
        color: var(--Light-golden);
        font-weight: 600;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--Dark-golden);
        display: inline-block;
        padding-bottom: 5px;
    }

.dropdown-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.dropdown-column {
    flex: 1;
    min-width: 150px;
}

.call-now-btn {
    backdrop-filter: blur(10px);
    color: var(--black);
    padding: 17px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid gray;
    transition: all 0.3s ease;
}

    .call-now-btn:hover {
        color: var(--Light-golden);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), inset 0 2px 6px rgba(255, 255, 255, 0.35);
    }

.drawer-toggle {
    display: none;
}

.mobile-header {
    display: none;
}

.drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}


#drawer-toggle:checked ~ .drawer-overlay {
    display: block;
    opacity: 1;
}

.drawer-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}


#drawer-toggle:checked ~ .drawer-menu {
    left: 0;
}

#drawer-toggle,
.drawer-dropdown-toggle {
    display: none;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .drawer-header img {
        height: 50px;
    }

.drawer-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--black);
    padding: 0;
    line-height: 1;
}

.drawer-nav {
    padding: 20px 0;
}

    .drawer-nav .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .drawer-nav .nav-link {
        padding: 15px 20px;
        display: block;
        color: var(--black);
        text-decoration: none;
        font-weight: 500;
        position: relative;
    }

        .drawer-nav .nav-link:hover {
            background: rgba(233, 194, 118, 0.1);
            color: var(--Dark-golden);
        }

    .drawer-nav .dropdown-toggle::after {
        content: '▼';
        float: right;
        font-size: 12px;
        transition: transform 0.3s;
    }

.drawer-dropdown-toggle:checked ~ .dropdown-toggle::after {
    transform: rotate(180deg);
}

.drawer-nav .dropdown-section h6 {
    font-size: var(--font-heading-6-size);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drawer-nav .dropdown-columns {
    flex-direction: column;
    gap: 0;
}

@media (min-width: 992px) and (max-width:1200px) {
    .navbar-nav {
        gap: 0;
    }
}

@media (max-width: 991px) {

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .drawer-toggle {
        display: block;
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
    }

        .drawer-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--black);
            display: block;
            margin: 5px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

    #drawer-toggle:checked ~ .mobile-header .drawer-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    #drawer-toggle:checked ~ .mobile-header .drawer-toggle span:nth-child(2) {
        opacity: 0;
    }

    #drawer-toggle:checked ~ .mobile-header .drawer-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .call-now-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .navbar-brand img {
        height: 90px;
    }
}

@media (max-width: 767px) {

    .hero-banner {
        min-height: 420px;
        background-position: center;
    }

    .banner-content {
        margin-top: 70px;
        padding: 10px 10px;
    }

        .banner-content h1 {
            font-size: 20px;
        }

        .banner-content h2 {
            font-size: 18px;
        }

        .banner-content p {
            font-size: 18px;
        }
}


/* 2 */
.specialized-section p {
    font-size: var(--font-paragraph-size);
    color: var(--Dark-golden);
}

.card-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 380px;
    cursor: pointer;
    transition: transform var(--transition);
    background-color: var(--black);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

    .card-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .card-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition);
        filter: brightness(0.75);
    }

    .card-box:hover img {
        transform: scale(1.1);
    }

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-box:hover .overlay {
    opacity: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    text-align: center;
    z-index: 2;
    transition: all 0.5s ease;
}

.card-box:hover .card-content {
    transform: translateY(-15px);
}

.card-content h3 {
    font-size: var(--font-heading-3-size);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-align: left;
}

.card-content p {
    font-size: var(--font-paragraph-size);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-align: left;
    margin-bottom: 0;
}

.card-box:hover .line {
    width: 80px;
}

.btn-gold {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 22px;
    transition: all 0.4s ease;
    text-decoration: none;
    white-space: nowrap;
}

    .btn-gold:hover {
        background: var(--white);
        color: var(--black);
        transform: translateY(-3px);
    }

.row.g-4 {
    row-gap: 30px;
}

/* 3 */

.services-section {
    padding: 40px 0 0 0;
    text-align: center;
}

    .services-section h2 {
        font-size: var(--font-heading-2-size);
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--black);
    }

    .services-section p {
        font-size: var(--font-paragraph-size);
        color: var(--Dark-golden);
        margin-bottom: 60px;
    }

.service-box {
    position: relative;
    background: linear-gradient(145deg, #fafafa, #f1f1f1);
    border-radius: 20px;
    padding: 50px 25px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    height: 100%;
}

    .service-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 0;
        background: var(--Light-golden);
        transition: width 0.4s ease;
    }

    .service-box:hover::before {
        width: 100%;
    }

    .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--Dark-golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.service-box:hover .icon-circle {
    transform: scale(1.1);
    background: var(--Light-golden);
    color: var(--white);
}

.service-box h5 {
    font-size: var(--font-heading-5-size);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.service-box p {
    font-size: var(--font-paragraph-size);
    color: var(--Dark-golden);
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .service-box {
        margin-bottom: 20px;
    }

        .service-box::before {
            width: 100% !important;
        }
}

@media (max-width: 360px) {
    .services-section {
        padding: 0;
    }

    .service-box::before {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 20px;
    }
}


/* 4 */

.why-webcart {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .why-webcart::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

/* IMAGE BOX */
.img-wrapper {
    position: relative;
    max-width: 550px;
}

.main-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

    .main-img:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

.img-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--Dark-golden);
    border-radius: 16px;
    opacity: 0.3;
}

/* CONTENT */
.content-box h3 {
    font-size: var(--font-heading-3-size);
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 6px;
}

.line {
    width: 4px;
    height: 55px;
    background: var(--Light-golden);
    border-radius: 2px;
}

.content-box p {
    font-size: var(--font-paragraph-size);
    margin: 20px 0;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--black);
        margin-bottom: 12px;
        font-size: 18px;
    }

        .feature-list li span {
            color: var(--Light-golden);
            font-size: 20px;
        }

.cta-btn {
    padding: 12px 34px;
    border: 2px solid var(--Light-golden);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: var(--black);
    transition: 0.3s;
}

    .cta-btn:hover {
        color: var(--Dark-golden);
    }


@media (max-width: 991px) {

    .why-webcart {
        padding: 70px 0;
    }

    .img-wrapper {
        margin: 0 auto 30px;
        text-align: center;
    }

    .cta-btn {
        margin: auto;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .content-box h3 {
        font-size: 24px;
        text-align: center;
    }

    .content-box p {
        text-align: center;
    }

    .cta-btn {
        padding: 10px 26px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .img-wrapper {
        display: none;
    }
}

/* testimonial */
.testimonial-carousel .owl-item {
    display: flex;
}

.testimonial-bottom {
    margin-top: auto;
}

.testimonial-card > p:first-child {
    flex-grow: 1;
}

.testimonial-owl-section {
    background: #fff;
    padding: 30px 0;
}

    .testimonial-owl-section h2 {
        font-weight: 600;
        color: #000;
    }

    .testimonial-owl-section p {
        color: var(--Dark-golden);
        margin-top: 10px;
    }

.testimonial-text {
    display: flex;
    align-items: flex-start;
}

.testimonial-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .testimonial-icon img {
        width: 22px;
    }

.testimonial-card {
    background: linear-gradient(145deg, #FAFAFA, #F1F1F1);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #E1E1E1;
    text-align: center;
    position: relative;
    transition: 0.3s;
    margin: 15px;
    display: flex;
    flex-direction: column;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        border-color: #D4AF37;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    }

    .testimonial-card p {
        font-size: 16px;
        color: #333;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .testimonial-card h3 {
        font-size: var(--font-heading-3-size);
        font-weight: 700;
        color: var(--black);
        margin-bottom: 0;
    }

    .testimonial-card .client-detail {
        display: flex;
        justify-content: space-between;
        align-items: end;
        flex-wrap: wrap;
    }

    .testimonial-card .description {
        font-size: 14px;
        text-align: left;
        color: #777;
    }

    .testimonial-card span {
        font-size: 14px;
        color: #777;
    }

    .testimonial-card::after {
        content: "";
        width: 90px;
        height: 3px;
        background: #D4AF37;
        display: block;
        margin: 15px auto 0 auto;
        transition: width 0.3s;
    }

    .testimonial-card:hover::after {
        width: 150px;
    }

.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

    .owl-nav button {
        background: var(--black);
        color: var(--white);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        border: 2px solid var(--black);
        pointer-events: auto;
        transition: 0.3s ease;
    }

.owl-prev-arrow,
.owl-next-arrow {
    font-size: 30px;
    line-height: 1;
    margin-right: -37px;
}

@media (max-width: 400px) {

    .testimonial-carousel .owl-item {
        display: flex;
        justify-content: center;
    }

    .testimonial-card {
        margin: 10px 8px;
        padding: 20px;
    }

    .testimonial-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-icon {
        margin-bottom: 10px;
    }

    .testimonial-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .testimonial-card .client-detail {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
    }

    .testimonial-card h5 {
        font-size: 18px;
    }

    .testimonial-card span,
    .testimonial-card .description {
        font-size: 13px;
        text-align: center;
    }

    .owl-nav {
        top: auto;
        bottom: -50px;
    }
}



@media (max-width: 767px) {
    .testimonial-owl-section .owl-nav {
        display: none !important;
    }
}


.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}


.round-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
}

.center-menu-btn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 35px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--black);
    font-size: 12px;
    font-weight: 600;
}

    .menu-item i {
        font-size: 16px;
        margin-bottom: 3px;
    }


    .menu-item:hover span,
    .menu-item:hover i {
        color: var(--Light-golden);
    }

@media (min-width: 768px) {
    .mobile-bottom-menu {
        display: none;
    }
}

@media (max-width: 400px) {

    .mobile-bottom-menu {
        padding: 8px 10px;
        position: fixed;
    }

    .center-menu-btn {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 6px 14px;
        gap: 30px;
    }

    .round-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 17px;
        z-index: 2;
    }

    .menu-item i {
        font-size: 14px;
        margin-left: 13px;
    }

    .menu-item span {
        font-size: 11px;
    }
}

/* footer */
.footer {
    background: var(--black);
}

    .footer a {
        color: var(--white);
        text-decoration: none;
        transition: 0.2s ease;
    }

        .footer a:hover {
            color: var(--Light-golden);
        }

    .footer h5 {
        margin-bottom: 12px;
        font-weight: 600;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

.footer-middle {
    display: flex;
}

.footer-left {
    width: 80%;
    display: flex;
}

.footer-colum {
    width: 25%;
}

.footer-right {
    width: 20%;
}

.social-icon {
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .social-icon i {
        font-size: 16px;
    }

    .social-icon:hover {
        color: var(--Light-golden);
        border-color: var(--Light-golden);
        transform: translateY(-4px);
    }

.verified-box {
    margin-top: 20px;
}

.verified-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

    .verified-row img {
        height: 28px;
    }

.footer-right a {
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 767px) {

    .footer-middle {
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        text-align: left;
    }

    .footer-colum {
        width: 47%;
    }

    .footer-right {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

        .social-icon i {
            font-size: 14px;
        }

    .d-flex.gap-2 {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .footer-middle {
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        text-align: left;
    }

    .footer-colum {
        width: 100%;
    }

        .footer-colum h5 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .footer-colum ul li {
            font-size: 15px;
            line-height: 1.6;
        }

    .footer-right {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

        .footer-right h5 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .footer-right p,
        .footer-right a {
            font-size: 15px;
            line-height: 1.7;
        }

    .verified-box {
        margin-top: 30px;
    }
}

/* page 2 */
/* 1 */
.page-banner {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white), #f5f2eb);
    overflow: hidden;
}

    .page-banner h1 {
        font-size: var(--font-heading-1-size);
        color: var(--black);
        position: relative;
        z-index: 3;
    }

    .page-banner p {
        font-size: var(--font-paragraph-size);
        color: var(--Dark-golden);
        line-height: 1.7;
        z-index: 3;
    }

@media (max-width: 767px) {

    .page-banner {
        padding: 60px 15px;
    }

        .page-banner h1 {
            font-size: 28px;
            line-height: 1.3;
        }

        .page-banner p {
            font-size: 15px;
            line-height: 1.6;
        }

    .btn-secondary-custom {
        padding: 12px 28px;
        font-size: 14px;
        border-width: 1.5px;
    }
}

@media (max-width: 480px) {

    .page-banner {
        padding: 45px 12px;
    }

        .page-banner h1 {
            font-size: 24px;
        }

        .page-banner p {
            font-size: 14px;
        }

    .btn-secondary-custom {
        padding: 10px 24px;
        font-size: 13px;
        border-radius: 40px;
    }
}

/* CTA  */
.cta {
    padding: 120px 0;
    color: var(--black);
    position: relative;
}

    .cta h2 {
        font-size: var(--font-heading-2-size);
        font-weight: 600;
    }

    .cta p {
        font-size: var(--font-paragraph-size);
        color: var(--Dark-golden);
        margin-bottom: 30px;
    }

.latest-work {
    padding: 10px 0;
}

.work-title {
    text-align: center;
    margin-bottom: 40px;
}

    .work-title h2 {
        font-size: var(--font-heading-2-size);
        font-weight: 600;
    }

    .work-title p {
        font-size: var(--font-paragraph-size);
        color: var(--Dark-golden);
    }

.work-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}

    .work-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .work-card img {
        width: 100%;
        height: 300px;
    }

.work-info {
    padding: 18px;
}

    .work-info h5 {
        font-size: var(--font-heading-5-size);
        margin: 0 0 6px;
        font-weight: 600;
    }

    .work-info p {
        font-size: var(--font-paragraph-size);
        margin: 0;
        color: var(--Dark-golden);
    }

/* online store page*/
.latest-work-section h2 {
    font-size: var(--font-heading-2-size);
    font-weight: 600;
}

.latest-work-section p {
    font-size: var(--font-paragraph-size);
    color: var(--Dark-golden);
}

.category-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 16px;
    overflow: hidden;
    gap: 24px;
    padding: 14px 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.card-image {
    flex: 0 0 45%;
    max-width: 45%;
    overflow: hidden;
    border-radius: 12px;
}

    .card-image img {
        width: 100%;
        height: 230px;
        border-radius: 12px;
    }

.card-body {
    flex: 1;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .card-body h3 {
        font-size: var(--font-heading-3-size);
        margin: 0 0 8px;
        font-weight: 600;
        color: var(--black);
    }

    .card-body p {
        font-size: var(--font-heading-6-size);
        margin: 0 0 12px;
        color: var(--Dark-golden);
        line-height: 1.5;
        max-width: 100%;
    }

.card-link {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 24px;
    background: transparent;
    border: 2px solid var(--Light-golden);
    color: var(--black);
    width: fit-content;
    transition: background .18s ease, color .18s ease;
}

    .card-link:hover {
        color: var(--Dark-golden);
    }

.category-card {
    height: 100%;
}

@media (max-width: 767.98px) {
    .category-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 8px;
    }

    .card-image {
        flex-basis: auto;
        max-width: 100%;
    }

        .card-image img {
            height: 200px;
            width: 100%;
            border-radius: 12px;
        }

    .card-body {
        padding-left: 0;
        padding-top: 12px;
    }
}

/* About Us page */
/* 1 */
.company-section {
    padding: 4rem 1rem;
}

    .company-section h2 {
        font-size: var(--font-heading-2-size);
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--black);
    }

    .company-section p {
        font-size: var(--font-paragraph-size);
        color: var(--black);
        line-height: 1.7;
    }

/* 2 */
.about-mission {
    padding: 60px 20px;
    background: linear-gradient(145deg, #fafafa, #f1f1f1);
    color: var(--black);
}

    .about-mission h2 {
        font-size: var(--font-heading-2-size);
        font-weight: 600;
        color: var(--black);
    }

.about-mission-desc {
    color: var(--Dark-golden);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.mission-card {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

    .mission-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .mission-card h3 {
        font-size: var(--font-heading-3-size);
        font-weight: 600;
        color: var(--black);
        margin-bottom: 15px;
    }

    .mission-card p {
        font-size: var(--font-paragraph-size);
        color: var(--Light-golden);
        line-height: 1.7;
    }


/* Faq section */

.faq-wrapper {
    background: linear-gradient(145deg, #fafafa, #f1f1f1);
}

    .faq-wrapper h6 {
        font-size: var(--font-heading-6-size);
        color: var(--Dark-golden);
        font-weight: 600;
        letter-spacing: 1px;
    }

    .faq-wrapper h2 {
        font-size: var(--font-heading-2-size);
        font-weight: 600;
        color: var(--black);
        line-height: 1.3;
    }

    .faq-wrapper p {
        font-size: var(--font-paragraph-size);
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
    }

.custom-faq .accordion-item {
    background: var(--white);
    border: none;
    margin-bottom: 18px;
    border-radius: 16px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.custom-faq .accordion-button {
    padding: 20px;
    font-size: 17px;
    font-weight: 600;
    background: var(--white);
    border-radius: 16px;
}

    .custom-faq .accordion-button:not(.collapsed) {
        background: var(--white);
        box-shadow: none;
        color: var(--Light-golden);
    }

    .custom-faq .accordion-button:focus {
        box-shadow: none;
    }

.custom-faq .accordion-body {
    padding: 18px 22px;
    font-size: 15px;
}

/* Contact page */

.contact-wrapper {
    max-width: 850px;
}

    .contact-wrapper h2 {
        font-size: var(--font-heading-2-size);
        color: var(--Light-golden);
    }

.form-label {
    font-weight: 600;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #F0644F !important;
    box-shadow: 0 0 0 0.2rem rgba(240, 100, 79, 0.15) !important;
}

    .was-validated .form-control:invalid ~ .invalid-feedback,
    .form-control.is-invalid ~ .invalid-feedback {
        display: block;
        color: #F0644F !important;
        font-weight: 500;
    }

    .was-validated .form-control:invalid:focus,
    .form-control.is-invalid:focus {
        border-color: #F0644F !important;
        box-shadow: 0 0 0 0.25rem rgba(240, 100, 79, 0.25) !important;
    }

.map-container {
    padding: 0%;
    margin: 0%;
}

/* portfolio page */
.detail-card {
    min-height: 110px;
    background: #f8f8f8;
    border: 1px solid #dcdcdc;
}

    .detail-card h5 {
        font-size: var(--font-heading-5-size);
        color: var(--Dark-golden);
    }

    .detail-card p {
        font-size: var(--font-paragraph-size);
    }

@media (min-width: 992px) {
    .five-cols .col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .five-cols .col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 767px) {
    .five-cols .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* automobile */
.detail-header img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--Light-golden);
    box-shadow: 0 2px 10px #eee;
}

    .info-box h3 {
        font-size: var(--font-heading-3-size);
        font-weight: 600;
    }

    .info-box ul li {
        margin-bottom: 8px;
    }

blockquote {
    font-size: 18px;
    font-style: italic;
    padding: 15px 20px;
    background: #f1f1f1;
    border-left: 4px solid var(--black);
    border-radius: 8px;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: var(--Light-golden);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 50px;
}

/* policy */
.policy-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}

/* what's up btn */
.wh-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1060;
}

.wh-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--black);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 0;
    cursor: pointer;
    transition: all .25s ease;
}

    .wh-floating-btn i {
        font-size: 24px;
    }

    .wh-floating-btn.close-mode {
        background: var(--black);
    }

        .wh-floating-btn.close-mode i::before {
            content: "\f00d";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }

.wh-panel {
    width: 350px;
    max-width: calc(100vw - 40px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    overflow: hidden;
    transform-origin: bottom right;
    transition: all .35s ease-out;
    opacity: 0;
    transform: translateY(30px) scale(.85);
    margin-bottom: 12px;
    position: absolute;
    right: 0;
    bottom: 70px;
    display: none;
    flex-direction: column;
    max-height: 600px;
}


    .wh-panel.show {
        display: flex;
        opacity: 1;
        transform: translateY(0) scale(1);
    }

.wh-header {
    background: var(--black);
    color: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .wh-header .title {
        font-weight: 600;
        font-size: 15px;
    }

    .wh-header .subtitle {
        font-size: 12px;
        opacity: .95;
    }

.wh-bubble {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 15px 15px 15px 5px;
    padding: 12px 15px;
    font-size: 14px;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px;
    line-height: 1.4;
}

.wh-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px;
    overflow: visible;
}

.wh-q-btn {
    background: #f2f2f2;
    border: 1px solid #5A5A5A;
    color: #000;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 8px 8px 0 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}

    .wh-q-btn:hover {
        background: #5A5A5A;
        color: #fff;
    }

.wh-btn {
    background: var(--black);
    color: #fff;
    padding: 12px;
    font-size: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: flex;
    border: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .2);
}

.whClose {
    margin-left: auto;
    cursor: pointer;
    font-size: 18px;
}

@media (max-width: 768px) {
    .wh-widget {
        display: none;
    }
}


/* timeline */

.timeline {
    position: relative;
    margin-left: 30px;
    border-left: 3px solid transparent;
    padding-left: 30px;
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 20px;
}

.process-section p {
    font-size: var(--font-paragraph-size);
    color: var(--Dark-golden);
}

.timeline-icon {
    position: absolute;
    left: -5px;
    top: 0;
    width: 40px;
    height: 40px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .timeline {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }

    .timeline-step {
        margin-bottom: 40px;
        padding-left: 0;
        text-align: center;
    }

    .timeline-icon {
        position: static;
        margin: 0 auto 15px;
    }

    .timeline-content {
        margin: 0 auto;
        max-width: 500px;
        text-align: center;
    }
}

/* explore more */

.why-description {
    padding-top: 40px;
    padding-bottom: 40px;
}

    .why-description p {
        font-size: var(--font-paragraph-size);
        color: var(--Dark-golden);
    }

.content-card {
    display: flex;
    border: 1px var(--Light-golden) solid;
    border-radius: 20px;
    align-items: center;
}

.image-container {
    height: -webkit-fill-available;
    padding: 10px;
}

    .image-container img {
        width: 300px;
        min-height: 300px;
        height: 100%;
        border-radius: 20px;
    }

.image-right {
    flex-direction: row-reverse;
}

@media (max-width:768px) {
    .content-card {
        flex-direction: column;
        gap: 20px;
    }

    .image-container {
        width: 100%;
        height: 300px;
    }

        .image-container img {
            width: 100%;
        }
}

/* technical details */

.module-section {
    padding: 40px 0;
    background-color: #fff;
}

.img-stack {
    position: relative;
    text-align: center;
}

    .img-stack img:first-child {
        width: 80%;
        border-radius: 20px;
    }

.module-section {
    color: var(--Dark-golden);
}

.master-hero {
    padding: 20px;
}

.master-card {
    border: 1px solid #E7EEF6;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(20, 40, 80, 0.04);
    transition: transform .18s ease, box-shadow .18s ease;
}

.master-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Light-golden);
    color: var(--white);
    font-size: 1.4rem;
}

.featured-list li {
    margin-bottom: .45rem;
}

.verified-box {
    color: #dcdcdc;
    padding-top: 20px;
}

    .verified-box .verified-logo img {
        transition: 0.3s ease;
        height: 40px;
    }

@media (max-width: 576px) {
    .verified-box h6 {
        text-align: center;
    }

    .verified-box .logo-row {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 370px) {
    .verified-box h6 {
        text-align: center;
    }

    .verified-box .logo-row {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .verified-box h6 {
        text-align: center;
    }

    .verified-box .logo-row {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}


/* blog */

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-heading p {
    font-size: var(--font-paragraph-size);
    color: var(--Dark-golden);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-info {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

    .blog-info i {
        margin-right: 4px;
        color: var(--Light-golden);
    }

.blog-content h3 {
    font-size: var(--font-heading-3-size);
    font-weight: 700;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--lines, 1);
    overflow: hidden;
}

.blog-content p {
    font-size: var(--font-paragraph-size);
    color: #555;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--lines, 3);
    overflow: hidden;
}

/* blog-detail */
.blog-details {
    height: 420px;
    margin-top: 100px;
}

@media (max-width: 992px) {
    .blog-details {
        height: 350px;
        margin-top: 80px;
    }
}

@media (max-width: 576px) {
    .blog-details {
        height: 250px;
        margin-top: 80px;
    }
}

@media (max-width: 400px) {
    .blog-details {
        height: 220px;
        margin-top: 80px;
    }
}

.content-heading::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--Light-golden);
    margin-top: 6px;
    border-radius: 2px;
}
/* error page */

.error-container {
    text-align: center;
    padding: 50px 0px;
}

    .error-container img {
        width: 300px;
    }


/* ContactUs Form alert/save message parpose */
.contact-toast {
    position: fixed;
    top: 25px;
    right: 25px;
    min-width: 280px;
    max-width: 320px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    animation: slideIn 0.4s ease;
}

.toast-success {
    background: #16a34a;
}

.toast-error {
    background: #dc3545;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* office section in ContactUs page */

.office-section {
    padding: 40px 0;
    text-align: center;
}

    .office-section .row {
        display: flex;
        flex-wrap: wrap;
        gap: 22px;
    }

        .office-section .row > .office-box {
            flex: 0 0 calc(50% - 11px);
            max-width: calc(50% - 11px);
        }

.office-box {
    position: relative;
    background: linear-gradient(145deg, #fafafa, #f1f1f1);
    border-radius: 20px;
    padding: 50px 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

    .office-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 0;
        background: var(--Light-golden);
        transition: width 0.4s ease;
    }

    .office-box:hover::before {
        width: 100%;
    }

    .office-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 35px;
    border-radius: 50%;
    background: var(--Light-golden);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.office-box p:last-child {
    margin-bottom: 0;
}

.office-box p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--Dark-golden);
    text-align: center;
}

.office-box strong {
    width: auto;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    font-size: 18px;
}

.office-box p a {
    width: auto;
    text-decoration: none;
    color: var(--Dark-golden);
    white-space: pre-line;
    word-break: break-word;
    transition: all 0.3s ease;
    font-size: 17px;
    text-align: center;
}

    .office-box p a:hover {
        color: var(--Light-golden);
    }

@media (max-width: 991px) {
    .office-section .row > .office-box {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .office-box {
        padding: 40px 25px;
    }

        .office-box strong {
            width: 150px;
        }

        .office-box p a {
            width: 260px;
        }
}

@media (max-width: 576px) {
    .office-section {
        padding: 30px 0;
    }

    .office-box {
        padding: 35px 18px;
        border-radius: 16px;
    }

        .office-box p {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 6px;
        }

        .office-box strong {
            width: auto;
            text-align: center;
            font-size: 17px;
        }

        .office-box p a {
            width: 100%;
            text-align: center;
            font-size: 15px;
        }

    .icon-circle {
        width: 65px;
        height: 65px;
        font-size: 24px;
        margin-bottom: 25px;
    }
}

/*Success popup Section for ContactUs page*/
.success-popup {
    border-radius: 15px;
    padding: 25px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--black);
    color: var(--Dark-golden);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    font-weight: bold;
}

.success-popup h4 {
    font-weight: 600;
}

.success-popup p {
    color: var(--black);
    font-size: var(--font-paragraph-size);
}

/*common popup*/
.custom-popup {
    border-radius: 20px;
    padding: 28px 24px;
    background: linear-gradient(180deg, #ffffff, #f9fafb);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

    .custom-popup::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 6px;
        width: 100%;
        background: linear-gradient(90deg, #c6923b, #e9c276);
    }

.popup-logo img {
    height: 64px;
    margin-bottom: 10px;
}

.custom-popup h4 {
    font-size: 22px;
    margin-bottom: 6px;
}

.custom-popup p {
    font-size: 14px;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    transition: all 0.25s ease;
}

    .form-control:focus {
        border-color: #c6923b;
        box-shadow: 0 0 0 3px rgba(198, 146, 59, 0.15);
    }

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background-color: #f3f4f6;
    border-radius: 50%;
    padding: 6px;
    opacity: 0.9;
}

    .popup-close:hover {
        opacity: 1;
    }

@media (max-width: 767px) {
    .custom-popup {
        padding: 22px 18px;
    }

        .custom-popup h4 {
            font-size: 19px;
        }

    .popup-logo img {
        height: 55px;
    }
}

.map-section iframe {
    border: 0;
    display: block;
}

.map-section {
    line-height: 0;
}

/* category section in blog detail page */

.category-box {
    border-radius: 12px;
}

.category-item {
    display: inline-block;
    padding: 8px 12px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

    .category-item:hover {
        color: var(--Light-golden);
    }


.tag-item {
    display: inline-block;
    background: #f8f9fa;
    color: #212529;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
}

.office-box p a {
    white-space: pre-line;
}
