.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease;
}
.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}
.hero-title span {
    color: var(--primary-color);
    position: relative;
}
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(245, 158, 11, 0.3);
    z-index: -1;
}
.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-color);
    margin-bottom: 30px;
}
.hero-image {
    flex: 1;
    position: relative;
    animation: fadeIn 1.5s ease;
}
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.tech-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(245, 158, 11, 0.1));
    position: relative;
    margin: 0 auto;
    animation: rotate 20s linear infinite;
}
.tech-circle::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.tech-circle-small {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(245, 158, 11, 0.1));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateReverse 15s linear infinite;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }}
@keyframes rotateReverse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }}
.about-section {
    padding: 10px 0;
    background-color: white;
}
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-text {
    flex: 1;
}
.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.05rem;
}
.global-reach h3 {
    margin: 30px 0 15px;
    color: var(--primary-color);
    font-weight: bold;
}
.countries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.country-tag {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-weight: bold;
}
.country-tag:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}
.about-image {
    flex: 1;
}
.image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}
.team-photo {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-photo::before {
    content: 'Our Team';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.5;
}
.frame-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px 0 30px 0;
    z-index: -1;
    animation: pulse 2s infinite alternate;
}
@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 0.8;
    }
    to {
        transform: scale(1.05);
        opacity: 1;
    }}
.leadership-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}
.leadership-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.leader-card {
    flex: 1;
    max-width: 260px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.leader-photo {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.leader-card:hover .leader-photo img {
    transform: scale(1.05);
}
.leader-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.leader-1 {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
}
.leader-2 {
    background: linear-gradient(45deg, #b45309, #f59e0b);
}
.leader-info {
    padding: 6px;
    text-align: center;
}
.leader-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}
.position {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.7rem;
}
.bio {
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 0.7rem;
}
.quote {
    font-style: italic;
    font-size: 0.7rem;
    color: var(--gray-color);
    padding: 10px;
    border-left: 3px solid var(--secondary-color);
    margin: 10px 0;
    background-color: #f9fafb;
    border-radius: 0 5px 5px 0;
}
.award-badge {
    display: inline-flex;
    align-items: center;
    background-color: #fef3c7;
    color: #b45309;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.70rem;
    font-weight: 600;
}
.award-badge i {
    margin-right: 8px;
}
.advantages-section {
    padding: 100px 0;
    background-color: white;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}
.advantage-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 15px;
    padding: 25px 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}
.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    color: white;
}
.advantage-card:hover::before {
    opacity: 1;
}
.advantage-card:hover h3 {
    color: white;
}
.advantage-card:hover .advantage-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}
.advantage-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.advantage-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1rem;
}
.advantage-card p {
    line-height: 1.7;
    font-size: 0.8rem;
}
.awards-showcase {
    text-align: center;
    margin-top: 60px;
}
.awards-showcase h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}
.awards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.award {
    display: flex;
    align-items: center;
    background-color: #f8fafc;
    padding: 15px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.award:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.award i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--secondary-color);
    font-weight: bold;
}
.award:nth-child(1) i {
    color: #b45309;
}
.award:nth-child(2) i {
    color: #1e40af;
}
.success-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}
.case-study {
    display: flex;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.case-study-image {
    position: relative;
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}
.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 20px;
}
.stat {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}
.case-study-content {
    flex: 1;
    padding: 40px;
}
.case-study-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.challenge {
    font-style: italic;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}
.solution h4, .results h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}
.solution ul, .results ul {
    margin-bottom: 30px;
    padding-left: 20px;
}
.solution li, .results li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.results li {
    display: flex;
    align-items: center;
}
.results li i {
    margin-right: 10px;
    color: var(--secondary-color);
}