
/* ---------- ABOUT SECTION ---------- */
.about-section {
    background-color: #06071B;
    color: #D0D3E0;
    padding: 150px 9%;

    background: 
    radial-gradient(circle at 20% 60%, rgba(18, 74, 243, 0.2), transparent 30%),
    
    #06071B;
  
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
}

.about-subtitle {
    color: #4471F5;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #C8CAD6;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 1200px) {
   .about-content {
    padding-left: 50px;
}
}
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-content {
        text-align: center;
    }

    .about-image img {
        max-width: 400px;
        margin: 0 auto;
    }
    .about-section {
    background: 
    radial-gradient(circle at 50% 30%, rgba(18, 74, 243, 0.2), transparent 30%),
    #06071B;
}
}
@media (max-width: 500px) {
  .about-title {
    font-size: 18px;
}
.about-content p {
    font-size: 14px;
}
 .about-image img {
        max-width: 250px;
        margin: 0 auto;
    }
}