        .container { max-width: 1200px; margin: 0 auto; text-align: center; }

        /* Header Section */
        .header { margin-bottom: 60px; }
        .header h1 { font-size: 2.8rem; color: #2d3436; margin-bottom: 15px; }
        .header p { color: #636e72; font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

        /* Grid Layout */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        /* Card Styling */
        .card {
            background: #ffffff;
            padding: 10px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: left;
            border-bottom: 4px solid transparent;
        }

        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-bottom: 4px solid #0984e3;
        }

        .icon { font-size: 30px; margin-bottom: 0px; display: block; }
        .card h3 { font-size: 1.6rem; margin-bottom: 15px; color: #2d3436; }
        .card p { color: #636e72; line-height: 1.7; font-size: 12px; }

        /* Responsive Adjustment */
        @media (max-width: 768px) {
            .header h1 { font-size: 2rem; }
        }
        .about-section {
    padding: 80px 20px;
    background-color: #fdfdfd;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* मोबाइल के लिए */
}

.about-image { flex: 1; min-width: 300px; }
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content { flex: 1; min-width: 300px; }

.badge {
    background: #e1f5fe;
    color: #0288d1;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin: 20px 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* रिस्पॉन्सिव सेटिंग */
@media (max-width: 768px) {
    .about-container { flex-direction: column; text-align: center; }
}
.about-content p{
    text-align: justify;
}
/* Section Styling */
.categories-section {
    padding: 80px 20px;
    background: #f8faff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #1e293b;
}

.category-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Card Design */
.cat-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 180px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Hover Effect */
.cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.icon-box {
    font-size: 2.2rem;
    background: #eff6ff;
    padding: 8px;
    border-radius: 12px;
    font-size: 20px;
}

.cat-card span {
    font-weight: 600;
    color: #334155;
    font-size: 1.05rem;
}