/* Hero Section Specific Styles */
.hero {
    padding: 20px 0 20px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

/* Profile container styled to match service-card */
.profile-container {
    width: 280px !important;
    height: 280px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: block !important;
    position: relative !important;
}

.profile-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: all 0.3s ease !important;
}

/* Simple hover effect */
.profile-container:hover {
    transform: translateY(-10px) !important;
}

/* Removing overlay related styles */

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin-right: 15px;
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-content, .hero-image {
        flex: none;
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.2rem;
    }

    .profile-container {
        width: 220px !important;
        height: 220px !important;
    }
}
