/* Core Variables */
:root {
    --primary: #044168;
    --secondary: #0069AA;
    --accent: #00A9FF;
    --text-primary: #2C3E50;
    --border-color: #E5E9EF;
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: white;
    padding: 70px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(var(--accent) 2px, transparent 2px);
    background-size: 30px 30px;
}

/* About Section */
.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-badge {
    display: inline-block;
    background-color: rgba(0, 169, 255, 0.1);
    color: var(--accent);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.professional-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-5px);
}

/* Service Cards */
.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 169, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--accent);
    color: white;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stats-text {
    font-size: 1rem;
    color: var(--text-primary);
}

/* Approach Section */
.approach-item {
    margin-bottom: 25px;
    position: relative;
    padding-left: 60px;
}

.approach-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 169, 255, 0.15);
}

.approach-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.approach-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Platform Cards */
.platform-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
    color: var(--text-primary);
}

.platform-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 169, 255, 0.1);
    border-radius: 10px;
    margin-right: 20px;
    font-size: 1.8rem;
    color: var(--accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.platform-card:hover .platform-icon {
    background-color: var(--accent);
    color: white;
}

.platform-info {
    flex-grow: 1;
}

.platform-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.platform-info p {
    color: #6c757d;
    margin-bottom: 10px;
}

.platform-cta {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 600;
    gap: 8px;
}

.platform-card:hover .platform-cta {
    color: var(--secondary);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-primary-custom:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.btn-accent-custom {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-accent-custom:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Utility Classes */
.bg-primary-custom {
    background-color: var(--primary);
}

.text-accent-custom {
    color: var(--accent) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive */
@media (max-width: 991.98px) {
    .page-header {
        padding: 50px 0 30px;
    }
    
    h1.fw-bold {
        font-size: 2.5rem;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .approach-img {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .service-card {
        margin-bottom: 20px;
    }
    
    .stats-counter {
        font-size: 2rem;
    }
    
    .stats-text {
        font-size: 0.9rem;
    }
    
    .platform-card {
        margin-bottom: 20px;
    }
    
    .approach-item {
        padding-left: 50px;
    }
    
    .approach-number {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    h1.fw-bold {
        font-size: 2rem;
    }
    
    h2.fw-bold {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .platform-card {
        flex-direction: column;
        text-align: center;
    }
    
    .platform-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .approach-item {
        padding-left: 40px;
    }
    
    .approach-number {
        font-size: 1.75rem;
    }
}