/* About Us Section */
.about-section {
    padding: 120px 24px;
    background: #ffffff;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 500px;
}

.about-label button {
   font-size: 16px;
    color: #141515;
    margin-bottom: 20px;
    padding: 6px 12px;
    display: inline-block;
    border-radius: 60px;
    /* Gradient border workaround */
    border: 1px solid transparent;
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(180deg, rgba(140,170,254,0) 0%, #8CAAFE 100%) border-box;
}


.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: #141515;
    margin-bottom: 32px;
    line-height: 1.2;
}

.about-description {
    font-size: 20px;
    line-height: 1.7;
    color: #2D2D30;
    margin-bottom: 48px;
}

.mission-section {
    margin-top: 48px;
}

.mission-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #141515;
    margin-bottom: 16px;
    line-height: 1.3;
}

.mission-description {
    font-size: 20px;
    line-height: 1.7;
    color: #2D2D30;
}

/* Robot Illustration */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
  
}
.robot-image {
    max-width: 100%;
    height: auto;
}

.view-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #3E6DEE;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.view-more-btn:hover {
  background: #2d4dbd;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        gap: 60px;
    }
    
  
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .about-content {
        max-width: 100%;
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    
    
    .about-section {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
  
    
    .about-section {
        padding: 60px 16px;
    }
}