body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}
#sec-0 {
    background: none !important;
    background-color: transparent !important;
    margin: 0;
    padding: 0;
    min-height: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
#sec-0 header:last-of-type {
    background-color: transparent !important;
}
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../Images/banner.jpg) no-repeat center center/cover;
    text-align: center;
    padding: 8rem 0 3rem;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.page-hero p {
    color: #ccc;
    font-size: 1.2rem;
}
.page-section {
    padding: 4rem 0;
}
.page-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.page-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #FFCB0F;
    margin: 10px auto 0;
}
.page-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
}
.page-section-alt {
    background-color: #f5f5f5;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-detail-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.service-detail-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-detail-card .card-body {
    padding: 1.5rem;
}
.service-detail-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.8rem;
}
.service-detail-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.project-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 260px;
    background: #1A1C27;
}
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-card:hover img {
    transform: scale(1.05);
}
.project-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.project-card:hover .overlay {
    transform: translateY(0);
}
.project-card .overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.project-card .overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
    color: #ddd;
}
.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
    background: linear-gradient(135deg, #1a1a2e, #2d2d4a);
}
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-detail-item i {
    font-size: 1.5rem;
    color: #C79E23;
    width: 50px;
    height: 50px;
    background: rgba(255,203,15,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.2rem;
}
.contact-detail-item p {
    font-size: 0.9rem;
    color: #666;
}
.contact-form-wrap {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-form-wrap h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.5rem;
}
.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    outline: none;
    border-color: #FFCB0F;
}
.contact-form-wrap textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form-wrap button {
    background: #C79E23;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
}
.contact-form-wrap button:hover {
    background: #a8841e;
}
.map-wrap {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    background: #eee;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A1C27;
    color: #FFCB0F;
    font-size: 1.1rem;
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

#galleryFilter a.active {
    background-color: #1A1C27 !important;
}
#galleryFilter a {
    display: inline-block;
    padding: 3px 20px 5px;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.65s ease;
    font-size: 0.85rem;
}
#galleryFilter a:hover {
    background-color: #1A1C27;
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 2rem; }
    .page-hero p { font-size: 0.95rem; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 6rem 0 2.5rem; min-height: 35vh; }
}
@media (min-width: 576px) and (max-width: 767px) {
    .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .project-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card { height: 220px; }
    .page-section h2 { font-size: 1.5rem; }
}
@media (max-width: 575px) {
    .page-hero {
        padding: 5rem 0 2rem;
        min-height: 30vh;
    }
    .page-hero h1 {
        font-size: 1.6rem;
    }
    .page-hero p {
        font-size: 0.85rem;
    }
    .page-section {
        padding: 2.5rem 0;
    }
    .page-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .service-detail-card img {
        height: 180px;
    }
    .project-grid {
        gap: 1rem;
    }
    .project-card {
        height: 200px;
    }
    .contact-info-grid {
        gap: 1.5rem;
    }
    .contact-form-wrap {
        padding: 1.2rem;
    }
    .contact-form-wrap h3 {
        font-size: 1.1rem;
    }
    .map-wrap {
        height: 220px;
    }
}
