/* About Us Section Styles */

/* Page Container */
#about-section .about-page {
    margin-top: 0px;
    padding-top: 130px;
}

#about-section .page-header {
    text-align: center;
  
 
}

#about-section .page-header h1 {
    background-color: red;
    background-image: linear-gradient(90deg, #E85E53, #C633A3, #8E31BB, #2C68D6, #66ADD6);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0rem;
    font-family: Inter;
    font-size: 99px;
    font-weight: 900;
    text-align: center;
    letter-spacing: -2px;
    line-height: 1;
}

#about-section .page-header .subtitle {
    font-family: 'Overpass', sans-serif;
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    margin-top: 20px;
}

/* About Content */
#about-section .about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 30px;
}

#about-section .about-content p {
    font-family: 'Overpass', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

#about-section .about-content p:last-child {
    margin-bottom: 0;
}

/* Read More Link */
#about-section .about-read-more {
    margin-top: 2rem;
    text-align: center;
}

#about-section .about-blog-link {
    font-family: 'Overpass', sans-serif;
    font-size: 1.1rem;
    color: #2C68D6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#about-section .about-blog-link:hover {
    color: #C633A3;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    #about-section .page-header h1 {
        font-size: 2.5rem;
    }
    
    #about-section .about-page {
        padding-top:100px;
    }

    #about-section {
        padding-top: 20px;
    }

    #about-section .about-content {
        padding: 1rem;
        margin-top: 50px;
    }

    #about-section .about-content p {
        font-size: 1rem;
        text-align: left;
    }
}











