.aboutinfo {
    padding: 10px 20px;
    text-align: right;
    border-radius: 15px;
    margin-bottom: 50px;
}
.aboutinfo h2 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: capitalize;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.aboutinfo p {
    font-size: 1.3em;
    opacity: 0.9;
    font-style: italic;
}
.aboutus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    padding: 20px 0;
    margin-bottom: 50px;
    margin-top: 0px;
}
.aboutdetail {
    grid-column: 1;
    grid-row: 1;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.whatwedo {
    grid-column: 1;
    grid-row: 2;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whoarewe {
    grid-column: 2;
    grid-row: 1 / 3;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutdetail:hover,
.whatwedo:hover,
.whoarewe:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.aboutdetail h2,
.whatwedo h2,
.whoarewe h2 {
    font-size: 2em;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aboutdetail h2 i,
.whatwedo h2 i,
.whoarewe h2 i {
    font-size: 0.9em;
}

.aboutdetail p,
.whatwedo p,
.whoarewe p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.aboutdetail ul,
.whatwedo ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.aboutdetail ul li,
.whatwedo ul li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 30px;
    font-size: 1.05em;
}

.aboutdetail ul li::before,
.whatwedo ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.3em;
}

/* Company Bio Section */
.cobio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
    margin-bottom: 50px;
}

.coverview {
    grid-column: 1 / 3;
    grid-row: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border-left: 5px solid #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coverview h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.coverview p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.covision,
.comission {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.covision::before,
.comission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.covision:hover,
.comission:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.covision h2,
.comission h2 {
    font-size: 1.8em;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: bold;
}

.covision p,
.comission p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #666;
}

.covision i,
.comission i {
    font-size: 3em;
    color: #667eea;
    margin-bottom: 20px;
    opacity: 0.7;
}

/* Team Section */
.team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px 0;
    margin-bottom: 50px;
}

.teamname {
    grid-column: 1 / 5;
    grid-row: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.teamname h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.teamname p {
    font-size: 1.2em;
    opacity: 0.9;
}

.member {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #667eea;
}

.member .avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 3em;
}

.member h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

.member .position {
    color: #667eea;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.member p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.member .social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member .social-links a {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s ease;
}

.member .social-links a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

/* Industries Section */
.main > h1 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin: 50px 0 30px;
    text-transform: capitalize;
    font-weight: bold;
}

/* Partners/Industries Grid */
.partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8, 1fr));
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 50px;
}

.partner {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.partner:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.partner i {
    font-size: 3em;
    color: #667eea;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.partner:hover i {
    color: white;
}

.partner h3 {
    font-size: 1.1em;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.partner:hover h3 {
    color: white;
}

.partner p {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.partner:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .aboutus {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .aboutdetail,
    .whatwedo,
    .whoarewe {
        grid-column: 1;
        grid-row: auto;
    }

    .cobio {
        gap: 20px;
    }

    .team {
        grid-template-columns: repeat(2, 1fr);
    }

    .teamname {
        grid-column: 1 / 3;
    }

    .partners {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .aboutinfo {
        padding: 50px 20px;
    }

    .aboutinfo h2 {
        font-size: 2.2em;
    }

    .aboutinfo p {
        font-size: 1.1em;
    }

    .aboutdetail,
    .whatwedo,
    .whoarewe {
        padding: 25px;
    }

    .cobio {
        grid-template-columns: 1fr;
    }

    .coverview {
        grid-column: 1;
        padding: 30px 20px;
    }

    .main > h1 {
        font-size: 2em;
    }

    .team {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .teamname {
        grid-column: 1 / 3;
        padding: 30px 20px;
    }

    .teamname h2 {
        font-size: 2em;
    }

    .partners {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .partner {
        min-height: 150px;
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .aboutinfo {
        padding: 40px 15px;
    }

    .aboutinfo h2 {
        font-size: 1.8em;
    }

    .aboutinfo p {
        font-size: 1em;
    }

    .aboutdetail,
    .whatwedo,
    .whoarewe {
        padding: 20px;
    }

    .aboutdetail h2,
    .whatwedo h2,
    .whoarewe h2 {
        font-size: 1.5em;
    }

    .coverview,
    .covision,
    .comission {
        padding: 20px;
    }

    .coverview h2 {
        font-size: 1.7em;
    }

    .covision h2,
    .comission h2 {
        font-size: 1.5em;
    }

    .main > h1 {
        font-size: 1.6em;
        margin: 30px 0 20px;
    }

    .team {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .teamname {
        grid-column: 1;
        padding: 25px 15px;
    }

    .teamname h2 {
        font-size: 1.7em;
    }

    .member {
        padding: 20px 15px;
    }

    .member .avatar-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5em;
    }

    .member h3 {
        font-size: 1.1em;
    }

   .partner i {
        font-size: 2.5em;
    }

    .partner h3 {
        font-size: 1em;
    }
}