/* ===================================
   ABOUT SECTION STYLES
   =================================== */

.about {
    background: var(--bg-color-1);
    width: 100%;
    padding: 6rem 1rem;
    position: relative;
    left: 0;
    right: 0;
}

.about-content {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about .content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-color-1);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
}

.about .content h2 span {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.about .content h2 img {
    height: 1.1em;
    width: auto;
    vertical-align: middle;
    object-fit: contain;
}

.about .tara {
    margin-bottom: 12px;
}

/* Responsive h2 image */
@media (max-width: 768px) {
    .about .content h2 img {
        margin-top: 5px;
        height: 1.1em;
    }
}

@media (max-width: 600px) {
    .about .content h2 img {
        margin-top: 5px;
        height: 1.1em;
    }
}

@media (max-width: 480px) {
    .about .content h2 img {
        margin-top: 5px;
        height: 1.1em;
    }
}

.about .content > p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary-1);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem auto;
    max-width: var(--max-width);
    width: 100%;
    padding: 0 2rem;
}

.about-item {
    background: var(--card-bg-1);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color-1);
    text-align: center;
}

.about-item i {
    font-size: 2.5rem;
    color: var(--primary-color-1);
    margin-bottom: 1rem;
    display: block;
}


.about-icon i {
    font-size: 2rem;
    color: white;
}

.about-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary-1);
    margin-bottom: 1rem;
}

.about-item p {
    font-size: 1rem;
    color: var(--text-secondary-1);
    line-height: 1.6;
    margin: 0;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin: 4rem auto;
    max-width: var(--max-width);
    width: 100%;
    padding: 0 2rem;
}

.about-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg-1);
    border-radius: 12px;
    border: 1px solid var(--border-color-1);
}

.about-stats .stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color-1);
    margin-bottom: 0.5rem;
}

.about-stats .stat-item p {
    font-size: 1rem;
    color: var(--text-secondary-1);
    margin: 0;
    font-weight: 500;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large Desktop - 1400px and up */
@media (min-width: 1400px) {
    .about-content {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .about-stats {
        gap: 2.5rem;
    }
}

/* Desktop - 1025px to 1399px */
@media (max-width: 1399px) {
    .about-content {
        padding: 0 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .about-item {
        padding: 2rem;
    }
}

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .about {
        padding: 5rem 1rem;
    }
    
    .about-content {
        padding: 0 2rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablet Portrait - 768px to 1023px */
@media (max-width: 768px) {
    .about {
        padding: 4rem 1rem;
    }
    
    .about-content {
        padding: 0 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    
    .about-item {
        padding: 1.5rem;
    }
    
    .about-icon {
        width: 70px;
        height: 70px;
    }
    
    .about-icon i {
        font-size: 1.8rem;
    }
    
    .about-item h3 {
        font-size: 1.3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-stats .stat-item {
        padding: 1.5rem;
    }
    
    .about-stats .stat-item h4 {
        font-size: 2rem;
    }
}

/* Mobile Large - 600px to 767px */
@media (max-width: 600px) {
    .about {
        padding: 3rem 1rem;
    }
    
    .about-content {
        padding: 0 1.25rem;
    }
    
    .about-grid {
        gap: 1.25rem;
        margin: 2rem 0;
    }
    
    .about-item {
        padding: 1.25rem;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-icon i {
        font-size: 1.5rem;
    }
    
    .about-item h3 {
        font-size: 1.2rem;
    }
    
    .about-item p {
        font-size: 0.95rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 3rem 0 1rem;
    }
    
    .about-stats .stat-item {
        padding: 1.25rem;
    }
    
    .about-stats .stat-item h4 {
        font-size: 1.8rem;
    }
    
    .about-stats .stat-item p {
        font-size: 0.9rem;
    }
}

/* Mobile Small - 480px and below */
@media (max-width: 480px) {
    .about {
        padding: 2.5rem 0.75rem;
    }
    
    .about-content {
        padding: 0 1rem;
    }
    
    .about .content h2 {
        margin-bottom: 1.5rem;
    }
    
    .about .content > p {
        margin-bottom: 3rem;
    }
    
    .about-grid {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .about-item {
        padding: 1rem;
    }
    
    .about-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .about-icon i {
        font-size: 1.3rem;
    }
    
    .about-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .about-item p {
        font-size: 0.9rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2.5rem 0 1rem;
    }
    
    .about-stats .stat-item {
        padding: 1rem;
    }
    
    .about-stats .stat-item h4 {
        font-size: 1.6rem;
    }
    
    .about-stats .stat-item p {
        font-size: 0.85rem;
    }
}

/* Ultra Small Mobile - 320px and below */
@media (max-width: 320px) {
    .about {
        padding: 2rem 0.5rem;
    }
    
    .about-content {
        padding: 0 0.75rem;
    }
    
    .about-item {
        padding: 0.875rem;
    }
    
    .about-icon {
        width: 45px;
        height: 45px;
    }
    
    .about-icon i {
        font-size: 1.2rem;
    }
    
    .about-stats .stat-item {
        padding: 0.875rem;
    }
}