/* =========================
   Service Details Page
   ========================= */
.service-detail-wrapper-atgsrvdtl {
    max-width: 1300px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #e6edf3;
    display: flex;
    flex-direction: column;
    gap: 70px;
    animation: fadeIn 0.8s ease-in-out;
}

/* Hero Section */
.hero-section-atgsrvdtl {
    position: relative;
    height: 450px;
    border-radius: 35px;
    overflow: hidden;
    margin: 20px;
    background: url('/assets/images/services/servicehero.jpg') center/cover no-repeat;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.hero-overlay-atgsrvdtl {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.7));
    z-index: 1;
}
.hero-content-atgsrvdtl {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 20px;
}
.hero-content-atgsrvdtl h1 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4ade80, #22c55e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.slogan-atgsrvdtl {
    font-size: 1.4rem;
    font-weight: 700;
    color: #93c5fd;
    margin-bottom: 20px;
}
.description-atgsrvdtl {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    color: #e5e7eb;
}

/* Details Section */
.section-card-atgsrvdtl {
    margin: 0 20px;
    background: linear-gradient(145deg, rgba(31,41,55,0.95), rgba(22,27,34,0.95));
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    transition: all 0.5s ease;
}
.section-card-atgsrvdtl:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 25px 80px rgba(59,130,246,0.5);
}
.section-heading-atgsrvdtl {
    text-align: center;
    margin-bottom: 40px;
}
.section-heading-atgsrvdtl h2 {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.section-heading-atgsrvdtl p {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* JSON links & buttons inside service content */
.service-text-atgsrvdtl a {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.service-text-atgsrvdtl a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg,#6366f1,#3b82f6,#a855f7);
    transition: width 0.3s ease;
}
.service-text-atgsrvdtl a:hover::after {
    width: 100%;
}
.service-text-atgsrvdtl button {
    background: linear-gradient(135deg,#6366f1,#3b82f6,#a855f7);
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(99,102,241,0.5);
    font-size: 1rem;
    margin: 5px 0;
    display: inline-block;
    white-space: nowrap;
}
.service-text-atgsrvdtl button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(99,102,241,0.6);
}

/* Details Images Grid */
.details-images-grid-atgsrvdtl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.detail-image-card-atgsrvdtl {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.detail-image-card-atgsrvdtl img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.detail-image-card-atgsrvdtl:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(59,130,246,0.5);
}
.detail-image-card-atgsrvdtl:hover img {
    transform: scale(1.08);
}

/* Back Button */
.back-btn-wrapper-atgsrvdtl {
    text-align: center;
    margin: 20px auto;
}
.btn-back-atgsrvdtl {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-back-atgsrvdtl:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 35px rgba(34,197,94,0.6);
}

/* Not Found */
.not-found-atgsrvdtl {
    text-align: center;
    padding: 100px 20px;
}
.not-found-atgsrvdtl h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.btn-primary-atgsrvdtl {
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary-atgsrvdtl:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 35px rgba(59,130,246,0.6);
}

/* Responsive */
@media(max-width:1024px) {
    .details-images-grid-atgsrvdtl { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px) {
    .hero-content-atgsrvdtl h1 { font-size: 2.2rem; }
    .slogan-atgsrvdtl { font-size: 1.2rem; }
    .details-images-grid-atgsrvdtl { grid-template-columns: 1fr; }
    .service-text-atgsrvdtl a { font-size: 0.95rem; }
    .service-text-atgsrvdtl button { font-size: 0.95rem; padding: 8px 18px; }
}
