/* Reference Hero Section */
.template-hero {
    background: url('/images/template.png') no-repeat center;
    background-size: cover;
    height: 600px;
}

/* Template Styles */
.content-section {
    padding: 80px 0;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 100% !important;
}

/* Ensure the lightbox image is centered */
.lb-outerContainer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100vh !important;
}

/* Ensure the container takes full height */
.lb-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Adjust modal positioning */
.lb-dataContainer {
    text-align: center;
}

/* Prevent lightbox image overflow */
.lb-image {
    max-height: 90vh !important;
    max-width: 90vw !important;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
}

.text-content {
    margin-bottom: 40px;
}

/* Bullet Styles */
.bullet-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 20px;
}

.bullet-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.bullet-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    background-color: #EF5F36;
    border-radius: 50%;
}

.bullet-highlight {
    color: #EF5F36;
    font-weight: 500;
}

/* PDF Link Styles */
.pdf-link {
    margin-bottom: 30px;
}

.document-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.document-link:hover {
    color: #EF5F36;
}

.pdf-icon {
    width: 31px;
    height: 37px;
    margin-right: 15px;
}

/* Back Link Styles */
.back-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 20px;
}

.arrow-left {
    margin-right: 10px;
}

.back-link:hover {
    color: #EF5F36;
}

/* Gallery Styles */
.template-gallery {
    margin-top: 30px;
}

.gallery-grid {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-left {
    flex: 2;
    height: 599px;
}

.gallery-right {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.template-container {
    padding: 0 5%;
}

.gallery-right .gallery-item {
    height: 142px;
}

.gallery-item {
    display: block;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Lightbox customization */
.lb-data .lb-caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.lb-data .lb-number {
    font-family: 'Roboto', sans-serif;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.template-gallery{
    height: 600px;
}


/* Responsive styles for gallery */
@media (max-width: 992px) {
}

@media (max-width: 768px) {

}

@media (max-width: 480px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 24px;
    }
    
    .thumbnail {
        width: 100%;
    }
}

