@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    font-family: Lora, serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 2px solid #e9ecef;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

h1.lora-sgititle {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: #003300;
    text-shadow: 1px 1px 3px #fff, -1px -1px 0 rgba(0, 80, 0, 0.9);
}

.montserrat-ptext {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 80px;
}

.title-slogan h1 {
    margin: 0;
    font-size: 1.8rem;
}

.slogan {
    font-style: italic;
    color: #666;
}

.header .nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.header .nav ul li {
    position: relative;
    padding-left: 1.8rem;
}

.header .nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header .nav ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
    color: #003300;
}

.header .nav ul li[data-icon="home"]::before        { content: "\f015"; }
.header .nav ul li[data-icon="about"]::before       { content: "\f2bb"; }
.header .nav ul li[data-icon="vendor-list"]::before { content: "\e5a9"; }
.header .nav ul li[data-icon="gallery"]::before     { content: "\f03e"; }
.header .nav ul li[data-icon="contact"]::before     { content: "\f0e0"; }

.header .nav ul li:hover::before,
.header .nav ul li:hover a {
    color: blue;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    margin: 2rem 0;
}
/* Add to style.css ? Hero Slider Styles */

.hero-slider {
    position: relative;
    max-width: 100%;
    margin: 2rem auto 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}
.slide-caption {
    position: absolute;
	top: 69%;                 /* Adjust this value */
    left: 50%;
    transform: translate(-50%, -20%);  /* Centers horizontally and fine-tunes vertical */
    width: 90%;
    max-width: 800px;
    background: rgba(0,0,0,0.6);
	color: #fff;
	padding: .5rem;
    border-radius: 12px;
    text-align: center;
}

.slide-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.slide-caption p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
}

/* Navigation Arrows */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0,123,255,0.8);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active {
    background: #fff;
}

.slider-dots .dot:hover {
    background: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .slide img {
        height: 50vh;
    }
    .slide-caption h2 {
        font-size: 2rem;
    }
    .slide-caption p {
        font-size: 1.1rem;
    }
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
/* Sidebar ? Home/Services */
.sidebar {
    background: #f1f1f1;
    padding: 1.5rem;
    border-radius: 8px;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}

.sidebar ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    transition: transform 0.2s ease;
}

.sidebar ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\e5a9";
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: #000;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sidebar ul li:hover::before {
    animation: pulseIcon 1.2s infinite;
    color: #0056b3;
    transform: scale(1.2);
}

.sidebar ul li:hover {
    transform: translateX(8px);
}

/* Services Overlay Sidebar */
.services-overlay {
    position: relative;
    background: none;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-height: 400px;
}

.services-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.45;
    transition: opacity 0.4s ease;
}

.services-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.services-list-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 2rem;
}

.services-list-overlay h2 {
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-size: 1.8rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    letter-spacing: 1px;
}

.services-list-overlay ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.services-list-overlay ul li {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
    transition: transform 0.3s ease;
}

.services-list-overlay ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0,123,255,0.6);
    transition: all 0.3s ease;
}

.services-list-overlay ul li:hover {
    transform: translateX(10px);
}

.services-list-overlay ul li:hover::before {
    animation: pulseIcon 1.2s infinite;
    color: #007bff;
    transform: scale(1.3);
}

.services-image:hover img {
    opacity: 0.55;
}

.services-overlay,
.services-overlay *,
.services-image,
.services-list-overlay,
.services-list-overlay h2,
.services-list-overlay ul,
.services-list-overlay ul li,
.services-list-overlay ul li::before {
    cursor: default !important;
}

.services-list-overlay a {
    cursor: pointer !important;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); text-shadow: 0 0 15px rgba(0,123,255,0.8); }
    100% { transform: scale(1); }
}

/* Main Content */
.main-content {
    padding: 1rem 0;
}

.main-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.main-content img.center {
    margin-left: auto;
    margin-right: auto;
}

.image-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
    overflow: hidden;
}

.image-row figure {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-row img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.6s ease;
}

.image-row figcaption {
    padding: 1rem;
    background: #f8f9fa;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.image-row figure:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.image-row figure:hover img {
    transform: scale(1.08);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.submit-btn {
    background: #007bff;
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0.5rem 0 0 1.2rem;
}

/* Gallery */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0056b3;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Smaller on mobile */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}
.project-group {
    margin-bottom: 3rem;
}

.project-title {
    text-align: center;
    font-size: 1.6rem;
    margin: 2rem 0 1.5rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.project-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #007bff;
    margin: 0.8rem auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-grid figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-grid figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1.2rem 0.8rem 0.8rem;
    text-shadow: 0 0 8px rgba(255,255,255,0.8), 1px 1px 3px rgba(0,0,0,0.9);
    letter-spacing: 1px;
    transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.1);
}

.gallery-grid figure:hover figcaption {
    transform: translateY(-8px);
    text-shadow: 0 0 15px rgba(255,255,255,1), 1px 1px 5px rgba(0,0,0,0.9);
}
/* Add to style.css ? Custom close button for GLightbox (top-right corner) */

.glightbox-container .gclose {
    width: 50px !important;
    height: 50px !important;
    background: rgba(0,0,0,0.7) !important;
    border-radius: 50% !important;
    top: 20px !important;
    right: 20px !important;
    font-size: 2rem !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4) !important;
    transition: all 0.3s ease !important;
    z-index: 100000 !important;
}

.glightbox-container .gclose:hover {
    background: #007bff !important;
    transform: scale(1.1) !important;
}
/* Add to style.css ? Custom 80% screen modal for gallery images */

.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal img {
    max-width: 90vw;   /* 90% of viewport width */
    max-height: 90vh;  /* 90% of viewport height */
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* Close button */
.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.gallery-modal-close:hover {
    background: #007bff;
    transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-modal {
        padding: 1rem;
    }
    .gallery-modal-close {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }
}
/* Optional: Larger close icon for mobile */
@media (max-width: 768px) {
    .glightbox-container .gclose {
        width: 60px !important;
        height: 60px !important;
        font-size: 2.5rem !important;
        top: 15px !important;
        right: 15px !important;
    }
}
/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 2rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-column a {
    color: #fff;
    text-decoration: underline;
}

hr {
    border: 0;
    border-top: 1px solid #555;
    margin: 1rem 0;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* Footer Glassmorphic Cards (all three columns) */
.footer-column:first-child,
.footer-grid > .footer-column:nth-child(2),
.footer-grid > .footer-column:nth-child(3) {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column:first-child::before { content: "\f2bb"; }
.footer-grid > .footer-column:nth-child(2)::before { content: "\f64a"; }
.footer-grid > .footer-column:nth-child(3)::before { content: "\f0c0"; }

.footer-column:first-child::before,
.footer-grid > .footer-column:nth-child(2)::before,
.footer-grid > .footer-column:nth-child(3)::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.footer-column:first-child > *,
.footer-grid > .footer-column:nth-child(2) > *,
.footer-grid > .footer-column:nth-child(3) > * {
    position: relative;
    z-index: 1;
}

/* Social Icons */
.footer-column:nth-child(3) a {
    margin: 0 0.8rem;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-column:nth-child(3) a:hover {
    transform: translateY(-4px);
}

.footer-column:nth-child(3) p {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-column:nth-child(3) p::before,
.footer-column:nth-child(3) p::after {
    content: none;
}

.footer-column h3,
.footer-column p,
.footer-column a {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.footer-column h3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.footer-column:nth-child(3) a i {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 0 0 6px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.footer-column:nth-child(3) a:hover i {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.9);
    transform: translateY(-4px) scale(1.1);
}

.footer-column:nth-child(3) a[href*="facebook"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(24, 119, 242, 0.75);
    border-radius: 8px;
    transition: background 0.3s ease;
}

/* Contact Page Sidebar */
.contact-page .contact-info-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.contact-page .contact-info-list li::before {
    content: "" !important;
}

.contact-page .contact-info-list li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1.4rem;
    color: #007bff;
    width: 1.8rem;
    text-align: center;
}

.contact-page .contact-info-list li:hover::before,
.contact-page .contact-info-list li:hover i {
    animation: none;
    transform: none;
}

.contact-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.contact-info-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.contact-info-list li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1.4rem;
    color: #007bff;
    width: 1.8rem;
    text-align: center;
}

.contact-info-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: #007bff;
}

.sidebar-images {
    margin-top: 1.5rem;
}

.sidebar-images h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.sidebar-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    display: block;
    object-fit: cover;
}

.sidebar-images img:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Vendor Index Grid */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.vendor-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.vendor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

.vendor-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 1.5rem;
}

.vendor-card h3 {
    margin: 1.5rem 1.5rem 1rem;
    font-size: 1.4rem;
    color: #333;
    text-align: center;
}

.vendor-card p {
    margin: 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

/* Single Vendor Page */
.vendor-single .vendor-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.vendor-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.vendor-images img {
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.vendor-images img:hover {
    transform: translateY(-8px);
}

.vendor-link {
    display: inline-block;
    margin-left: 1.5rem;
    background: #333;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.vendor-link:hover {
    background: #555;
}
.spec-btn {
    background: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.spec-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}
/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
/* Add to style.css ? Vendor page navigation arrows */

.vendor-nav {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none; /* Allows clicking through empty space */
    z-index: 100;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.vendor-prev,
.vendor-next {
    pointer-events: all; /* Re-enable clicks on arrows */
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.vendor-prev:hover,
.vendor-next:hover {
    background: #007bff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
}

/* Responsive ? smaller on mobile */
@media (max-width: 768px) {
    .vendor-prev,
    .vendor-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    .vendor-nav {
        padding: 0 10px;
    }
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .two-column {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        max-width: 100%;
    }
    .vendor-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .vendor-card img {
        height: 120px;
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-column:nth-child(3) a i {
        font-size: 1.5rem;
    }
    .services-list-overlay h2 {
        font-size: 1.6rem;
    }
    .services-list-overlay ul li {
        font-size: 1.05rem;
    }
}