.complete-main {
    padding-top: 80px;
}

.complete-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTUhlaEGWwfF_yeq3XJuruD06oHAstwFLaZ8Oa79GKxr9BFYOyqyUeErAg&s=10') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.complete-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.complete-hero p {
    font-size: 1.6rem;
    max-width: 700px;
    margin: 0 auto;
}

.complete-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2rem;
    color: #1a73e8;
    margin-bottom: 20px;
    text-align: center;
}

.intro-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.intro-content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.intro-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.intro-content li::before {
    content: "✓";
    color: #1a73e8;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.complete-gallery {
    padding: 80px 0;
}

.complete-gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #1a73e8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 115, 232, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 1.1rem;
    font-weight: 500;
}

.complete-benefits {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.complete-benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #1a73e8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
     border: 3px solid #358989ba;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #202124;
}

.benefit-card p {
    color: #5f6368;
    line-height: 1.6;
}

.complete-features {
    padding: 80px 0;
}

.complete-features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #1a73e8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 3px solid var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a73e8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card i {
    font-size: 1.5rem;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
}

.feature-card li::before {
    content: "•";
    color: #1a73e8;
    position: absolute;
    left: -10px;
    font-weight: bold;
}

/* Lightbox Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 242, 73, 0.445);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.lightbox-image {
    max-height: 80vh;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(217, 22, 22, 0.856);
    display: block;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -10px;
    color: white;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #e81a1a;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: #1a73e8;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}



.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-item h3{
    font-size: 4rem;
}

.contact-item p{
    font-size: 2rem;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .complete-hero h1 {
        font-size: 2.5rem;
    }
    
    .complete-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .complete-hero {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

     .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: -50px;
    }
    
    .lightbox-next {
        right: -50px;
    }

}

@media (max-width: 576px) {
    .complete-hero h1 {
        font-size: 1.4rem;
    }
    
    .complete-hero p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: -50px;
        right: 10px;
        color: rgba(255, 0, 0, 0.916);
    }

    .contact-item h3{
        font-size: 2rem;
    }

    .contact-item p{
        font-size:1rem ;
    }

}