/* General Body and Typography */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.7;
    background-color: #f8f9fa;
}

.top-bar {
    background-color: #333;
    color: #fff;
    padding: 5px 0;
    font-size: 0.9em;
    border-bottom: 1px solid #FFFF00; /* Thin yellow line */
}

.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar .contact-info a {
    color: #fff; /* Make contact links white */
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
}

.contact-info span::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: #666;
}

.contact-info span:last-child::after {
    content: '';
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }

section h1 {
   font-size: 3.5em;
   margin-top: 20px;
   margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.btn {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
    text-decoration: none;
    color: #000;
}

header {
    background-image: url('../images/grass-texture.png');
    background-repeat: repeat;
    background-size: auto;
    background-color: rgba(0, 60, 0, 0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #FFFF00;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 150px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #28a745;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover::after {
    width: 100%;
}

.call-us-btn {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #90EE90;
    margin-left: 15px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #0056b3;
    color: #fff;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
}

.call-us-btn:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.active-page a {
    background-color: #0A2A0A;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 5px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide .container {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.slide-text {
    font-size: 3.5em;
    margin: 0 auto 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-subtext {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #eee;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Slider Section */
.slider-container-benefits {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
}

.slide-benefits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide-benefits.active {
    opacity: 1;
}

.slide-benefits img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

.overlay-text h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.slider-nav-benefits {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.slider-nav-benefits button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #333;
    padding: 8px 12px;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    transition: background-color 0.3s ease;
}

.slider-nav-benefits button:hover {
    background: #fff;
}

.accordion {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-item {
    border-bottom: 1px solid #e9ecef;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: #0A2A0A;
    color: #fff;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}

.accordion-header:hover {
    background-color: #1a4a1a;
}

.accordion-header.active {
    background-color: #90EE90;
    color: #333;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-header::after {
    content: '\002B';
    font-weight: bold;
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    content: "\2212";
    transform: rotate(180deg);
}

.accordion-content {
    background-color: #fff;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content.active {
    max-height: 500px;
    padding: 15px 20px;
}

.accordion-content p {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
}

.content-section {
    padding: 80px 0;
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
}

.content-section:nth-of-type(even) {
    background-color: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .content-grid.reverse .text-content {
        order: 2;
    }
    .content-grid.reverse .image-content {
        order: 1;
    }
}

.text-content h2, .text-content h3 {
    color: #28a745;
    margin-bottom: 20px;
}

#about-syngrass .text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.text-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.text-content ul li::before {
    content: '✓';
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-content img:hover {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 15px;
    font-size: 0.95em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #212529;
}

.product-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.product-card ul li {
    margin-bottom: 8px;
    color: #555;
    font-size: 1em;
    padding: 5px 10px;
    border-radius: 5px;
}

.product-card ul li:nth-child(odd) {
    background-color: #f0f0f0;
}

.product-card ul li:nth-child(even) {
    background-color: #e9e9e9;
}

.product-card .price {
    font-size: 1.8em;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 25px;
    background-color: #d4edda;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
}

footer {
    background-color: #212529;
    color: #f8f9fa;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-contact-form {
    background-color: #343a40;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin: 30px auto 0 auto;
}

.footer-contact-form h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #f8f9fa;
    text-align: center;
}

.footer-contact-form .form-group {
    margin-bottom: 15px;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #495057;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
    background-color: #495057;
    color: #fff;
}

.footer-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.footer-contact-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    margin-top: 15px;
}

footer .social-links img {
    width: 35px;
    height: 35px;
    margin: 0 12px;
    transition: transform 0.3s ease;
}

footer .social-links img:hover {
    transform: scale(1.2);
}

.menu-toggle {
    display: none;
}

.whatsapp-float {
    display: none;
}

@media (max-width: 992px) {
    h1 { font-size: 3em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.6em; }
}

@media (max-width: 768px) {
    header {
        position: relative;
    }

    header .container {
        justify-content: center;
    }

    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .menu-toggle {
        display: flex;
        background-color: #000;
        color: #fff;
        border: 1px solid #fff;
        padding: 8px 12px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1em;
        align-items: center;
        gap: 8px;
        margin: 0 auto;
    }

    .menu-title {
        display: inline-block;
        color: #fff;
        font-size: 1.2em;
    }

    .bar {
        display: none;
    }

    nav {
        display: none;
        width: 100%;
        background-color: rgba(0, 60, 0, 0.95);
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .call-us-btn, .whatsapp-btn {
        margin: 10px auto;
        width: 80%;
        max-width: 250px;
    }

    .whatsapp-float {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        color: white;
        padding: 10px 15px;
        border-radius: 25px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        z-index: 1001;
        text-decoration: none;
        align-items: center;
        gap: 8px;
        font-size: 1.1em;
    }

    .whatsapp-float img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.4em; }

    .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .call-us-btn, .whatsapp-btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}
/* Testimonials Section */
#testimonials {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-item p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-item cite {
    font-weight: bold;
    color: #333;
}
/* Blog Page Styles */
#blog-hero {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

#blog-listing .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-post-summary {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.blog-post-summary img {
    width: 100%;
    height: auto;
}

.blog-post-summary h2 {
    font-size: 1.5rem;
    margin: 20px;
}

.blog-post-summary p {
    margin: 0 20px 20px;
    color: #555;
}

.blog-post-summary .btn {
    margin: 0 20px 20px;
}
/* Blog Post Styles */
#blog-post .blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-header-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
}

.blog-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.blog-content .post-meta {
    color: #777;
    margin-bottom: 30px;
}

.blog-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-content p, .blog-content ul {
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-content ul {
    padding-left: 20px;
}
/* Video Page Styles */
#video-hero {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

#video-content .video-wrapper {
    margin-bottom: 30px;
}

#video-content video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

#video-content .video-description {
    text-align: center;
}
/* Gallery Page Styles */
#gallery-hero {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.photo-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
}
/* Gallery Page Styles */
#gallery-hero {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.prev-lightbox, .next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next-lightbox {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-lightbox:hover, .next-lightbox:hover {
    background-color: rgba(0,0,0,0.8);
}
/* Gallery Page Styles */
#gallery-hero {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.gallery-nav {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-tab {
    background-color: #f1f1f1;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.gallery-tab.active {
    background-color: #ddd;
}

.photo-gallery {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-gallery.active {
    display: grid;
}

.photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.prev-lightbox, .next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next-lightbox {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-lightbox:hover, .next-lightbox:hover {
    background-color: rgba(0,0,0,0.8);
}
/* Order Button Styles */
.order-btn {
    background-color: #004d00; /* Dark Green */
    color: #ffffff !important;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
}

.order-btn:hover {
    background-color: #003300; /* Darker Green on Hover */
    color: #ffffff !important;
}
/* Product Thumbnail Styles */
.product-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.product-thumbnail:hover {
    border-color: #28a745;
}
/* Gallery Page Styles */
#gallery-hero {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.gallery-nav {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-tab {
    background-color: #f1f1f1;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    margin: 0 5px;
    border-radius: 5px;
}

.gallery-tab.active {
    background-color: #28a745;
    color: white;
}

.photo-gallery {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-gallery.active {
    display: grid;
}

.photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.prev-lightbox, .next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next-lightbox {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-lightbox:hover, .next-lightbox:hover {
    background-color: rgba(0,0,0,0.8);
}
/* Gallery Hub Styles */
.gallery-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: white;
}

.gallery-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumbnail:hover img {
    transform: scale(1.1);
}

.gallery-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

/* Individual Gallery Page Styles */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.prev-lightbox, .next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next-lightbox {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-lightbox:hover, .next-lightbox:hover {
    background-color: rgba(0,0,0,0.8);
}
/* Gallery Hub Styles */
.gallery-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: white;
    display: block;
}

.gallery-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumbnail:hover img {
    transform: scale(1.1);
}

.gallery-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

/* Individual Gallery Page Styles */
.gallery-view h2 {
    text-align: center;
    margin-bottom: 30px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.prev-lightbox, .next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next-lightbox {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-lightbox:hover, .next-lightbox:hover {
    background-color: rgba(0,0,0,0.8);
}
/* Order Button Styles */
.whatsapp-order-btn, .email-order-btn {
    display: inline-block;
    width: 45%;
    margin: 10px 2.5%;
    padding: 15px;
    font-size: 1.2em;
    text-align: center;
}

.whatsapp-order-btn {
    background-color: #25D366;
}

.email-order-btn {
    background-color: #007bff;
}