@media only screen and (min-width: 767px) {
    .navbar-brand img{
    width: 150px;
}
.main-menu ul li {
    margin: 0 4px;
    position: relative;
}
}

.footer-logo{
    background-color: white;
        width: 200px;
}
.banner-log{
    width: 300px;
}
.product-logo{
    width: 120px;
}

.services-list-box ul li.active a{
    color: var(--accent-color);
}
.service-sidebar {
    padding-right: 30px;
    position: sticky;
    top: 140px;
}
/* Gallery Section */
.gallery-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Swiper container */
.gallery-slider {
    position: relative;
}

/* Each slide */
.gallery-slider .swiper-slide {
    height: 100%;
}

/* Card style for gallery items */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background-color: #0a1424; /* close to template’s dark tone */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Image styling */
.gallery-item figure {
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover zoom */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Swiper pagination style to match accent color */
.gallery-section .swiper-pagination {
    position: relative;
    margin-top: 24px;
}

.gallery-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background-color: #f7b500; /* Solor’s yellow accent */
    margin: 0 5px !important;
}

.gallery-section .swiper-pagination-bullet-active {
    transform: scale(1.3);
}
    
/* Responsive tweaks */
@media (max-width: 767.98px) {
    .gallery-item img {
        height: 220px;
    }
    .text-anime .line{
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .gallery-item img {
        height: 300px;
    }
}

.thankyou-img{
    width: 100%;
    max-width: 500px;
}


/* Floating chat/contact button */
.chat-float-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #f7b500; /* Solar Beat accent */
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.chat-icon{
    width: 30px;
    animation: chat-icon-animation 2s ease-in-out infinite;
}

@keyframes chat-icon-animation {
    0%   { transform: scale(0.8); }
    100% { transform: scale(1.3);; }
}

.chat-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    background: #ffcc33;
}

/* Hide floating button when modal is open */
.modal-open .chat-float-btn {
    display: none;
}


.chat-modal .modal-header {
    border-bottom: 1px solid #111827;
}

.chat-modal .modal-header .modal-title {
    font-size: 18px;
    font-weight: 600;
}

.chat-modal .modal-body {
    padding-top: 16px;
}

/* Make it feel compact on larger screens */
@media (min-width: 768px) {
    .chat-modal .modal-dialog {
        width:100%;
        max-width: 480px;
    }
}

/* Mobile tweaks */
@media (max-width: 575.98px) {
    .chat-float-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        right: 16px;
        bottom: 16px;
    }
}

