/* ===========================
   IMAGE & ICON STYLES
   =========================== */

.logo-image {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.hero-banner {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 50%, #00a4ef 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-banner-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Icon Styles */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 164, 239, 0.1));
    border: 2px solid rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .icon-container {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(0, 164, 239, 0.2));
    border-color: rgba(0, 164, 239, 0.6);
    transform: scale(1.1);
}

svg.icon {
    width: 40px;
    height: 40px;
    color: #0066cc;
    transition: color 0.3s ease;
}

.service-card:hover svg.icon {
    color: #00a4ef;
}

/* Section Background Images */
.section-bg-pattern {
    position: relative;
    overflow: hidden;
}

.section-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 164, 239, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Team Photo Placeholder */
.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0066cc, #00a4ef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

/* Service Illustration */
.service-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Badge/Badge Images */
.certification-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc, #00a4ef);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    margin: 1rem;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.certification-badge span {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Partner Logos */
.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.partner-logo {
    width: 120px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    color: #0066cc;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.partner-logo:hover {
    background-color: #f0f5ff;
    border-color: #0066cc;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
    transform: translateY(-3px);
}

/* Responsive Icon Container */
@media (max-width: 768px) {
    .icon-container {
        width: 70px;
        height: 70px;
    }

    svg.icon {
        width: 35px;
        height: 35px;
    }

    .team-photo {
        width: 150px;
        height: 150px;
    }

    .partner-logo {
        width: 100px;
        height: 70px;
        font-size: 0.8rem;
    }
}

/* Image Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Stats with Icons */
.stat-with-icon {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc, #00a4ef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-content h3 {
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Certifications Section */
.certifications {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.certifications h2 {
    color: var(--primary);
}
