/* ================================
   ABOUT PAGE STYLES
   ================================ */

/* About Banner */
.about-banner {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 400px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 80px 50px;
    display: flex;
    align-items: center;
}

.about-banner::before{
    content:'';
    background:linear-gradient(90deg,rgba(218, 27, 29, 1) 50%, rgba(255, 255, 255, 0.3) 100%);
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:-1;
}



.about-banner-image{
    background-image: url('../img/about-us/banner.png');
    height:100%;
    width:50%;
    background-position: center;
    background-size:cover;
    background-repeat: no-repeat;
    position: absolute;
    right:0;
    top:0;
    z-index:-2;
}

.about-banner-content {
    max-width: 1400px;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.about-banner-title {
    font-family: 'Gotham', sans-serif;
    font-size: clamp(48px, 8vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1;
}

.about-banner-subtitle {
    font-family: 'Gotham', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: white;
    line-height: 1.5;
    opacity: 0.95;
}


/* ================================
   Why Choose Todo Media Section
   ================================ */
.why-choose-section {
    padding: 80px 50px;
    background-color: var(--bg-light);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-heading {
    font-family: 'Gotham', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Blue Card */
.why-choose-card {
    background: var(--primary-blue);
    border-radius: 20px;
    padding: 40px 35px;
    flex: 0 0 45%;
    max-width: 45%;
}

.why-choose-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.why-choose-list li img {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.btn-why-choose-contact {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid white;
    border-radius: 30px;
    color: var(--primary-blue);
    background: white;
    font-family: 'Gotham', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    margin-top: 10px;
}

.btn-why-choose-contact:hover {
    background: transparent;
    color: white;
}

/* Badges */
.why-choose-badges {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.badge-item {
    text-align: center;
    max-width: 200px;
}

.badge-item img {
    width: 150px;
    height: auto;
    margin-bottom: 16px;
}

.badge-item p {
    font-family: 'Gotham', sans-serif;
    font-size: 14px;
    color: var(--primary-blue);
    line-height: 1.5;
}

/* ================================
   Core Values Section
   ================================ */
.core-values-section {
    padding: 20px 50px 80px;
    background-color: var(--bg-light);
}

.core-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.core-values-heading {
    font-family: 'Gotham', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.core-value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.core-value-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.core-value-card:hover .core-value-icon {
    transform: scale(1.08);
}

.core-value-icon i {
    font-size: 48px;
    color: white;
}

.core-value-title {
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
    line-height: 1.3;
}


/* ================================
   People Behind Todo Media Section
   ================================ */
   .people-section {
    padding: 80px 50px 200px;;
    background-size: cover;
    background-repeat: no-repeat;
    width:100%;
    position: relative;
    overflow: hidden;
    
    }

    .people-section::before{
        content: '';
        background-color: #E9DA00;
        border-radius: 50% 50% 0 0;
        position: absolute;
        z-index:-2;
        width:140%;
        height:100%;
        margin:auto;
        top: 0;
        left:-20%;
    }

    .people-section::after{
        position: absolute;
        content: '';
        width:140%;
        border-radius: 100%;
        height:50%;
        bottom:-30%;
        left:-20%;
        
        background-color: white;;

    }
    

.people-container {
    max-width: 1200px;
    margin: 0 auto;
}

.people-heading {
    font-family: 'Gotham', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.people-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Featured Person - Left Side */
.featured-person {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.featured-person-image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
    position: relative;
}

.featured-person-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-person-info {
    text-align: center;
    padding: 20px 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    position: absolute;
    bottom: 0;
    left:40px;
    display: flex;
    flex-direction: column;
}

.featured-person-name {
    font-family: 'Gotham', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    order:1;
    filter: drop-shadow(5px 5px 10px #000000);
}

.featured-person-info::before{
    content:'';
    height:5px;
    width:100%;
    order:2;
    background-color:white;
    border-radius: 20px;
}

.featured-person-title {
    font-family: 'Gotham', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    order:2;
}

/* Team Grid - Right Side */
.team-grid-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.team-member {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}
/* 
.team-member::before{
    content:'';
    z-index:-1;
    background-color:white;
    border-radius: 20px;
    position: absolute;
    width:100%;
    height:90%;
    bottom: 0;
    left:0;
} */

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-see-more {
    display: inline-block;
    padding: 12px 40px;
    background: white;
    color: #000;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ================================
   Responsive Styles
   ================================ */

@media (max-width: 1024px) {
    .people-content {
        gap: 50px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .people-section {
        padding: 60px 30px;
    }

    .people-section::before{
        width:180%;
        left:-40%;
    }
    
    .people-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .featured-person {
        flex: none;
        width: 100%;
    }
    
    .team-grid-wrapper {
        width: 100%;
        align-items: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .people-section::after{
        display: none;

    }

    .featured-person-info{
        left:initial;
    }


}

@media (max-width: 480px) {
    .people-section {
        padding: 50px 20px;
    }
    
    .people-heading {
        margin-bottom: 40px;
    }
    
    .featured-person-image {
        max-width: 300px;
    }
    
    .featured-person-info {
        padding: 15px 30px;
    }
    
    .featured-person-name {
        font-size: 22px;
    }
    
    .featured-person-title {
        font-size: 16px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .btn-see-more {
        padding: 10px 30px;
        font-size: 14px;
    }
}

/* ================================
   Responsive Styles
   ================================ */

/* 1240px */
@media (max-width: 1240px) {
    .about-banner-gradient {
        padding: 0 60px;
    }

    .why-choose-container {
        padding: 0 60px;
        gap: 60px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .about-banner {
        height: 50vh;
        min-height: 350px;
    }

    .about-banner-gradient {
        padding: 0 40px;
        background: linear-gradient(90deg, rgba(230, 0, 0, 0.95) 0%, rgba(230, 0, 0, 0.85) 100%);
    }

    .why-choose-section {
        padding: 60px 30px;
    }

    .why-choose-content {
        flex-direction: column;
        gap: 40px;
    }

    .why-choose-card {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .why-choose-badges {
        gap: 30px;
    }

    .badge-item img {
        width: 120px;
    }

    .core-values-section {
        padding: 60px 30px;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .core-value-icon {
        width: 120px;
        height: 120px;
    }

    .core-value-icon i {
        font-size: 40px;
    }
}

/* 480px */
@media (max-width: 480px) {
    .about-banner {
        height: 45vh;
        min-height: 300px;
    }

    .about-banner::before{
        background: linear-gradient(90deg, rgba(218, 27, 29, 0.8) 50%, rgba(255, 255, 255, 0.3) 100%);
    }

    .about-banner-content{
        width:100%;
    }

    .about-banner-image{
        width:100%;
    }

    .about-banner-gradient {
        padding: 0 20px;
    }

    .why-choose-section {
        padding: 50px 20px;
    }

    .why-choose-heading {
        margin-bottom: 30px;
    }

    .why-choose-card {
        padding: 30px 25px;
    }

    .why-choose-list li {
        font-size: 14px;
    }

    .why-choose-list li img {
        width: 40px;
    }

    .why-choose-badges {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .core-values-section {
        padding: 50px 20px;
    }

    .core-values-heading {
        margin-bottom: 40px;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .core-value-icon {
        width: 100px;
        height: 100px;
    }

    .core-value-icon i {
        font-size: 34px;
    }

    .core-value-title {
        font-size: 13px;
    }
}

