<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --theme-color: #231F21;
    --theme-bg-color: #fbfbfb;
    --theme-bg-white: #ffffff;
    --theme-bg-color2: #f4f4f4;
    --primary-font-color: #000000;
    --secondary-font-color: #ffffff;
    --font-size: 16px;
    --footer-text: #999999;
}

.roboto-font {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.text-primary {
    color: #f00 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.ibm-plex-mono-thin {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: normal;
}

.ibm-plex-mono-extralight {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: normal;
}

.ibm-plex-mono-light {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: normal;
}

.ibm-plex-mono-regular {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

.ibm-plex-mono-medium {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: normal;
}

.ibm-plex-mono-semibold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: normal;
}

.ibm-plex-mono-bold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: normal;
}

.ibm-plex-mono-thin-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: italic;
}

.ibm-plex-mono-extralight-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: italic;
}

.ibm-plex-mono-light-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: italic;
}

.ibm-plex-mono-regular-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: italic;
}

.ibm-plex-mono-medium-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: italic;
}

.ibm-plex-mono-semibold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: italic;
}

.ibm-plex-mono-bold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: italic;
}



body {
    font-family: 'roboto-font', sans-serif !important;
    color: var(--primary-font-color);
    /* cursor: none; */

}

.logo {
    height: 50px;
    border-radius: 25px;
}

.shop-name {
    position: absolute;
    left: 48%;
    transform: translateX(-52%);
    font-weight: bold;
    font-size: 1rem;
    color: #000;
    white-space: nowrap;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .shop-name {
        position: static;
        transform: none;
        text-align: center;
        margin: 0 auto;
    }
}

a {
    text-decoration: none !important;
}

.navbar-list {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bs-light);
    border-radius: 10px;
}

.nav-link {
    color: #0056b3 !important;
}

.nav-link.active {
    font-weight: bold;
    border-bottom: 2px solid #337ab7;
}

.theme-color-text {
    color: var(--theme-color);
}

.theme-color-bg {
    background-color: var(--theme-color);
}


.call-expert {
    color: var(--primary-font-color);
}

.vibrating-icon {
    animation: vibrate 0.3s linear infinite;
    display: inline-block;
    font-size: 40px;
    color: var(--theme-color) !important;
    background-color: transparent !important;
    border: none !important;
}

@keyframes vibrate {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    60% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-4deg);
    }

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

.pulsing-text {
    font-size: 14px;
    color: #000;
    animation: pulse 1.2s ease-in-out infinite;
    display: inline-block;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.carousel-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    transform: scale(1.02);
    /* small zoom-in effect */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.carousel-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    padding: 2rem;
}

.carousel-content img {
    max-width: 100%;
    border-radius: 10px;
}

.carousel-caption-custom {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}


.carousel-control-prev,
.carousel-control-next {
    width: 80px !important;
    height: 90px !important;
    top: 50% !important;
    transform: translateY(-50%);
    background-color: transparent !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 60px !important;
    height: 60px !important;
    background-size: 100% 100% !important;
}

#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    background-color: var(--theme-color);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out;
    box-shadow: 0 0 10px var(--theme-color), 0 0 20px var(--theme-color);
    animation: pulseSquare 1.2s infinite ease-in-out;
}

/* Pulse animation for square */
@keyframes pulseSquare {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.section-with-header {
    position: relative;
    padding: 80px 20px 40px;
    text-align: center;
}

.section-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--theme-color);
    ;
    position: relative;
    padding-bottom: 10px;
    animation: fadeSlideDown 0.5s ease-in-out;
}

.section-header h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--theme-color);
    ;
    /* brand color */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

@keyframes fadeSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-text {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #5F6F81;
    font-size: 1rem;
    min-width: 250px;
    line-height: 1.4;
    margin-top: 10px !important;
}

.accordion-item {
    border: none !important;
}

button {
    padding: 9px 20px !important;
    background-color: var(--theme-color) !important;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 5px !important;
    border-radius: 10px !important;
}

button:hover {
    background: #0056b3;
}

.typewriter-section {
    height: 65px;
    padding-top: 13px;
}

.modal-content {
    border-radius: 1rem;
    font-size: 0.9rem;
}

.modal-header {
    border-bottom: none;
}

.typewriter {
    font-weight: bold;
    border-right: 3px solid black;
    display: inline-block;
    white-space: nowrap;
    /* overflow: hidden; */
    font-family: cursive;
}

.tooltip-inner {
    text-align: left;
    max-width: 200px;
    font-size: 0.875rem;
}

.social-block {
    margin-top: 10px;
    display: flex !important;
}


.social-block {
    margin-left: 20px;
    display: inline-block;
    float: left;
}

.social-icons-block {
    font-size: 2em;
    color: var(--theme-color);
    margin-left: 10px;
}

.social-icons {
    padding: 4px 4px;
}



header {
    background: var(--theme-bg-white);
    color: #fff;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

section {
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 80px;
}

.gallery-item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

.gallery-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.gallery-caption {
    padding: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: #333;
}

/* Medium screens */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .gallery-img {
        height: 120px;
    }

    .gallery-caption {
        font-size: 14px;
    }

    .gallery-card {
        height: 60px;
        width: 60px;
    }
}

/* âœ… Small screen (mobile) size â€” make it 60x60px */
@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 100%;
        max-width: 33%;
    }

    .gallery-img {
        height: 60px;
        width: 60px;
        margin: 0 auto;
        display: block;
        border-radius: 8px;
    }

    .gallery-caption {
        font-size: 12px;
        padding-top: 4px;
    }

}

/* Home container starts */
#home {
    background: var(--theme-bg-color);
    color: #212121;
}

#gallery {
    background: var(--theme-bg-color2);
}

#services {
    background: var(--theme-bg-color2);
}

#contact {
    background: var(--theme-bg-color2);
}

#inquiry {
    background: var(--theme-bg-color2);
}

#location {
    background: var(--theme-bg-color2);
}


.home-container {
    max-width: 90%;
}

.bio-text {
    font-size: 1.25rem;
    font-weight: 400;
}


#about {
    background: var(--theme-bg-color2);
}

.about-head {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 83px;
    font-weight: 500;
    font-size: 1.6rem;
}

.short-head {
    padding: 10px 0px;
    font-weight: 500;
    text-decoration: underline;
}

.about-head-text {
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 1.6rem;
}

.about-text {
    font-size: 1rem;
    text-align: left;
}

.about-section-container {
    background-color: white;
    border-radius: 15px;
    padding: 20px 20px;
    font-size: 1.1rem;
    font-weight: 400;

    span {
        color: #8444df;
    }
}

.services-section,
.gallery-section,
.about-section,
.map-section,
.location-section,
.contact-section,
.inquiry-section {
    padding: 35px 10px;
}

.services-section-container,
.gallery-section-container,
.map-section-container,
.about-section-container,
.contact-section-container,
.inquiry-section-container {
    background-color: white;
    border-radius: 15px;
    padding: 20px 5px;
    font-size: 1.1rem;
    font-weight: 400;
    width: 95%;

    span {
        color: #8444df;
    }
}

.location-section-container {
    background-color: white;
    border-radius: 15px;
    padding: 20px 20px;
    font-size: 1.1rem;
    font-weight: 400;
    width: 95%;

    span {
        color: #8444df;
    }
}

.contact-item {
    padding: 20px;
}

.contact-item .icon i {
    color: #007bff;
}

.contact-item h5 {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 15px;
    color: #555;
    margin: 5px 0;
}

/* Middle border only on the center column */
.border-middle {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

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

/* Responsive tweak */
@media (max-width: 768px) {
    .border-middle {
        border: none;
    }
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.service-flex-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.service-flex-list li {
    flex: 0 1 calc(50% - 20px);
    /* Two items per row on larger screens */
    background: #f9f9f9;
    padding: 12px 16px;
    border-left: 4px solid var(--theme-color);
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-flex-list li i {
    font-size: 1.2rem;
    color: var(--theme-color);
    margin-right: 12px;
}

.service-flex-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .service-flex-list li {
        flex: 0 1 100%;
        /* Stack vertically on smaller screens */
    }
}

.query-form-section {
    background: #f9f9f9;
}

#queryForm input,
#queryForm textarea {
    border: 1px solid #ccc;
    background-color: #f6f6f6;
    padding: 12px;
}

#queryForm button {
    border-radius: 30px;
    font-size: 18px;
}

#queryForm button:hover {
    background-color: #0056b3;
}

.footer-section {
    background-color: #272727;
    color: #999999;
}

.footer-section h5 {
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #999999;
}

.footer-section ul li a {
    text-decoration: none;
    color: #999999;
}

.footer-section ul li a:hover {
    color: #999999;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #999999;
    font-size: 20px;
}

.social-icons a:hover {
    color: #999999;
}

.footer-section hr {
    border-top: 1px solid #ddd;
}

.footer-section .small {
    font-size: 13px;
    color: #999999;
}

@media (max-width: 768px) {

    .footer-section .text-start,
    .footer-section .text-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

#scrollToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Floating container */
.floating-message {
    position: fixed;
    bottom: 93px;
    right: 40px;
    z-index: 1000;
    border: 1px solid #fff;
}

/* Main floating button */
.floating-message button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background-color: var(--secondary);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    color: white;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.floating-message button:hover {
    background-color: #4de1c1;
}

/* Options container */
.options {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

/* Individual option buttons */
.options a {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

/* Active State */
.floating-message.active .options a {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
}

/* Circular Positioning */
.floating-message.active .options a:nth-child(1) {
    transform: translate(-110px, -50px) scale(1);      /* WhatsApp - left */
    background-color: #25D366;
    color: white;
}

.floating-message.active .options a:nth-child(2) {
    transform: translate(-110px, -110px) scale(1);    /* Email - top-left diagonal */
    background-color: #D44638;
    color: white;
}

.floating-message.active .options a:nth-child(3) {
    transform: translate(-50px, -110px) scale(1);      /* Inquiry - straight up */
    background-color: #007bff;
    color: white;
}

.options a:nth-child(1) { transition-delay: 0.05s; }
.options a:nth-child(2) { transition-delay: 0.1s; }
.options a:nth-child(3) { transition-delay: 0.15s; }</pre></body></html>