/* Navigation Styles */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #f8f9fa;
    /* matches light site background to avoid white edge */
}

/* Prevent edge glow on horizontal drag inside swipers */
.swiper {
    touch-action: pan-y;
}

.top-bar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .contact-item {
    transition: all 0.3s ease;
}

.top-bar .contact-item:hover {
    transform: translateY(-1px);
}

.social-icons .social-icon {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.social-icons .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Main Navigation */
.navbar {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
    color: #007bff;
    border-left-color: #007bff;
    transform: translateX(5px);
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
        padding: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #f8f9fa;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .dropdown-menu {
        box-shadow: none;
        border: 1px solid #f8f9fa;
        margin-top: 0;
        margin-left: 1rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky navigation enhancement */
.navbar.sticky-top {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Google Translate widget styling */
#google_translate_element {
    margin-left: 1rem;
}

#google_translate_element .goog-te-gadget {
    color: white !important;
}

#google_translate_element .goog-te-gadget .goog-te-combo {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
}

#google_translate_element .goog-te-gadget .goog-te-combo option {
    background: #333;
    color: white;
}

/* Additional utility classes */
.text-primary {
    color: #007bff !important;
}

.bg-primary {
    background-color: #007bff !important;
}

/* Hover effects for better UX */
.navbar-nav .nav-item {
    position: relative;
}

/* Disable hover-open for dropdowns; open only on click via Bootstrap */
@media (min-width: 992px) {
    .dropdown-menu {
        display: none;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
}

.footer-widget {
    position: relative;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-link:hover::before {
    left: 100%;
}

.footer-link i {
    transition: all 0.3s ease;
}

.footer-link:hover i {
    transform: scale(1.2);
}

/* Contact Info Styles */
.contact-info {
    margin-top: 1rem;
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-link {
    color: #b0b0b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link:hover {
    color: #ffffff;
    background: rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    text-decoration: none;
}

.contact-link i {
    transition: all 0.3s ease;
}

.contact-link:hover i {
    transform: scale(1.2);
}

/* Address Section Styles */
.address-section {
    margin-top: 2rem;
}

.address-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.address-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.address-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.address-text {
    color: #b0b0b0;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Copyright Section Styles */
.copyright-section {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.copyright-text {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.developer-text {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.developer-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Toggle Button Styles */
.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-link {
        justify-content: center;
    }

    .contact-link {
        justify-content: center;
    }

    .address-card {
        margin-bottom: 1rem;
    }

    .copyright-section .row {
        text-align: center;
    }

    .developer-text {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 3rem 0;
    }

    .footer-widget {
        margin-bottom: 2rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .address-card {
        padding: 1rem;
    }
}

/* Animation for footer elements */
.footer-widget {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for better UX */
.footer-links li {
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

/* Extra products animation */
.extra-product {
    transition: all 0.3s ease;
}

.extra-product.d-none {
    opacity: 0;
    transform: translateY(-10px);
}

.extra-product:not(.d-none) {
    opacity: 1;
    transform: translateY(0);
}

/* Home Page Styles */

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {

    padding: 0px;
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-image {
    border-radius: 5px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*    opacity: 0.7;
*/
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #007bff;
    border-color: #007bff;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.8);
    border-radius: 50%;
    margin: auto 20px;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 123, 255, 1);
    transform: scale(1.1);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-images {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .main-image {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .main-image {
        height: 250px;
    }
}

.overlay-image-wrapper {
    position: absolute;
    top: 50px;
    right: -30px;
    z-index: 3;
    width: 200px;
    height: 200px;
}

.overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 4;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

.badge-content {
    text-align: center;
}

.years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content {
    padding: 2rem 0;
}

.section-subtitle {
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.2);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

@media (max-width: 575.98px) {
    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-image {
        width: 35px;
        height: 35px;
    }
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-image {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1rem;
    font-weight: 500;
}

/* Products Section */
.products-section {
    background: white;
}

.products-slider-container {
    position: relative;
    padding: 0 50px;
}

.products-swiper {
    padding: 20px 0;
}

.products-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.product-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    position: relative;
    height: auto;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Swiper Slide */
.products-swiper .swiper-slide {
    height: auto;
    display: flex;
}

/* Gallery Card */
.gallery-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* Default Swiper sizing; no hard slide widths so centering works with few slides */
@media (max-width: 576px) {
    .products-swiper .swiper-slide {
        margin-right: 0;
    }
}

/* Slider container padding tweaks for mobile to allow wider slides */
@media (max-width: 576px) {
    .products-slider-container {
        padding-left: 0;
        padding-right: 0;
    }

    .products-swiper {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Hover effect */
.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image wrapper */
.gallery-image-wrapper {
    position: relative;
    height: 250px;
    /* adjust as needed */
    overflow: hidden;
    flex-shrink: 0;
}

/* Gallery images */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Zoom on hover */
.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

/* Hide eye icon until hover in product/gallery cards */
.product-image-wrapper a.glightbox,
.gallery-image-wrapper a.glightbox {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover a.glightbox,
.gallery-image-wrapper:hover a.glightbox {
    opacity: 1;
}

/* Overlay for lightbox button */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Show overlay on hover */
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Overlay button */
.gallery-overlay .btn {
    color: #fff;
    border: 1px solid #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.gallery-overlay .btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* Content under image */
.gallery-content {
    padding: 1rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Remove flex-based multi-slide layout to respect Swiper breakpoints */

/* Products Slider Navigation */
.products-swiper-button-next,
.products-swiper-button-prev {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.products-swiper-button-next:hover,
.products-swiper-button-prev:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.products-swiper-button-next::after,
.products-swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Products Slider Pagination */
.products-swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.products-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0, 123, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.products-swiper-pagination .swiper-pagination-bullet-active {
    background: #007bff;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-card {
    height: 300px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.8));
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.gallery-title {
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Clients Section */
.clients-section {
    background: white;
}

.client-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: white;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-logo {
    max-height: 80px;
    max-width: 120px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    font-size: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.accordion-item {
    transition: all 0.3s ease;
}

.accordion-button {
    font-weight: 600;
    color: #333;
    background: white;
    border: none;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

    .accordion-button:not(.collapsed) {
        background: #007D7F;
        color: white;
        box-shadow: none;
    }

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
    color: #666;
    line-height: 1.8;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    position: relative;
    z-index: 2;
    font-size: 2rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

/* Gallery Card */
.gallery-card {
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Gallery Image */
.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

/* Overlay on Hover */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Title in Overlay */
.gallery-title {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0 10px;
}

/* Typewriter effect */
/*.typewriter-text {
    border-right: 3px solid #007bff;
    animation: blink 1s infinite;
}*/

@keyframes blink {

    0%,
    50% {
        border-color: transparent;
    }

    51%,
    100% {
        border-color: #007bff;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .overlay-image-wrapper {
        width: 150px;
        height: 150px;
        right: -20px;
        top: 30px;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 0.75rem;
    }

    .years {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: 60vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .overlay-image-wrapper {
        display: none;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        display: inline-block;
    }

    .stat-card {
        margin-bottom: 1rem;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .gallery-card {
        height: 250px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    /* Products Slider Mobile */
    .products-slider-container {
        padding: 0 30px;
    }

    .products-swiper-button-next,
    .products-swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .products-swiper-button-next::after,
    .products-swiper-button-prev::after {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-slide {
        height: 50vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .product-image-wrapper {
        height: 180px;
    }

    .product-title {
        font-size: 1rem;
    }

    .gallery-card {
        height: 200px;
    }
}

/* Utility classes */
.bg-primary-subtle {
    background-color: rgba(0, 123, 255, 0.1) !important;
}

.text-primary {
    color: #007bff !important;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-light {
    background: white;
    color: #007bff;
    border: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #f8f9fa;
    color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== COMMON PAGE STYLES ===== */

/* Page Banner/Hero Section */
.page-banner {
    background: #007D7F;
    color: white;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-banner .row {
    margin: 0;
}

.page-banner [class*="col-"] {
    padding: 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1,
.page-banner .page-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

/* Breadcrumb Styles */
.breadcrumb-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1;
}

.breadcrumb-container a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-container a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.breadcrumb-container .current-item {
    color: #ffd700;
    /* Subtle gold for current item? No, user said don't change color. */
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.breadcrumb-container .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.breadcrumb-container a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-container span {
    color: rgba(255, 255, 255, 0.8);
}

/* Main Content Section */
.main-content {
    padding: 10px 0 60px;
    background: #f8f9fa;
}

.content-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== ABOUT PAGE STYLES ===== */

.about-hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-stats {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PRODUCTS PAGE STYLES ===== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image-modern {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-image-modern {
    transform: scale(1.1);
}

.product-content-modern {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-description-modern {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-button-modern {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.product-button-modern:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    color: white;
    text-decoration: none;
}

/* ===== BLOG PAGE STYLES ===== */

.blog-search {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.blog-search .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-search .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.blog-search .btn {
    border: none;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-weight: 600;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.blog-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image-modern {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.blog-card-modern:hover .blog-image-modern {
    transform: scale(1.1);
}

.blog-content-modern {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-title-modern a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title-modern a:hover {
    color: #007bff;
}

.blog-excerpt-modern {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-meta-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1rem;
}

.blog-read-more-modern {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.blog-read-more-modern:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    color: white;
    text-decoration: none;
}

/* ===== FAQ PAGE STYLES ===== */

.faq-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.2);
}

.faq-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item-modern {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question-modern {
    display: block;
    position: relative;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-modern:hover {
    background: #f8f9fa;
    color: #007bff;
    text-decoration: none;
}

.faq-question-modern i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    color: #007bff;
}

.faq-question-modern.collapsed i {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer-modern {
    padding: 0 2rem 1.5rem;
    background: #f8f9fa;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== CONTACT PAGE STYLES ===== */

.contact-hero-modern {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-section-modern {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-card-modern {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.contact-info-modern {
    padding: 2rem;
    background: linear-gradient(135deg, var(--ral-water-blue) 0%, var(--ral-water-blue-dark) 100%);
    color: white;
    border-right: 4px solid var(--ral-zinc-yellow);
}

.contact-info-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-item-modern {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(243, 218, 11, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-item-modern:hover {
    transform: translateX(10px);
}

.info-icon-modern {
    width: 45px;
    height: 45px;
    background: var(--ral-zinc-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.info-icon-modern i {
    font-size: 18px;
    color: var(--ral-water-blue);
}

.info-content-modern h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.info-content-modern p,
.info-content-modern a {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
}

.info-content-modern a:hover {
    color: white;
    text-decoration: underline;
}

.contact-form-modern {
    padding: 2rem;
}

.contact-form-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--ral-water-blue);
}

.form-group-modern {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
    color: #333;
}

.form-control-modern {
    display: block;
    width: 100%;
    padding: .75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-modern:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .15);
}

textarea.form-control-modern {
    min-height: 130px;
    resize: vertical;
}

.form-control-modern.input-validation-error,
.form-control-modern.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .15);
}

.text-danger {
    font-size: .875rem;
    margin-top: .25rem;
}

.btn-submit-modern {
    background: linear-gradient(135deg, var(--ral-water-blue) 0%, var(--ral-water-blue-dark) 100%);
    border: 2px solid var(--ral-zinc-yellow);
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit-modern:hover {
    background: linear-gradient(135deg, var(--ral-zinc-yellow) 0%, var(--ral-zinc-yellow-dark) 100%);
    color: var(--ral-water-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 122, 138, 0.3);
}

/* ===== GALLERY PAGE STYLES ===== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item-modern {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image-modern {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item-modern:hover .gallery-overlay-modern {
    opacity: 1;
}

.gallery-overlay-modern i {
    font-size: 2rem;
    color: white;
}

/* ===== PAGINATION STYLES ===== */

.pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.pagination-modern .page-item {
    margin: 0 0.25rem;
}

.pagination-modern .page-link {
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #333;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pagination-modern .page-link:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.pagination-modern .page-item.active .page-link {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 991.98px) {
    .page-banner h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .about-image {
        height: 300px;
    }

    .contact-card-modern {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        padding: 60px 0 40px;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .main-content {
        padding: 10px 0 40px;
    }

    .content-card {
        padding: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.75rem;
    }

    .about-image {
        height: 250px;
    }

    .contact-info-modern,
    .contact-form-modern {
        padding: 1.5rem;
    }

    .info-item-modern {
        flex-direction: column;
        text-align: center;
    }

    .info-icon-modern {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .faq-question-modern {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer-modern {
        padding: 0 1.5rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .page-banner h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-card {
        padding: 1rem;
    }

    .product-card-modern,
    .blog-card-modern {
        margin-bottom: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 200px;
    }

    .contact-info-modern,
    .contact-form-modern {
        padding: 1rem;
    }

    .faq-question-modern {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .faq-answer-modern {
        padding: 0 1rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ===== ADDITIONAL UTILITY CLASSES ===== */

.text-gradient {
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.shadow-soft {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.shadow-strong {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.border-radius-lg {
    border-radius: 15px;
}

.border-radius-xl {
    border-radius: 20px;
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow:hover {
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

/* ===== LOADING ANIMATIONS ===== */

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */

@media print {

    .page-banner,
    .contact-hero-modern,
    .about-hero,
    .faq-section {
        background: white !important;
        color: black !important;
    }

    .content-card,
    .product-card-modern,
    .blog-card-modern,
    .contact-card-modern {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .btn,
    .product-button-modern,
    .blog-read-more-modern,
    .btn-submit-modern {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd !important;
    }
}

/* ===== ENHANCED PRODUCT & BLOG DETAILS STYLES ===== */

/* Improved Typography */
.blog-title-modern,
.product-title-modern {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: -0.02em;
}

/* Enhanced Image Hover Effects */
.product-image-modern:hover,
.blog-featured-image-modern img:hover {
    transform: scale(1.02);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved Button Interactions */
.btn-primary-modern,
.btn-secondary-modern,
.share-btn {
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::before,
.btn-secondary-modern::before,
.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-modern:hover::before,
.btn-secondary-modern:hover::before,
.share-btn:hover::before {
    left: 100%;
}

/* Enhanced Card Shadows */
.product-gallery-modern,
.product-info-modern,
.blog-post-modern,
.sidebar-widget-modern {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-gallery-modern:hover,
.product-info-modern:hover,
.blog-post-modern:hover,
.sidebar-widget-modern:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Improved Form Elements */
.quantity-input,
.search-form-modern .form-control,
.newsletter-form .form-control {
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quantity-input:focus,
.search-form-modern .form-control:focus,
.newsletter-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

/* Enhanced Loading States */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Improved Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {

    .product-info-modern,
    .blog-post-modern,
    .sidebar-widget-modern {
        background: #1a1a1a;
        color: #ffffff;
    }

    .blog-title-modern,
    .product-title-modern {
       
    }

    .content-wrapper {
        color: #e0e0e0;
    }

    .meta-item {
        color: #b0b0b0;
    }
}

/* Enhanced Mobile Experience */
@media (max-width: 767.98px) {

    .product-gallery-modern,
    .product-info-modern,
    .blog-post-modern {
        margin-bottom: 1rem;
    }

    .action-buttons-modern .btn,
    .share-buttons .share-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .product-thumbnails {
        justify-content: center;
    }

    .thumbnail-item {
        margin: 0 0.25rem;
    }
}

/* Improved Touch Targets */
@media (hover: none) and (pointer: coarse) {

    .btn,
    .share-btn,
    .quantity-btn,
    .tab-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .thumbnail-item {
        min-width: 60px;
        min-height: 60px;
    }
}

/* Performance Optimizations */
.product-image-modern,
.featured-image {
    will-change: transform;
}

.btn-primary-modern,
.btn-secondary-modern,
.share-btn {
    will-change: transform, box-shadow;
}

/* Enhanced Focus States */
.btn:focus,
.share-btn:focus,
.quantity-btn:focus,
.tab-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Improved Error States */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Success States */
.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.valid-feedback {
    display: block;
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}