
.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.content-section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.bg-dark {
    background-color: var(--dark-color);
    color: #fff;
}

.bg-dark .section-title {
    color: #fff;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}


/* Brief About Us */
.about-brief .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px; /* Fixed height for lazy load placeholder */
    background-color: #f0f0f0; /* Placeholder background */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image.loaded img {
    opacity: 1;
}


/* Brief Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    padding-top: 150px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 25px;
    color: white;
    margin-bottom:5px;
}

.service-item h3 {
    font-size: 1.5em;
    color: white;
    height: 65px;
    margin-bottom: 10px;
}

.service-item p {
    margin-bottom: 20px;
    flex-grow: 1;
    color: white;
}

.service-item a{
    color: hsl(200,100%,50%);
    font-weight: bold;
    text-decoration: none;
    border: 2px solid;

    text-transform: uppercase;
}
.service-item a:hover{
    background: white;
}

.service-item span{
    background: hsla(250,100%,50%,0.3);
    display: block;
    width: 100%;
    padding:25px;
     margin-bottom: 0px!important;
    border-radius: 5px;
}
/* Gallery Section */
.gallery-grid {
   text-align: center;
}

.gallery-grid img{
    width: 280px;
    height: 320px;
    object-fit: cover;
    border-radius: 5px;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px auto;
    overflow: hidden;
    height: 200px; /* Adjust height based on content */
}

.testimonial-item {
    text-align: center;
    padding: 20px;
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.6s ease-in-out;
}

.testimonial-item.active {
    opacity: 1;
}

.testimonial-item .quote {
    font-size: 1.4em;
    font-style: italic;
    margin-bottom: 20px;
    color: #f1f1f1;
}

.testimonial-item cite {
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--accent-color);
}

.testimonial-dots {
    bottom: -20px; /* Adjust position for testimonials */
}


/* Call to Action Section */
.cta-section {
    background: hsl(260,100%,25%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.primary-cta {
    background: orange;
    color: var(--dark-color);
    font-size: 1.2em;
    padding: 15px 35px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.primary-cta:hover {
    background: pink;
    transform: translateY(-3px) scale(1.02);
}


/* --- Responsive Design (Basic Example) --- */
@media (max-width: 992px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        margin-top: 15px;
    }

    .main-nav .nav-links {
        flex-direction: column;
        width: 100%;
        display: none; /* Hidden by default for mobile */
        text-align: center;
    }

    .main-nav .nav-links.active {
        display: flex;
    }

    .main-nav .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .about-brief .container {
        flex-direction: column;
    }

    .about-content, .about-image {
        min-width: unset;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 450px;
    }

    .banner-content h1 {
        font-size: 2.5em;
    }

    .banner-content p {
        font-size: 1em;
    }

    .section-title {
        font-size: 2em;
    }

    .cta-section h2 {
        font-size: 2em;
    }
}