/*Increase button size on hover*/
.btn:hover {
    transition: background-color 0.3s, transform 0.3s;
    transform: scale(1.05);
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


.logo-container {
    position: relative;
    display: inline-block;
}

.logo-container img {
    width: 100%;
    max-width: 85px;
    max-height: 57px;
}

.logo-container button {
    position: absolute;
    top: 0; /* Position at the top-right corner */
    right: -25px; /* Position at the top-right corner and move right a bit so button is still usable */
    margin: 2px; /* Optional, for spacing */
}


.navbar {
    z-index: 10;
}

.artist-navbar {
    padding: 0.65rem 1rem;
    border-radius: 12px;
}

.artist-navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.artist-navbar .nav-link {
    border-radius: 12px;
    font-weight: 600;
    padding-inline: 0.8rem;
}

.artist-navbar .nav-link:hover,
.artist-navbar .nav-link:focus,
.artist-navbar .nav-item:hover > .nav-link {
    background-color: #fd8841;
    color: #ffffff !important;
}

.artist-navbar-toggler {
    border: 1px solid #dbe0e8;
    border-radius: 12px;
    padding: 0.35rem 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.artist-nav-content {
    gap: 0.5rem;
}

.artist-nav-actions {
    border-top: 1px solid #edf1f5;
    padding-top: 0.75rem;
    margin-top: 0.35rem;
    gap: 0.35rem;
}

.artist-nav-actions .navbar-nav {
    width: 100%;
}

.artist-nav-actions .nav-item {
    width: 100%;
}

.artist-nav-actions .nav-link,
.artist-nav-actions .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artist-navbar .dropdown-menu {
    border-radius: 12px;
    border: 1px solid #e6ebf2;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 0.5rem;
}

.artist-navbar .dropdown-item {
    border-radius: 8px;
    font-weight: 600;
}

.artist-navbar .dropdown-item:hover,
.artist-navbar .dropdown-item:focus {
    background-color: #fd8841;
    color: #ffffff;
}

.artist-navbar .cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    border: 1px solid transparent;
}

.artist-navbar .cart-link:hover {
    border-color: #e6ebf2;
    background: #f5f7fb;
}

.nav-item:hover, .cart-link:hover {
    background-color: #fd8841;
    border-radius: 2px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out;
}

.nav-item a.nav-link {
    padding-left: 10px;
}

@media (min-width: 576px) {
    .nav-item:hover, .cart-link:hover {
        border-radius: 20px;
    }

    .nav-item a.nav-link {
        padding-left: 0px;
    }

    .artist-nav-content {
        align-items: center;
        gap: 1.25rem;
    }

    .artist-nav-actions {
        border-top: 0;
        padding-top: 0;
        margin-top: 0;
        flex-direction: row;
        gap: 0.75rem;
    }

    .artist-nav-actions .navbar-nav,
    .artist-nav-actions .nav-item,
    .artist-nav-actions .nav-link,
    .artist-nav-actions .dropdown-toggle {
        width: auto;
    }
}




.nav-item:hover a.nav-link {
    color: white !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out;
}


.nav-item:hover a.cart-link {
    color: #0077cc !important;
}

/* Icon-driven action buttons and menus */
.icon-action-button,
.context-menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: box-shadow 120ms ease, transform 120ms ease, background-color 120ms ease;
}

.icon-action-button .bx,
.context-menu-toggle .bx {
    font-size: 20px;
}

.icon-action-button:hover,
.icon-action-button:focus,
.context-menu-toggle:hover,
.context-menu-toggle:focus {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    outline: none;
    background: #ffffff;
}

.context-menu-panel,
.painting-context-menu {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.context-menu-panel .dropdown-item,
.painting-context-menu .dropdown-item {
    padding: 10px 16px;
    font-weight: 600;
}

.context-menu-panel .dropdown-item:hover,
.painting-context-menu .dropdown-item:hover {
    background-color: #f3f4f6;
}

@media (max-width: 576px) {
    .icon-action-button,
    .context-menu-toggle {
        width: 52px;
        height: 52px;
    }

    .context-menu-panel,
    .painting-context-menu {
        min-width: 75vw;
    }

    .logo-container img {
        max-width: 70px;
    }

    .artist-nav-collapse {
        width: 100%;
    }

    .artist-nav-collapse.show {
        margin-top: 0.65rem;
        padding: 0.75rem 0.5rem 0.5rem;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    }

    .artist-nav-content {
        gap: 0.75rem;
    }

    .artist-navbar .nav-link {
        padding: 0.6rem 0.5rem;
    }

    /* Keep dropdowns white when expanded on mobile instead of inheriting hover color */
    .artist-nav-collapse .nav-item,
    .artist-nav-collapse .nav-item:hover,
    .artist-nav-collapse .nav-item:focus-within,
    .artist-nav-collapse .nav-item.show {
        background-color: transparent;
    }

    .artist-navbar .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        border: 0;
        padding: 0.25rem 0.5rem 0.5rem;
        background: transparent;
    }

    .artist-navbar .dropdown-item {
        padding-left: 0;
    }

    .artist-nav-actions {
        border-top: 1px solid #e6ebf2;
    }
}

/*Painting Tile*/
.painting-tile {
    height: 100%;
    position: relative;
    border: 1px solid #e7e7e7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    text-align: center;
    max-width: 250px;
    transition: box-shadow 0.1s ease-in-out;
    user-select: none;
}

.painting-tile:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/*Painting Zoom on hover ...*/

.painting-container {
    overflow: hidden;
    cursor: pointer;
}

.painting-container img {
    transition: transform 0.3s ease-in-out;
}

.painting-container img:hover {
    transform: scale(1.1); /* Adjust the scale value to control the zoom level */
}
/* ... Painting Zoom on hover*/


.painting-tile .painting-container {
    min-height: 150px;
    width: 200px;
    margin: auto;
}


.painting-tile .painting-container img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 4px;
}

@media only screen and (max-width: 600px) {

    .painting-tile .painting-container {
        width: 250px;
        min-height: 250px;
    }
    .painting-tile .painting-container img {
        max-width: 250px;
        max-height: 250px;
    }

    .painting-tile {
        max-width: 350px;
    }
}



.original-price {
    text-decoration: line-through;
    font-size: x-small
}

.painting-tile .tile-button {
    margin: 10px;
}

.painting-tile .product-info {
    padding-top: 10px;
    line-height: 26px;
    min-width: 208px;
}

/* ribbon */
/*https://codepen.io/nxworld/pen/oLdoWb*/
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    pointer-events: none;
    user-select: none;
}

.ribbon.small {
    width: 100px;
    height: 100px;
}

.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 5px solid #2980b9;
}

.ribbon span {
    position: absolute;
    display: block;
    padding: 15px 0;
    background-color: #3498db;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    color: #fff;
    font: 700 18px/1 'Lato', sans-serif;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    text-transform: uppercase;
    text-align: center;
}

.ribbon.small span {
    width: 150px;
    padding: 10px 0;
}

/* bottom right*/
.ribbon-bottom-right {
    bottom: -10px;
    right: -10px;
}

.ribbon-bottom-right::before,
.ribbon-bottom-right::after {
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.ribbon-bottom-right::before {
    bottom: 0;
    left: 0;
}

.ribbon-bottom-right::after {
    top: 0;
    right: 0;
}

.ribbon-bottom-right span {
    left: -25px;
    bottom: 30px;
    transform: rotate(-45deg);
}

.ribbon-bottom-right.small span {
    left: -11px;
    bottom: 19px;
}



/*shopping cart*/

.cart-icon {
    display: inline-block;
    fill: currentColor;
    height: 24px;
    width: 24px;
    vertical-align: middle;
}

.cart-number-of-items {
    top: 4px;
    right: 4px;
    position: absolute;
    font-size: 11px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 6px;
    padding-right: 6px;
    background: #FAA077;
    color: inherit;
    border: 2px solid #FFFFFF;
    border-radius: 15px;
    line-height: 1;
    z-index: 100;
}

.cart-link {
    font-weight: bold;
    min-width: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 18px;
    padding-right: 18px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    z-index: 10;
}

.cart-item {
    padding: 10px;
    margin: 5px;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    position: relative;
    padding-right: 35px;
}

.cart-item.sold-out-item-in-cart {
    border-color: red;
}

.cart-items-sold-out-msg {
    color: red;
}

/*About page*/
.about-image {
    max-width: 300px;
}




/* Style the dropdown menu */
.dropdown-menu {
    background-color: #ffffff; /* Change the background color */
    border-radius: 4px; /* Rounded corners */
    border: 1px solid #dddddd; /* Add a light border */
    box-shadow: 0 2px 4px rgba(0,0,0,.1); /* Optional: add a shadow for depth */
}

/* Style the dropdown items */
.dropdown-menu .dropdown-item {
    color: #1f2937; /* Darker text for stronger contrast */
}

    /* Change the background color on hover */
    .dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
        background-color: #fd8841; /* Primary accent for hover */
        color: #ffffff; /* Keep text readable against the accent */
    }


.dropdown-menu .dropdown-item.disabled-categories-label {
    color: darkorange;
}

.dropdown-menu .dropdown-item.disabled-categories-label:hover {
    background-color: white;    
}

/* Target the button containing the icon to change the icon's color on hover */
.btn:hover .bx-dots-vertical-rounded {
    color: #fd680e; /* Primary color on hover */
    transform: scale(1.1); /* Make the icon slightly larger */
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out; /* Smooth transition for transform and color */
}




/*Product page (Painting)*/

.left-side-product-box img {
    width: 100%;
}

.left-side-product-box .sub-img img {
    margin-top: 5px;
    width: 83px;
    height: 100px;
}

.right-side-pro-detail span {
    font-size: 13px;
}

.right-side-pro-detail p {
    font-size: 25px;
    color: #a1a1a1;
}

.right-side-pro-detail .price-pro {
    font-size: 18px;
}

.right-side-pro-detail .tag-section {
    font-size: 18px;
    color: #5D4C46;
}

.pro-box-section .pro-box img {
    width: 100%;
    height: 200px;
}

@media (min-width:360px) and (max-width:640px) {
    .pro-box-section .pro-box img {
        height: auto;
    }
}

.painting-detail-image {
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.painting-detail-image.other-image {
    cursor: pointer
}



/*payment success page*/



.payment-success .card {
    border: none
}

.payment-success .totals tr td {
    font-size: 13px
}

.payment-success .product-qty span {
    font-size: 12px;
    color: #dedbdb
}










/*Landing Page*/



.landing-page a {
    text-decoration: none;
    color: #fd680e;
}

.landing-page a:hover {
    color: #ff8f4c;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 90%;
    height: 80vh;
    background-size: cover;
    position: relative;
    margin-top: -80px;
    z-index: 0;
    margin: auto;
}

    #hero .hero-container {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }

    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 400;
        line-height: 56px;
        line-height: 56px;
        color: #222;
    }

    #hero h2 {
        color: #333;
        margin-bottom: 30px;
        font-size: 24px;
    }

    #hero .email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    #hero .email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    #hero .email-form .loading, .form-submitting {
        display: none;
        background: rgba(255, 255, 255, 0.5);
        text-align: center;
        padding: 15px;
        border-radius: 50px;
    }

        #hero .email-form .loading:before, .form-submitting:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading-notify 1s linear infinite;
            animation: animate-loading-notify 1s linear infinite;
        }

@-webkit-keyframes animate-loading-notify {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading-notify {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#hero  input {
    border-radius: 50px;
    box-shadow: none;
    font-size: 14px;
    border: 0;
    padding: 0px 15px 2px 20px;
    width: 250px;
    height: 40px;
    margin: 0 8px;
}

#hero .browse-btn, .like-hero .browse-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: none;
    color: #fff !important;
    background: #fd680e;
}

    #hero .browse-btn:hover, .like-hero .browse-btn:hover {
        background: #fd8841;
    }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .email-form input {
        margin: 0 auto;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 80px 0;
}

.section-bg {
    background-color: #fff7f2;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 300;
        margin-bottom: 20px;
        padding-bottom: 15px;
        position: relative;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 80px;
            height: 1px;
            background: #fd680e;
            bottom: 0;
            left: calc(50% - 40px);
        }

    .section-title p {
        margin-bottom: 0;
        font-style: italic;
        color: #666666;
    }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    overflow-wrap: break-word;
}

.about h3 {
    font-weight: 300;
    font-size: 26px;
}

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

    .about ul li {
        padding-bottom: 10px;
    }

    .about ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #fd680e;
    }

.about p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    padding-bottom: 30px;
}

    .why-us .card {
        border-radius: 3px;
        border: 0;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .why-us .card-icon {
        text-align: center;
        margin-top: -32px;
    }

        .why-us .card-icon i {
            font-size: 32px;
            color: #fff;
            width: 64px;
            height: 64px;
            padding-top: 10px;
            text-align: center;
            background-color: #fd680e;
            border-radius: 50%;
            text-align: center;
            border: 4px solid #fff;
            transition: 0.3s;
            display: inline-block;
        }

    .why-us .card-body {
        padding-top: 12px;
    }

    .why-us .card-title {
        font-weight: 700;
        text-align: center;
    }

        .why-us .card-title a {
            color: #743e1d;
        }

            .why-us .card-title a:hover {
                color: #fd680e;
            }

    .why-us .card-text {
        color: #5e5e5e;
    }

    .why-us .card:hover .card-icon i {
        background: #fff;
        color: #fd680e;
    }

@media (max-width: 1024px) {
    .why-us {
        background-attachment: scroll;
    }
}

/*--------------------------------------------------------------
# Frequenty Asked Questions
--------------------------------------------------------------*/
.faq {
    padding: 90px 0;
}

.faq.section-bg {
    background: radial-gradient(circle at 10% 10%, rgba(124, 140, 255, 0.08), transparent 25%),
        radial-gradient(circle at 90% 10%, rgba(252, 140, 100, 0.08), transparent 25%),
        #f7f8fb;
}

.faq .section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.faq .faq-title {
    margin-bottom: 20px;
}

.faq .faq-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.22);
}

.faq .faq-panel {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq .faq-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.07), rgba(59, 130, 246, 0.04));
    border-bottom: 1px solid #e5e7eb;
}

.faq .faq-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 12px 0 0 #f59e0b, 24px 0 0 #22c55e;
}

.faq .faq-list {
    padding: 18px;
    list-style: none;
    margin: 0;
}

.faq .modern-faq li {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 16px;
    margin-bottom: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq .modern-faq li:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.faq .modern-faq a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.faq .modern-faq i {
    font-size: 22px;
    color: #8b5cf6;
}

.faq .modern-faq p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    color: #4b5563;
}

.faq .modern-faq .icon-show {
    display: none;
}

.faq .modern-faq a.collapsed {
    color: #0f172a;
}

.faq .modern-faq a.collapsed:hover {
    color: #6d28d9;
}

.faq .modern-faq a.collapsed .icon-show {
    display: inline-block;
}

.faq .modern-faq a.collapsed .icon-close {
    display: none;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact {
    --contact-border: #e5e7eb;
    --contact-muted: #6b7280;
}

.contact .contact-card,
.contact .contact-form-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--contact-border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
    padding: 24px;
    height: 100%;
}

.contact .contact-form-card {
    padding: 28px;
}

.contact .contact-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    color: var(--contact-muted);
    margin-bottom: 6px;
}

.contact .contact-heading {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact .contact-copy {
    color: var(--contact-muted);
    margin-bottom: 12px;
}

.contact .contact-note {
    margin-top: 14px;
    padding: 14px;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    background: #f8fafc;
}

.contact .contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(120deg, #14b8a6, #0ea5e9);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.32);
    margin-top: 6px;
}

.contact .contact-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.contact .contact-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--contact-border);
    border-radius: 12px;
    background: #f8fafc;
}

.contact .contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(120deg, rgba(253, 104, 14, 0.18), rgba(253, 136, 65, 0.24));
    color: #c05621;
    font-size: 20px;
}

.contact .contact-label {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    color: var(--contact-muted);
    margin: 0;
}

.contact .contact-value {
    margin: 2px 0 0;
    font-size: 16px;
}

.contact .contact-social {
    margin-top: 14px;
}

.contact .contact-social .social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact .social-links a {
    font-size: 18px;
    display: inline-grid;
    place-items: center;
    background: #f3f4f6;
    color: #fd680e;
    line-height: 1;
    border-radius: 12px;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: all 0.2s ease-in-out;
    border: 1px solid #edeef0;
}

    .contact .social-links a:hover {
        background: linear-gradient(135deg, #fd680e, #fd8841);
        color: #fff;
        box-shadow: 0 10px 20px rgba(253, 104, 14, 0.35);
        transform: translateY(-1px);
    }

.contact .email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact .email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
    border-radius: 12px;
}

    .contact .email-form .error-message br + br {
        margin-top: 25px;
    }

.contact .email-form .sent-message {
    display: none;
    color: #0f5132;
    background: #d1fae5;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid #a7f3d0;
}

.contact .email-form .loading {
    display: none;
    background: #f8fafc;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    color: #4b5563;
}

    .contact .email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }

.contact .email-form input, .contact .email-form textarea {
    border-radius: 12px;
    box-shadow: none;
    font-size: 14px;
    border: 1px solid var(--contact-border, #e5e7eb);
    background: #f8fafc;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact .email-form textarea {
    min-height: 140px;
}

    .contact .email-form input:focus, .contact .email-form textarea:focus {
        border-color: #fd680e;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(253, 104, 14, 0.12);
    }

.contact .email-form button[type=submit] {
    background: linear-gradient(135deg, #fd680e, #fd8841);
    border: 0;
    padding: 12px 26px;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(253, 104, 14, 0.25);
}

    .contact .email-form button[type=submit]:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 36px rgba(253, 104, 14, 0.3);
    }

@media (max-width: 768px) {
    .contact .social-links {
        text-align: center;
    }
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

















/*edit mode*/

.edit-field {
    display: none;
}

.in-edit-mode .edit-field {
    display: block;
}

.in-edit-mode .display-field {
    display: none;
}















/*Pricing Section*/
#pricing .bx-check-double {
    color: #28a745; /* Hex color for a vibrant green shade */
}

#pricing h5 {
    color: #28a745;
}










/* Ensure the error message is visible */
.dz-error-message {
    display: block !important;
    color: #fd8841; /* You can change the color as needed */
    font-weight: bold; /* Make it bold for better visibility */
    margin-top: 5px; /* Add some space above the message */
}








a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    text-align: center;
}

.modal-modern .modal-dialog {
    max-width: 720px;
}

.modal-modern .modal-content {
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.modal-modern .modal-header {
    border-bottom: 1px solid #edf2f7;
    padding: 20px 24px 12px;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.modal-modern .modal-title {
    font-weight: 700;
    color: #111827;
}

.modal-modern .modal-subtitle {
    color: #4b5563;
    font-size: 0.95rem;
}

.modal-modern .modal-eyebrow {
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: #6b7280;
}

.modal-modern .modal-body {
    padding: 16px 24px 8px;
    color: #374151;
}

.modal-modern .modal-footer {
    border-top: 1px solid #edf2f7;
    padding: 12px 24px 16px;
    background: #f9fafb;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-modern .modal-dropzone {
    border: 1px dashed #d1d5db;
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px;
}

.modal-modern .alert-light {
    background-color: #f9fafb;
}
