/* --- Global Styles --- */
body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}



/* --- Hero Section --- */
/* --- Dedicated Styling for About Hero Section --- */
.about-hero-section {
    height: 100vh; /* Purre screen par load hoga */
    width: 100%;
    /* YAHAN PASTE KAREIN APNI IMAGE KA PATH */
    background-image: url('Ongoing (1).jpeg'); 
    background-size: cover; /* Image ko area ke mutabiq expand karega */
    background-position: center; /* Image center se dikhegi */
    background-repeat: no-repeat;
    
    /* Text readability ke liye dark cover */
    position: relative;
}

/* Adding a subtle dark shade over the image */
.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark darkening cover */
    z-index: 1;
}

.hero-text-overlay {
    position: relative;
    z-index: 2; /* Text ko image ke upar lane ke liye */
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Copying typography from original design */
.sub-heading-about {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase; /* as in image_fea65b */
    color: #fff;
    margin-bottom: 10px;
}

.main-title-about {
    font-size: 60px; /* Bada impact */
    letter-spacing: 18px;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

.hero-tagline-about {
    font-size: 12px;
    letter-spacing: 3px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
    margin: 0 auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .main-title-about {
        font-size: 35px;
        letter-spacing: 8px;
    }
}

/* --- Content Grid --- */
.content-grid-section {
    padding: 120px 0;
    background-color: #0a0a0a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-main-img {
    width: 100%;
    border: 1px solid #222;
}

.grid-title {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.grid-text {
    color: #888;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 20px;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #000;
    text-align: center;
}

.test-heading-main {
    font-size: 16px;
    letter-spacing: 12px;
    font-weight: 200;
    margin-bottom: 10px;
}

.test-sub {
    font-size: 11px;
    color: #666;
    margin-bottom: 60px;
}

.testimonial-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.test-card {
    background: #0d0d0d;
    padding: 40px;
    border: 1px solid #1a1a1a;
    text-align: left;
}

.test-message {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
    height: 80px;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.client-title {
    font-size: 11px;
    color: #555;
}

@media (max-width: 900px) {
    .about-grid, .testimonial-cards-grid {
        grid-template-columns: 1fr;
    }
}