.border-bottom-none {
    border-bottom: none !important;
}

/* Nandini Partnership */
.nandini-section {
    padding: 80px 0;
    background: white;
}

.nandini-card {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    padding: 60px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.nandini-badge {
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    color: #ff6f00;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nandini-products {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.nandini-product {
    background: white;
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.nandini-product i {
    font-size: 2rem;
    color: #ff6f00;
    margin-bottom: 10px;
}

/* Presence Section */
.presence-section {
    padding: 80px 0;
    background: #2d5016;
    color: white;
}

.presence-section .section-title {
    color: white;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.office-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.office-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.office-card.headquarters {
    background: linear-gradient(135deg, #4a7c2c 0%, #2d5016 100%);
    border: 2px solid #a8d884;
}

.office-card i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.office-tag {
    background: #a8d884;
    color: #2d5016;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
    background: white;
}

.commitment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.commitment-card {
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.commitment-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a7c2c 0%, #2d5016 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.commitment-card h3 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.commitment-card p {
    color: #666;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .distribution-content,
    .nandini-card,
    .commitment-cards {
        grid-template-columns: 1fr;
    }

    .business-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
}