/* --- Services Page Wrapper: To prevent conflicts with Header/Footer --- */

.services-page-wrapper {
    --primary-blue: #005a8d;
    --accent-cyan: #00a8cc;
    --text-gray: #555;
    --light-bg: #f4f7f9;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.services-page-wrapper .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.services-page-wrapper .section { padding: 60px 0; }
.services-page-wrapper .bg-light { background-color: var(--light-bg); }
.services-page-wrapper .text-center { text-align: center; }

/* Main Title */
.services-page-wrapper .main-title {
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-weight: 700;
}
.services-page-wrapper .main-title span { color: var(--accent-cyan); }

/* Service Cards Grid */
.services-page-wrapper .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.services-page-wrapper .s-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.services-page-wrapper .s-card:hover { transform: translateY(-8px); }

.services-page-wrapper .s-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.services-page-wrapper .s-card-content {
    padding: 25px;
    border-top: 5px solid var(--accent-cyan);
}

.services-page-wrapper .s-card-content h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Detail Sections */
.services-page-wrapper .flex-row, 
.services-page-wrapper .flex-row-reverse {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 40px;
}

.services-page-wrapper .flex-row-reverse { flex-direction: row-reverse; }

.services-page-wrapper .service-detail-img { flex: 1; }
.services-page-wrapper .service-detail-text { flex: 1.2; }

.services-page-wrapper .service-detail-img img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
}

.services-page-wrapper .icon-header {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-page-wrapper .service-detail-text p {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Accordion Style Links */
.services-page-wrapper .accordion-item {
    background: white;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: background 0.2s;
}

.services-page-wrapper .accordion-item:hover {
    background: var(--accent-cyan);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-page-wrapper .flex-row, 
    .services-page-wrapper .flex-row-reverse {
        flex-direction: column;
    }
    .services-page-wrapper .main-title { font-size: 1.5rem; }
}
.gallery-hero {
    height: 350px;
    background: url('./images/contactus.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed; /* Parallax effect */
}

.gallery-hero .overlay {
    background: rgba(0, 30, 60, 0.6); /* Deep blue overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}