/* CSS Custom Properties for Dynamic vCard Colors */
.template1 .main-section{
    /* Main Background */
    background: var(--background-color, #ffffff);
}

.template1 .top-section {
    background-color: var(--second-background-color, #f8f9fa);
    position: relative;
}

.template1 .banner-image {
    width: 100%;
    height: 300px;
}

@media screen and (max-width: 768px) {
    .template1 .banner-image {
        height: 200px;
    }
}

.template1 .profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid var(--image-border-color, white);
    margin-top: -80px;
    margin-left: 15px;
    object-fit: cover;
    background: var(--card-color, #fff);
}

.template1 .share-icons {
    position: relative;
}

.template1 .share-icons a {
    margin: 0 5px;
    color: var(--description-color, #6c757d);
    font-size: 1.5rem;
    text-decoration: none;
}

.template1 .middle-section {
    background-color: var(--background-color, #ffffff);
    overflow-y: auto;
}

.template1 .bottom-section {
    background-color: var(--second-background-color, #343a40);
    color: var(--button-text-color, white);
    text-align: center;
    padding: 20px;
}

.template1 .name-designation h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--label-color, #333333);
}

.template1 .name-designation p {
    margin: 0;
    color: var(--description-color, #6c757d);
}

.template1 .name-designation h5 {
    color: var(--label-color, #333333);
}

.template1 .share-image {
    width: 75px;
}

.template1 .share-imageW {
    width: 76px;
}

.template1 .social-image {
    width: 75px;
}
.template1 .custom-social-icon {
    width: 75px; 
    border-radius: 20px;
}

@media (max-width: 991px) {
    .template1 .share-image {
        width: 55px;
    }
    .template1 .share-imageW {
        width: 56px;
    }
    .template1 .social-image {
        width: 55px;
    }
    .template1 .custom-social-icon {
        width: 55px;
    }
}

@media (max-width: 768px) {
    .template1 .share-image {
        width: 65px;
    }
    .template1 .share-imageW {
        width: 66px;
    }
    .template1 .social-image {
        width: 65px;
    }
    .template1 .custom-social-icon {
        width: 65px;
    }
}

@media (max-width: 400px) {
    .template1 .share-image {
        width: 55px;
    }
    .template1 .share-imageW {
        width: 56px;
    }
    .template1 .social-image {
        width: 55px; 
    }
    .template1 .custom-social-icon {
        width: 55px;
    }
}

.template1 .qr-image {
    width: 50px;
    height: 50px;
}

.template1 .qr1-image {
    width: 45px;
    height: 50px;
}

/* btn-blue changed to use button-color */
.template1 .btn-blue {
    background: var(--button-color, #253750);
    color: var(--button-text-color, #fff);
}
/* btn-blue changed to use button-color */
.template1 .text-blue {
    color: var(--button-color, #253750);
    font-size: 50px;
}

.template1 .icon-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(to bottom, var(--button-lighter-color, #7193b9), var(--button-color, #1c3856));
    color: var(--button-text-color, white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 40px;
}

.template1 .icon-label {
    font-size: 14px;
    margin-top: 5px;
    color: var(--label-color, #1C1C1C);
    font-weight: 500;
}

.template1 .social-section {
    background-color: var(--second-background-color, #f8f9fa);
}

.template1 .social-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.template1 .social-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
    font-weight: bold;
}

.template1 .telegram {
    background: #24A1DE;
}

.template1 .linkedin {
    background: #0A66C2;
}

.template1 .instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.template1 .tiktok {
    background: black;
    position: relative;
    border-radius: 15px;
}

.template1 .tiktok-icon {
    position: relative;
    display: inline-block;
    font-size: 32px;
    padding: 10px;
    border-radius: 50%;
}

.template1 .tiktok-icon::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    z-index: -1;
}

.template1 .social-label {
    text-align: center;
    margin-top: 5px;
    font-weight: 500;
    color: var(--label-color, #1C1C1C);
}

.template1 .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

@media screen and (max-width: 400px) {
    .template1 .product-grid {
        grid-template-columns: repeat(2, minmax(175px, 1fr));
    }
}

.template1 .product-img {
    background: var(--card-color, #f8f9fa);
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out;
    height: 250px;
    width: 250px;
    object-fit: contain;
    border: 1px solid var(--image-border-color, transparent);
}

.template1 .product-img img {
    height: 225px;
    width: inherit;
    padding-right: 20px;
    object-fit: contain;
}

@media (max-width:1200px) {
    .template1 .product-img {
        height: 200px;
        width: 200px;
    }
    .template1 .product-img img {
        height: 180px;
        width: inherit;
        padding-right: 20px;
        object-fit: contain;
    }
}

@media (max-width:1000px) {
    .template1 .product-img {
        height: 150px;
        width: 150px;
    }
    .template1 .product-img img {
        height: 135px;
        width: inherit;
        padding-right: 20px;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .template1 .product-img {
        height: 235px;
        width: 235px;
    }
    .template1 .product-img img {
        height: 220px;
        width: inherit;
        padding-right: 20px;
        object-fit: contain;
    }
}

@media (max-width: 540px) {
    .template1 .product-img {
        height: 180px;
        width: 180px;
    }
    .template1 .product-img img {
        height: 160px;
        width: inherit;
        padding-right: 20px;
        object-fit: contain;
    }
}

@media screen and (max-width: 400px) {
    .template1 .product-img {
        height: 150px;
        width: 150px;
    }
    .template1 .product-img img {
        height: 140px;
        width: inherit;
        padding-right: 20px;
        object-fit: contain;
    }
    .template1 .product-card {
        max-width: 185px;
    }
}

.template1 .product-card {
    padding: 10px;
    text-align: left;
}

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

.template1 .product-card img {
    border-radius: 10px;
}

.template1 .product-title {
    font-weight: 400;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 0px;
    height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--label-color, #333333);
}

.template1 .product-tag {
    font-size: 12px;
    color: var(--description-color, #555);
    font-weight: 500;
    background: var(--card-color, #f8f9fa);
}

.template1 .product-rating {
    font-size: 12px;
    color: #FFD700;
}

.template1 .product-price {
    font-weight: 700;
    font-size: 20px;
    color: var(--label-color, #000);
    margin-top: 0px;
}

@media (min-width: 768px) {
    .template1 .px-md-10 {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }
}

.template1 .social-container {
    display: flex;
    flex-wrap: wrap;
}

.template1 .social-container > div {
    flex: 1 1 calc(25% - 10px);
    max-width: calc(25% - 10px);
    text-align: center;
    margin-bottom: 20px;
}

.template1 .services-section {
    padding: 30px 20px;
    background-color: var(--second-background-color, #f8f9fa);
}

.template1 .service-card {
    background: var(--card-color, #fff);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border: 1px solid var(--image-border-color, transparent);
}

.template1 .service-card img {
    width: 140px;
    height: 140px;
    border-radius: 15px;
    object-fit: contain;
    background: var(--card-color, #f8f9fa);
    border: 1px solid var(--image-border-color, transparent);
}

.template1 .service-info {
    flex: 1;
}

.template1 .service-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--label-color, #333333);
}

.template1 .service-description {
    font-size: 13px;
    color: var(--description-color, #555);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.template1 .service-description.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.template1 .service-price {
    color: var(--label-color, #000);
    font-size: 14px;
    margin-top: 5px;
    text-align: right;
    margin-bottom: 0;
}

.template1 .service-price span {
    font-weight: 700;
    font-size: 18px;
}

.template1 .service-icon {
    font-size: 18px;
    color: var(--label-color, #000);
    cursor: pointer;
}

.template1 .plus-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--label-color, black);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    cursor: pointer;
    margin-left: 20px;
    color: var(--label-color, #000000);
    font-weight: 900;
}

.template1 .hidden {
    display: none;
}

.template1 .service-expand {
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    left: 48%;
    position: relative;
    background: var(--card-color, #fff);
    padding: 5px;
    width: 30px;
    border-radius: 50%;
}

.template1 .product-expand {
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    left: 48%;
    position: relative;
    background: var(--card-color, #fff);
    padding: 5px;
    width: 30px;
    border-radius: 50%;
}

.template1 .gallery-expand {
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    left: 48%;
    position: relative;
    background: var(--card-color, #fff);
    padding: 5px;
    width: 30px;
    border-radius: 50%;
}

.template1 .gallery-section {
    text-align: left;
    padding: 20px;
}

.template1 .gallery-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--label-color, #333333);
}

.template1 .gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.template1 .gallery-item {
    overflow: hidden;
    border-radius: 30px;
    /* border: 1px solid var(--image-border-color, #ccc); */
}

.template1 .gallery-item img {
    border-radius: 30px;
    transition: transform 0.3s ease-in-out;
    height: 285px;
    width: 285px;
    object-fit: contain;
    /* border: 1px solid var(--image-border-color, transparent); */
}

.template1 .gallery-item video {
    border-radius: 30px;
    transition: transform 0.3s ease-in-out;
    height: 285px;
    width: 285px;
    object-fit: contain;
    /* border: 1px solid var(--image-border-color, transparent); */
}

.template1 .gallery-item iframe {
    border-radius: 15px;
    height: 285px;
    width: 285px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .template1 .gallery-item img {
        height: 210px;
        width: 210px;
    }

    .template1 .gallery-item video {
        height: 210px;
        width: 210px;
    }
    
    .template1 .gallery-item iframe {
        height: 210px;
        width: 210px;
    }
}

@media (max-width: 550px) {
    .template1 .gallery-item img {
        height: 190px;
        width: 190px
    }
    .template1 .gallery-item video {
        height: 190px;
        width: 190px
    }
    
    .template1 .gallery-item iframe {
        height: 190px;
        width: 190px
    }
}

@media (max-width: 400px) {
    .template1 .gallery-item img {
        height: 165px !important;
        width: 165px !important;
    }

    .template1 .gallery-item video {
        height: 165px !important;
        width: 165px !important;
    }
    
    .template1 .gallery-item iframe {
        height: 165px !important;
        width: 165px !important;
    }
}

.template1 .gallery-item img:hover {
    transform: scale(1.05);
}

.template1 .save-tab {
    display: flex;
    width: 100%;
}

.template1 .save-tab .btn {
    flex: 1;
    font-size: 24px;
    border-radius: 15px;
    padding: 5px !important;
    text-align: center;
}

.template1 .testimonials-section {
    max-width: 800px;
    margin: auto;
    padding: 50px 20px;
    background-color: var(--second-background-color, #f8f9fa);
}

.template1 .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--label-color, #333333);
}

.template1 .testimonials-slider {
    position: relative;
    padding-bottom: 40px;
    height: 460px;
}

.template1 .testimonial-card {
    background: var(--card-color, #fff);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    margin: auto;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    position: relative;
    border: 1px solid var(--image-border-color, transparent);
}

.template1 .profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--image-border-color, white);
    margin-top: -40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.template1 .testimonial-card h3 {
    margin-top: 40px;
    font-size: 22px;
    color: var(--label-color, #333333);
}

.template1 .testimonial-card p {
    font-size: 16px;
    color: var(--description-color, #555);
    margin: 10px 0;
    height: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.template1 .stars {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 5px;
}

.template1 .location {
    font-size: 0.9rem;
    color: var(--description-color, gray);
}

.template1 .testimonials-section .swiper-wrapper {
    margin-top: 70px;
}

.template1 .testimonials-section .swiper-slide-active {
    transform: scale(1.2) !important;
    z-index: 3 !important;
}

.template1 .testimonials-section .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.9);
    z-index: 1;
}

.template1 .testimonials-section .swiper-button-next,
.template1 .testimonials-section .swiper-button-prev {
    color: var(--label-color, black) !important;
}

.template1 .testimonials-section .swiper-pagination-bullet-active {
    background: var(--label-color, black) !important;
}

.template1 .testimonials-section .swiper-button-next,
.template1 .testimonials-section .swiper-button-prev {
    color: var(--label-color, black) !important;
    background: var(--second-background-color, #ccc) !important;
    padding: 10px;
    border-radius: 50%;
    width: 25px !important;
    height: 25px !important;
}

.template1 .testimonials-section .swiper-button-next:after,
.template1 .testimonials-section .swiper-button-prev:after {
    font-size: 15px !important;
}

.template1 .testimonials-section .star-rating {
    font-size: 20px;
    color: #EDA804;
}

.template1 .testimonials-section .star-rating .fa-star {
    color: #EDA804;
}

.template1 .testimonials-section .star-rating .empty {
    color: transparent !important;
}

.template1 .blog-slider {
    padding: 50px 0;
    height: 400px;
    min-height: 400px;
    transition: all 0.3s ease-in-out;
}

.template1 .blog-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    margin-top: 15px;
}

.template1 .blog-card {
    background: var(--card-color, #f8f9fa);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
    border: 1px solid var(--image-border-color, transparent);
    transition: all 0.3s ease-in-out;
}

.template1 .blog-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
    margin-right: 0;
    padding: 0;
    border: 1px solid var(--image-border-color, transparent);
}

.template1 .blog-content {
    flex: 1;
    text-align: left;
}

.template1 .expanded-card {
    height: auto !important;
}

.template1 .plus-icon-blog {
    cursor: pointer;
    font-size: 1.2em;
    transition: 0.3s;
    color: var(--label-color, #333333);
}

.template1 .blog-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--label-color, #333333);
}

.template1 .blog-icon {
    font-size: 20px;
    cursor: pointer;
    color: var(--label-color, #333);
}

.template1 .blog-slider .swiper-button-next,
.template1 .blog-slider .swiper-button-prev {
    color: var(--label-color, black) !important;
}

.template1 .blog-slider .swiper-pagination-bullet-active {
    background: var(--label-color, black) !important;
}

.template1 .blog-slider .swiper-button-next,
.template1 .blog-slider .swiper-button-prev {
    color: var(--label-color, black) !important;
    background: var(--card-color, #fff) !important;
    padding: 10px;
    border-radius: 50%;
    width: 25px !important;
    height: 25px !important;
}

.template1 .blog-slider .swiper-button-next:after,
.template1 .blog-slider .swiper-button-prev:after {
    font-size: 15px !important;
}

.template1 .legal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.template1 .legal-section {
    background: var(--second-background-color, #f8f9fa);
    width: 100%;
    margin: auto;
    padding: 20px;
}

.template1 .legal-content {
    font-size: 14px;
    color: var(--description-color, #444);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding: 0;
    margin: 0;
}

.template1 .instagram-feed .toggle-btn {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    width: 47%;
    background-color: var(--button-color, #007bff);
    color: var(--button-text-color, #fff);
}

.template1 .instagram-feed .toggle-btn.active {
    background-color: var(--second-button-color, #ff4d4d);
    color: var(--second-button-text-color, #fff);
}

.template1 .feed-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.template1 .feed-content {
    display: none;
    width: 100%;
}

.template1 .feed-content img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--image-border-color, transparent);
}

.template1 .feed-content.active {
    display: block;
}

.template1 .horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
}

.template1 .scroll-item {
    flex: 0 0 auto;
    width: 300px; /* Adjust as needed */
}
.template1 .business-hours {
    text-align: left;
    margin: auto;
    padding: 20px;
}

.template1 .hours-list {
    list-style: none;
    max-width: 450px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .template1 .hours-list {
        width: 400px;
    }
}

@media (max-width: 400px) {
    .template1 .hours-list {
        width: 340px;
    }
}

.template1 .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--label-color, #333333);
}

.template1 .hours-list .day {
    font-weight: bold;
    color: var(--label-color, #333333);
}

.template1 .hours-list li:nth-child(odd) {
    background-color: var(--second-background-color, #f8f9fa);
}

.template1 .hours-list li:nth-child(even) {
    background-color: var(--card-color, #fff);
}

.template1 .inquiry-form {
    margin: auto;
    padding: 20px;
    background-color: var(--second-background-color, #f8f9fa);
}

.template1 .form-group {
    margin-bottom: 15px;
}

.template1 label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--label-color, #333333);
}

.template1 .required {
    color: red;
}

.template1 input,
.template1 textarea {
    /* width: 100%; */
    padding: 10px;
    border: 1px solid var(--image-border-color, #ccc);
    border-radius: 5px;
    font-size: 14px;
    background-color: var(--card-color, #fff);
    color: var(--label-color, #333333);
}

.template1 textarea {
    min-height: 100px;
    width: 100%;
    resize: none;
}

/* submit-btn changed to use second-button-color */
.template1 .submit-btn {
    width: auto;
    padding: 10px 50px;
    background-color: var(--second-button-color, #ff6b6b);
    color: var(--second-button-text-color, white);
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    margin-left: auto;
    margin-right: auto;
}

.template1 .connect-save-btn:hover,
.template1 .submit-btn:hover {
    background-color: var(--second-button-darker-color, #ff4d4d) !important;
}

.template1 .map-section {
    background-color: var(--second-background-color, #f8f9fa);
    padding-top: 20px;
    padding-bottom: 50px;
    overflow: hidden;
}

.template1 .appointment-section {
    background-color: var(--card-color, #fff);
    padding-bottom: 20px;
    border-radius: 15px;
}

.template1 .appointment-header {
    background-color: var(--button-color, #ff4d4d);
    border-radius: 15px;
}

.template1 .appointment-header i {
    font-size: 20px;
    padding: 0;
    margin: 0;
    color: var(--button-text-color, #fff);
}

.template1 .appointment-header h5 {
    color: var(--button-text-color, #fff);
}

/* btn-danger changed to use second-button-color */
.template1 .btn-danger {
    color: var(--second-button-text-color, #fff);
    background-color: var(--second-button-color, #ff4d4d) !important;
    border-color: var(--second-button-color, #ff4d4d) !important;
    border-radius: 15px;
}

.template1 .btn-danger:disabled {
    color: #fff !important;
    background-color: #c6c6c6 !important;
    border-color: #c6c6c6 !important;
}

.template1 .btn-cancel {
    background-color: var(--button-color, #7A92AC);
    color: var(--button-text-color, #ffffff);
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.template1 .btn-cancel:hover {
    background-color: var(--button-darker-color, #68819A);
    color: var(--button-text-color, #ffffff);
}

.template1 .btn-cancel:active {
    background-color: var(--button-darker-color, #5A738A);
    color: var(--button-text-color, #ffffff);
}

.template1 .blog-description-little {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 1000px;
    font-size: 18px;
    color: var(--description-color, #555);
}

.template1 .full-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    margin-top: 15px;
    font-size: 18px;
    color: var(--description-color, #555);
}

.template1 .full-description.show {
    max-height: 4000px;
}

.template1 .plus-icon {
    cursor: pointer;
}

@media (max-width: 768px) {
    .template1 .save-tab .btn {
        font-size: 20px;
    }
}
@media (max-width: 400) {
    .template1 .save-tab .btn {
        font-size: 18px;
    }
}

@media (min-width: 1400px) {
    .template1 .share-image {
        width: 100px;
    }
    .template1 .share-imageW {
        width: 102px;
    }
    .template1 .social-image {
        width: 100px;
    }
    .template1 .custom-social-icon {
        width: 100px;
    }
    .template1 .save-tab .btn {
        font-size: 26px;
    }
    .template1 .appointment-header h5 {
        font-size: 26px;
    }
    .template1 .appointment-header i {
        font-size: 26px;
    }
}

/* Additional Custom Properties for Section Headings */
.template1 h1,
.template1 h2,
.template1 h3,
.template1 h4,
.template1 h5,
.template1 h6 {
    color: var(--label-color, #333333);
}

/* QR Section Styling */
.template1 .qr-section {
    background-color: var(--card-color, #fff);
}

.template1 .qr-section h4 {
    color: var(--label-color, #333333);
}

.template1 .qr-code {
    background-color: var(--card-color, #fff);
    border: 1px solid var(--image-border-color, transparent);
}

/* Connect Form Styling */
.template1 .connect-form {
    background: var(--card-color, #f8f9fa);
    border: 1px solid var(--image-border-color, transparent);
}

.template1 .connect-form input,
.template1 .connect-form textarea {
    background-color: var(--background-color, #fff);
    border: 1px solid var(--image-border-color, #ddd);
    color: var(--label-color, #333333);
}

.template1 .connect-save-btn {
    background: var(--second-button-color, #ff6250);
    color: var(--second-button-text-color, white);
}

.template1 .connect-body h4 {
    color: var(--label-color, #333333);
}

/* Additional elements */
.template1 .close-btn {
    color: var(--description-color, #888);
    border: 1px solid var(--description-color, #888);
}

.template1 .close-btn:hover {
    color: var(--label-color, #000);
}

/* Modal styling */
.template1 .modal-content {
    background-color: var(--card-color, #fff);
}

.template1 .modal-title {
    color: var(--label-color, #333333);
}

.template1 .platform-name {
    color: var(--label-color, #333);
}

