/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.about-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }

/* Content Layout */
.about-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.mission-vision {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.content-box {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Founder Section */
.founder-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.founder-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #007bff;
}

.founder-info blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #007bff;
    padding-left: 15px;
    margin-top: 20px;
}

/* Video Section */
.about-video { text-align: center; margin-bottom: 60px; }
.video-wrapper {
    max-width: 800px;
    margin: 20px auto;
    aspect-ratio: 16/9;
}
.video-wrapper iframe { width: 100%; height: 100%; border-radius: 12px; }

/* Responsive */
@media (max-width: 768px) {
    .founder-section { flex-direction: column; text-align: center; }
}
/* Grid for What We Do */
.what-we-do {
    margin: 50px 0;
    text-align: center;
}

.what-we-do h2 { margin-bottom: 30px; font-size: 2rem; }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.grid-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.grid-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.grid-item h4 { color: #007bff; margin-bottom: 10px; }

/* Why Us Section */
.why-us {
    background: #f4f7f6;
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
}

.why-us h3 { margin-bottom: 20px; }

.why-us ul { list-style: none; }

.why-us ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.why-us ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}
.header-title {
    font-size: 1.5rem; /* smaller size */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
