@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --template-classic: #ff4b2b;
    --template-modern: #b8ff69;
    --template-creative: #ffb846;
    --template-elegant: #34d19a;
    --bg-modern: #0c2e35;
    --bg-creative: #020b22;
}

.btn-dark {
    background: var(--template-modern);
    color: #000;
    border-radius: 30px;
    border: none;
    width: 45%;
    font-size: 13px;
}

.btn-dark:hover {
    background: var(--template-modern);
    color: #000;
}

.btn-creative {
    background: var(--template-creative);
    color: #000;
    border-radius: 30px;
    border: none;
    width: 45%;
    font-size: 13px;
}

.btn-creative:hover {
    background: var(--template-creative);
    color: #000;
}

.btn-orange {
    background: var(--template-classic);
}

body {
    background-color: #1e1e1e;
    font-family: "Lato", serif;
}

.business-profile {
    position: relative;
    max-width: 450px;
    margin: auto;
    overflow: hidden;
}
.business-profile .nav-area img {
    width: 53px;
}

.business-profile .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.business-profile .menu li a {
    text-decoration: none;

    font-weight: 600;
    padding: 0.5rem 1rem;
}

.business-profile .burger-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.business-profile .offcanvas-header {
    border-bottom: 1px solid #e0e0e0;
}

.business-profile .offcanvas-body .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    color: #333;
}

.business-profile .offcanvas-body .nav-link:hover {
    background-color: #f0f2f5;
    border-radius: 8px;
}

/* This positions the offcanvas inside its relative parent */
.business-profile .offcanvas {
    position: absolute;
}

/* Set offcanvas width to 80% */
.business-profile .offcanvas.offcanvas-end {
    width: 80%;
}

.template-classic {
    max-width: 450px;
    margin: auto;
    background: #fff;
    overflow: hidden;

}

.template-classic .nav-area {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* .template-classic .nav-area .logo img {
    width: 120px;
} */

.template-classic .nav-area .menu ul {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

.template-classic .nav-area .menu ul li a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 30px;
}

.template-classic .nav-area .menu ul li a:hover {
    /* display: block; */
    background: #ffeee6;

}

.header {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    color: white;
    margin: 20px;
    border-radius: 15px;
    background: linear-gradient(to right, #000, var(--template-classic));
    overflow: hidden;
}

.profile-img {
    width: 160px;
    height: 160px;

}

.header .header-info {
    padding: 0 15px;
}

.header .header-info h4 {
    font-size: 22px;
}

.header .header-info p {
    font-size: 14px;
    margin-bottom: 3px;
}

.btn-primary {
    background-color: var(--template-classic);
    color: white;
    border: none;
}

.btn-primary:focus {
    background-color: var(--template-classic) !important;
    color: white;
    border: none;
    box-shadow: none !important;
}

.btn-orange {
    background-color: var(--template-classic);
    color: white;
    border-radius: 30px;
    border: none;
    width: 45%;
    font-size: 13px;
}

.btn-orange:hover,
.btn-orange:focus {
    background-color: var(--template-classic);
    color: white;
    border-radius: 30px;
    border: none;
}

.btn-light {
    background: #ffeee6;
    width: 45%;
    border-radius: 30px;
    border: none;
    font-size: 13px;
}

.btn-light:hover {
    background: #ffeee6;
    border-radius: 30px;
    border: none;
}

.details {
    margin: 20px;
    background: #f7f7f7;
    border-radius: 15px;
    padding: 1px 10px;
}

.about-content {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
}

.about-content P {
    font-size: 14px;
    margin-bottom: 0;
}

.about-info {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
}

.about-info .info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.about-info .info i {
    color: var(--template-classic);
    margin-right: 10px;
}

.about-info .info span {
    font-size: 14px;
}

.about-info .info a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.about-info .info a span {
    text-decoration: none !important;
    color: #212529;
}

.qr-code {
    width: 50px;
    height: 50px;
}

.social-icons {
    text-align: center;

    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
}

.social-icons h6 {
    margin-bottom: 20px;
}

.social-icons i {
    font-size: 20px;
    margin: 0 10px;
    color: var(--template-classic);
    cursor: pointer;
}


/* *************************

Business profile input page 

****************************/


.business-profile-edit {
    max-width: 450px;
    margin: auto;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100vh;
    /* Take full screen height */
}

.business-profile-edit .nav-area {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* .business-profile-edit .nav-area .logo img {
    width: 120px;
} */

.business-profile-edit .nav-area .menu ul {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

.business-profile-edit .nav-area .menu ul li a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 30px;
}

.business-profile-edit .nav-area .menu ul li a:hover {
    /* display: block; */
    background: #ffeee6;

}


.business-profile-edit .scroll-area {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 80px;
    /* To prevent content hiding behind the fixed footer */
}

.fixed-footer-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 450px;
    margin: auto;
    z-index: 1000;
}


.business-profile-edit .profile-photo {
    margin: 20px;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 15px;
}

.business-profile-edit form {
    margin: 20px;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 15px;

}

.business-profile-edit .form-control {
    border-radius: 8px;
    font-size: 14px;
}

.business-profile-edit .form-control:focus {
    box-shadow: none;
}

.business-profile-edit .btn-orange {
    background-color: var(--template-classic);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    padding: 10px 12px;
    font-weight: bold;
}

.business-profile-edit .btn-orange:hover {
    background-color: #e0441b;
}

.business-profile-edit .upload-box {
    border: 2px dashed var(--template-classic);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

.business-profile-edit .upload-box input {
    display: none;
}

.business-profile-edit .social-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.business-profile-edit .add-social {
    color: var(--template-classic);
    cursor: pointer;
    font-weight: bold;
}


.scroll-area::-webkit-scrollbar {
    width: 6px;
}

.scroll-area::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-area::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 10px;
}

.scroll-area {
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #ddd transparent;
}




.profile-photo {
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
}

.profile-photo h5 {
    font-weight: 600;
    color: #2d3748;
    /* margin-bottom: 1.5rem; */
    font-size: 1.1rem;
}

.profile-upload-container {}




.profile-image-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    margin: 0 auto;
    display: block;
}

.upload-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffeee8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px dashed #ff6b35;
    transition: all 0.3s ease;
}

.upload-placeholder i {
    font-size: 2rem;
    color: #ff6b35;
}

.upload-placeholder:hover {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f1 0%, #fef7f0 100%);
}

.upload-placeholder:hover i {
    color: #ff6b35;
}

.upload-btn {
    border: 2px dashed var(--template-classic);
    padding: 6px 10px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;

}


.upload-btn i {
    font-size: 1rem;
}

.upload-input {
    display: none;
}


/* Only Social Media Manager Section Styles - prefix: .smm-social-section */
input.form-control {
    min-width: 0;
}

.social-input {
    padding: 4px 10px;
}

.smm-social-section .smm-platform-card {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.smm-social-section .smm-platform-card:hover {
    border-color: #adb5bd;
}

.smm-social-section .smm-platform-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: white;
    font-size: 14px;
}

.smm-social-section .smm-platform-icon-small {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: white;
    font-size: 12px;
    margin-right: 8px;
}

.smm-social-section .smm-platform-icon.smm-facebook,
.smm-social-section .smm-platform-icon-small.smm-facebook {
    background-color: #1877f2;
}

.smm-social-section .smm-platform-icon.smm-twitter,
.smm-social-section .smm-platform-icon-small.smm-twitter {
    background-color: #1da1f2;
}

.smm-social-section .smm-platform-icon.smm-instagram,
.smm-social-section .smm-platform-icon-small.smm-instagram {
    background-color: #e4405f;
}

.smm-social-section .smm-platform-icon.smm-linkedin,
.smm-social-section .smm-platform-icon-small.smm-linkedin {
    background-color: #0077b5;
}

.smm-social-section .smm-platform-icon.smm-youtube,
.smm-social-section .smm-platform-icon-small.smm-youtube {
    background-color: #ff0000;
}

.smm-social-section .smm-platform-icon.smm-github,
.smm-social-section .smm-platform-icon-small.smm-github {
    background-color: #333;
}

.smm-social-section .smm-platform-icon.smm-website,
.smm-social-section .smm-platform-icon-small.smm-website {
    background-color: #28a745;
}

.smm-social-section .smm-platform-icon.smm-whatsapp,
.smm-social-section .smm-platform-icon-small.smm-whatsapp {
    background-color: #25d366;
}

.smm-social-section .smm-platform-icon.smm-pinterest,
.smm-social-section .smm-platform-icon-small.smm-pinterest {
    background-color: #bd081c;
}

.smm-social-section .smm-platform-icon.smm-snapchat,
.smm-social-section .smm-platform-icon-small.smm-snapchat {
    background-color: #fffc00;
    color: #000;
}

.smm-social-section .smm-platform-icon.smm-tiktok,
.smm-social-section .smm-platform-icon-small.smm-tiktok {
    background-color: #010101;
}

.smm-social-section .smm-platform-icon.smm-reddit,
.smm-social-section .smm-platform-icon-small.smm-reddit {
    background-color: #ff4500;
}

.smm-social-section .smm-platform-icon.smm-telegram,
.smm-social-section .smm-platform-icon-small.smm-telegram {
    background-color: #0088cc;
}

.smm-social-section .smm-platform-icon.smm-discord,
.smm-social-section .smm-platform-icon-small.smm-discord {
    background-color: #5865f2;
}

.smm-social-section .smm-platform-icon.smm-twitch,
.smm-social-section .smm-platform-icon-small.smm-twitch {
    background-color: #9146ff;
}

.smm-social-section .smm-platform-icon.smm-medium,
.smm-social-section .smm-platform-icon-small.smm-medium {
    background-color: #000000;
}


.smm-social-section .smm-social-link-item {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: white;
    transition: box-shadow 0.2s ease;
}

.smm-social-section .smm-social-link-item:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.smm-social-section .smm-drag-handle {
    cursor: grab;
    color: #6c757d;
}

.smm-social-section .smm-drag-handle:active {
    cursor: grabbing;
}

.smm-social-section .smm-sort-buttons {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.smm-social-section .smm-sort-btn {
    width: 20px;
    height: 20px;
    padding: 0;
    font-size: 10px;
    line-height: 1;
}

.smm-social-section .smm-action-btn {
    width: 25px;
    height: 25px;
    font-size: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smm-social-section .smm-url-display {
    font-size: 14px;
    color: #6c757d;
    word-break: break-all;
}

.smm-social-section .smm-platform-badge {
    font-size: 11px;
    padding: 2px 6px;
}

.smm-social-section .smm-hidden-badge {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.smm-social-section .smm-dropdown-toggle-platform {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.smm-social-section .smm-dropdown-toggle-platform::after {
    margin-left: auto;
}

.smm-social-section .smm-dropdown-item-platform {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

.smm-social-section .smm-dropdown-item-platform:hover {
    background-color: #e9ecef;
}

.smm-social-section .smm-selected-platform-content {
    display: flex;
    align-items: center;
    color: #6c757d;
}

.smm-social-section .smm-selected-platform-content.smm-has-selection {
    color: #212529;
}

.smm-social-section .smm-input-group-custom {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.smm-social-section .smm-input-group-custom.smm-show {
    opacity: 1;
    transform: translateY(0);
}

.smm-social-section .smm-add-btn-container {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.smm-social-section .smm-add-btn-container.smm-show {
    opacity: 1;
    transform: translateX(0);
}

.smm-add-btn-container .btn {
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smm-social-section .dropdown-menu {
    min-width: 100%;
}

.smm-social-section .dropdown-toggle:focus {
    box-shadow: none;
}

.smm-social-section .dropdown-item:hover,
.smm-social-section .dropdown-item:focus {
    background-color: #e9ecef;
}

.smm-social-section .dropdown-item.active {
    background-color: #0d6efd;
    color: #fff;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    max-width: 220px;
}

/* Responsive adjustments for Social Media section only */
@media (max-width: 768px) {
    .smm-social-section .smm-platform-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .smm-social-section .smm-platform-icon-small {
        width: 20px;
        height: 20px;
        font-size: 10px;
        margin-right: 6px;
    }

    .smm-social-section .smm-action-btn {
        width: 28px;
        height: 28px;
    }

    .smm-social-section .smm-sort-btn {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
}


.custom-login {

    margin: 0;
    padding: 0;
    /* min-height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-login .auth-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

.custom-login .auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.custom-login .auth-logo i {
    font-size: 48px;
    color: var(--template-classic);
    margin-bottom: 10px;
}

.custom-login .auth-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.custom-login .auth-subtitle {
    font-size: 14px;
    color: #777;
}

.custom-login .form-group {
    position: relative;
    margin-bottom: 20px;
}

.custom-login .form-control {
    width: 100%;
    padding: 8px 40px 8px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}


.custom-login .form-control:focus {
    outline: none;
    border-color: var(--template-classic);
}

.custom-login .input-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #aaa;
    cursor: pointer;
}

.custom-login .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.custom-login .form-check-input {
    margin-right: 10px;
    accent-color: var(--template-classic);
}

.custom-login .btn {
    width: 100%;
    padding: 7px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.custom-login .theme-btn.btn-one {
    background-color: var(--template-classic);
    color: white;
    transition: background-color 0.3s;
}

.custom-login .theme-btn.btn-one:hover {
    background-color: #1a5edb;
}

.custom-login .forgot-password {
    text-align: center;
    margin-top: 20px;
}

.custom-login .forgot-password a {
    font-size: 14px;
    color: var(--template-classic);
    text-decoration: none;
}

.custom-login .forgot-password a:hover {
    text-decoration: underline;
}










/*--------------------------------------------------------------
# Template Modern style start
--------------------------------------------------------------*/



.template-modern .nav-area {

    background: #0b252a;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.template-modern .nav-area .burger-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

.template-modern .nav-area .menu ul {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

.template-modern .nav-area .menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 30px;
}

.template-modern {
    background-color: var(--bg-modern);
    color: #fff;
}

.template-modern .header {
    display: inherit;
    text-align: center;
    color: white;
    margin: 20px;
    background: none;
    overflow: hidden;
}

.template-modern .profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid var(--template-modern);
    margin-bottom: 10px;
}

.template-modern .header .header-info h4 {
    font-size: 24px;
    color: var(--template-modern);
    font-weight: 700;
}

.template-modern .details {
    margin: 20px 5px;
    background: none;
    /* background: #0a2a30; */
    border-radius: 15px;
    padding: 0;
}

.template-modern .btn-light {
    background: #fff;
    width: 45%;
    border-radius: 30px;
    border: none;
    font-size: 13px;
}

.template-modern h6 {
    color: var(--template-modern);
    font-size: 18px;
    margin-bottom: 15px;
}

.template-modern .about-content {
    background: none;
    /* background: #224754; */
    margin-bottom: 0;
}

.template-modern .about-info {
    /* background: #224754; */
    background: none;
    margin-bottom: 0;
}

.template-modern .about-info .info a span {
    text-decoration: none !important;
    color: #fff;
}

.template-modern .about-info .info i {
    color: var(--template-modern);
    margin-right: 10px;
    background: #224754;
    padding: 6px;
    border-radius: 50%;
}

.template-modern .social-icons {
    text-align: left;
    background: none;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 0;
}

.template-modern .social-icons a {
    text-decoration: none;
    background: #224754;
    height: 35px;
    width: 35px;
    display: inline-block;
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    margin-bottom: 3px;
}

.template-modern .social-icons a i {
    font-size: 20px;
    margin: auto;
    color: #fff;
    cursor: pointer;
}

.template-modern .about-info .info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* justify-content: space-between; */
}

.template-modern .about-info .info a {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.template-modern .services {
    padding: 10px;
}

.template-modern .services .card-custom {
    background-color: #1d3a42;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    text-align: center;
}

.template-modern .services .card-custom .icon i {
    color: var(--template-modern);
    font-size: 20px;
    margin-bottom: 10px;
}

.template-modern .services .card-custom span {
    font-size: 15px;
}

.template-modern .services .card-custom p {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 5px;
}


.section {
    padding: 1rem 10px;
    border-bottom: 1px solid #1f444e;
    border-radius: 0;
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
    padding: 10px;
}

.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.3s;
}

.gallery .gallery-links {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    line-height: 1.2;
    margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
    color: #ffffff;
}

.gallery .gallery-links .details-link {
    font-size: 30px;
    line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
    opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
    margin-top: 0;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.glightbox-clean .gslide-description {
    background: #272727;
}

.glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}







/*--------------------------------------------------------------
# Template Creative style start
--------------------------------------------------------------*/



.template-creative .nav-area {

    background: var(--bg-creative);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.template-creative .nav-area .burger-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

.template-creative .nav-area .menu ul {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

.template-creative .nav-area .menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 30px;
}

.template-creative {
    background-color: var(--bg-creative);
    color: #fff;
}

.template-creative .header {
    display: inherit;
    text-align: center;
    color: white;
    margin: 20px;
    background: none;
    overflow: hidden;
}

.template-creative .profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid var(--template-creative);
    margin-bottom: 10px;
}

.template-creative .header .header-info h4 {
    font-size: 24px;
    color: var(--template-creative);
    font-weight: 700;
}

.template-creative .details {
    margin: 20px 5px;
    background: none;
    /* background: #0a2a30; */
    border-radius: 15px;
    padding: 0;
}

.template-creative .btn-light {
    background: #fff;
    width: 45%;
    border-radius: 30px;
    border: none;
    font-size: 13px;
}

.template-creative h6 {
    color: var(--template-creative);
    font-size: 18px;
    margin-bottom: 15px;
}

.template-creative .about-content {
    background: none;
    /* background: #224754; */
    margin-bottom: 0;
}

.template-creative .about-info {
    /* background: #224754; */
    background: none;
    margin-bottom: 0;
}

.template-creative .about-info .info a span {
    text-decoration: none !important;
    color: #fff;
}

.template-creative .about-info .info i {
    color: var(--template-creative);
    margin-right: 10px;
    background: #14244a;
    padding: 6px;
    border-radius: 50%;
}

.template-creative .social-icons {
    text-align: center;
    background: none;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 0;
}

.template-creative .social-icons a {
    text-decoration: none;
    background: #14244a;
    height: 35px;
    width: 35px;
    display: inline-block;
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    margin-bottom: 3px;
}

.template-creative .social-icons a i {
    font-size: 20px;
    margin: auto;
    color: #fff;
    cursor: pointer;
}

.template-creative .about-info .info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* justify-content: space-between; */
}

.template-creative .about-info .info a {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.template-creative .services {
    padding: 10px;
}

.template-creative .services .card-custom {
    background-color: #14244a;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    text-align: center;
}

.template-creative .services .card-custom .icon i {
    color: var(--template-creative);
    font-size: 20px;
    margin-bottom: 10px;
}

.template-creative .services .card-custom span {
    font-size: 15px;
}

.template-creative .services .card-custom p {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 5px;
}



.template-creative .banner-img-container {
    width: 100%;
    height: 100px;
    background-color: #14244a;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.template-creative .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.template-creative .banner-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.template-creative .banner-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD200;
    margin-bottom: 10px;
}

.template-creative .banner-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.template-creative .profile-content {
    margin: 0 5px;
    padding: 0 10px;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.template-creative .profile-img-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.template-creative .profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.template-creative .profile-info {
    margin-top: 10px;
    flex-grow: 1;
}

.template-creative .profile-info h4 {
    font-size: 24px;
    color: var(--template-creative);
    font-weight: 700;
}

.template-creative .profile-info p {
    font-size: 14px;
    margin-bottom: 3px;
}


.qr-code-section {
    padding: 10px;
    text-align: center;
}

.qr-code-section img {
    width: 120px;
    height: 120px;
    border: 1px solid #eee;
    border-radius: 4px;
    display: block;
    margin: 0 auto 10px auto;
}




/*--------------------------------------------------------------
# Services page style start
--------------------------------------------------------------*/

.services-header {
    padding: 2rem 1.5rem;
    background: var(--template-classic);
    color: white;
    border-radius: 16px;
}

.services-header h1 {
    font-weight: 700;
    font-size: 24px;
}

.service-card {
    background-color: #fff;
    border: none;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}



.service-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    position: relative;
}

.service-card-title {
    font-weight: 600;
    color: #343a40;
    margin-right: 30px;
    /* Space for the remove button */
}

.service-card-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.service-card .btn-edit {
    position: absolute;
    top: 1rem;
    right: 3rem;
    color: #adb5bd;
    background: transparent;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background-color 0.2s;
}

.service-card .btn-edit:hover {
    color: #dc3545;
    background-color: #f8d7da;
}

.service-card .btn-remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #adb5bd;
    background: transparent;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background-color 0.2s;
}

.service-card .btn-remove:hover {
    color: #dc3545;
    background-color: #f8d7da;
}


/* Main container for mobile */
.container-mobile-optimised {
    padding-left: 1rem;
    padding-right: 1rem;
}

#addServiceForm {
    margin: 0;
}



/*--------------------------------------------------------------
# Gallery page style start
--------------------------------------------------------------*/

.gallery-header {
    padding: 2rem 1.5rem;
    background: var(--template-classic);
    border-radius: 16px;
}

.gallery-header h1 {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover .caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item .btn-remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    z-index: 2;
}

.gallery-item .btn-remove-image:hover {
    background-color: #dc3545;
}

#uploadForm {
    margin: 0;
}

/* Lightbox Modal */
#lightboxModal .modal-content {
    background-color: transparent;
    border: none;
}

#lightboxModal .modal-body {
    padding: 0;
}

#lightboxImage {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

#lightboxCaption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

#lightboxModal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    filter: invert(1) grayscale(100%) brightness(200%);
}


/*--------------------------------------------------------------
# Themes page style start
--------------------------------------------------------------*/

.themes-header {
    padding: 2rem 1.5rem;
    background: var(--template-classic);
    color: white;
    border-radius: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.themes-header h1 {
    font-weight: 700;
    font-size: 24px;
}



.theme-card {
    position: relative;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.theme-card {
    box-shadow: 0 3px 6px #00000029;
    background-repeat: no-repeat;
    background: #ffffff;
    height: 250px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-size: 100% 100%;
    padding: 10px;
}

/* --- Style for the ACTIVE theme --- */
.theme-card.active {
    border-color: #ff4b2b;
    box-shadow: 0 0 0 3px rgb(255 75 43 / 66%), 0 4px 6px -1px rgb(255 75 43 / 51%), 0 2px 4px -2px rgb(255 75 43 / 62%);
}

#themes-grid p {
    margin-top: 10px;
}

#demo-grid p {
    padding-top: 15px !important;

}

.theme-preview {
    width: 100%;
    height: 230px;
    margin: 0 auto;
    overflow: hidden;
}

.theme-preview-image {
    width: 100%;
}



/*--------------------------------------------------------------
# Upload style start
--------------------------------------------------------------*/


.upload-container {
    position: relative;

}

.upload-container .cover-photo-area {
    position: relative;
    height: 150px;
    background-color: #e9ecef;
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#cover-photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-container .upload-button {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.upload-container .upload-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

#cover-upload-label {
    top: 20px;
    right: 20px;
}

.upload-container .profile-photo-area {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: -75px;
    /* Negative margin to pull profile pic up */
}

.upload-container .profile-pic-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background-color: #ced4da;
    overflow: hidden;
}

#profile-photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#profile-upload-label {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
}

.upload-container .action-buttons {
    text-align: center;
    margin-top: 2rem;
}


/* Hide the default file input */
.upload-container input[type="file"] {
    display: none;
}






/* Design 9: Creative Overlay */

.template-elegant {
    background: #fff;
}

.template-elegant .nav-area {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* .template-elegant .nav-area .logo img {
    width: 120px;
} */

.template-elegant .nav-area .menu ul {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

.template-elegant .nav-area .menu ul li a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 30px;
}

.template-elegant .nav-area .menu ul li a:hover {
    /* display: block; */
    background: #ffeee6;

}

.template-elegant .profile-container {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.template-elegant .profile-container::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.template-elegant .profile-header {
    background: linear-gradient(45deg, #0088cc, var(--template-elegant));
    height: 150px;
    position: relative;
}

.template-elegant .profile-pic-wrapper {
    margin-top: -75px;
    position: relative;
    z-index: 10;
}

.template-elegant .profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.template-elegant .profile-info {
    padding: 1rem;
}

.template-elegant .profile-info h2 {
    /* font-family: 'Montserrat', sans-serif; */
    font-weight: 700;
    color: var(--text-color);
}

.template-elegant .profile-info p {
    font-weight: 500;
    color: var(--template-elegant);
    margin-bottom: 5px;
}

.template-elegant .social-icons {
    margin-bottom: 0;
}

.template-elegant .social-icons a {
    font-size: 1.2rem;
    margin: 0 12px;
    color: var(--text-muted-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.template-elegant .social-icons a:hover {
    color: var(--template-elegant);
    transform: translateY(-3px);
}

.template-elegant .social-icons a i{
    color: inherit;
}

.template-elegant .content-wrapper {
    padding: 0 .5rem 60px;
}

.template-elegant .content-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.template-elegant .section-title {
    font-weight: 600;
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 15px;
}



.template-elegant .about-info {
    /* background: #224754; */
    background: none;
    margin-bottom: 0;
    padding: 0;
}

.template-elegant .about-info .info a span {
    text-decoration: none !important;
    /* color: #fff; */
}

.template-elegant .about-info .info i {
    color: var(--template-elegant);
    margin-right: 10px;
    background: #dffff4;
    padding: 6px;
    border-radius: 50%;
}
.about-info .info a {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.template-elegant .services .card-custom {
    background-color: var(--template-elegant);
    border: none;
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    text-align: center;
}

.template-elegant .services .card-custom .icon i {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.template-elegant .services .card-custom span {
    font-size: 15px;
}

.template-elegant .services .card-custom p {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 5px;
}

.template-elegant .gallery-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.template-elegant .contact-list .list-group-item {
    border: none;
    padding: 0.75rem 0;
    background: transparent;
    font-weight: 500;
    color: var(--text-color);
}

.template-elegant .contact-list .list-group-item i.fa-fw {
    width: 30px;
    text-align: center;
    margin-right: 15px;
    color: var(--template-elegant);
}


/* Footer Nav */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    width: 450px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    padding: 0.4rem 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #eee;
}

.bottom-nav .nav-item-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-muted-color);
    transition: color 0.3s ease;
}

.bottom-nav .nav-item-bottom i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.bottom-nav .nav-item-bottom.active,
.bottom-nav .nav-item-bottom:hover {
    color: var(--template-elegant);
}

@media (max-width: 576px){
    .bottom-nav{
        width: 100%;
    }
}



@media (max-width: 576px) {
    .bottom-nav {
        width: 100%;
        left:0;
    }
}