/* ===== ABOUT US SECTION - TALENT TRAIL ===== */
.dr1042aboutushome {
    padding: 70px 20px;
    background: linear-gradient(135deg, #e0f7fa, #f1f8e9, #fffde7);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    color: #1b4332;
    font-family: 'Poppins', sans-serif;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0d9488;
    margin-bottom: 12px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.15);
}

.english-heading {
    font-size: 1.2rem;
    color: #f97316;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 16px;
}

.service-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #dc2626;
    margin-top: 20px;
}

.service-section p {
    margin-top: 8px;
    line-height: 1.6;
    color: #374151;
}

.highlight-box {
    background: #fef3c7;
    border-left: 5px solid #f59e0b;
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.whatsapp-button, .call-button {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.whatsapp-button {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.call-button {
    background: linear-gradient(45deg, #f97316, #dc2626);
    color: #fff;
    margin-left: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.whatsapp-button:hover, .call-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.about-main-image img {
    max-width: 460px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: #fff;
    padding: 8px;
    transition: transform 0.35s ease;
}

.about-main-image img:hover { transform: scale(1.04); }

.about-gallery {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.about-gallery img {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    border-radius: 14px;
    object-fit: cover;
    background: #fff;
    padding: 6px;
    box-shadow: 0 5px 14px rgba(0,0,0,0.15);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.about-gallery img:hover { transform: scale(1.08); }

/* Fade-in Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .about-main-image img { max-width: 85%; }
    .about-gallery img { width: 120px; height: 120px; }
}