/* Hero Section Styles */
.hero-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-button {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.whatsapp-btn img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: #00BCD4;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 280px;
}

.btn-action {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    background-color: #fff;
}

.btn-action:hover {
    background-color: #f5f5f5;
    border-color: #00BCD4;
    color: #00BCD4;
    transform: translateX(5px);
}

.btn-icon {
    width: 30px;
    display: flex;
    justify-content: center;
    margin-right: 10px;
    font-size: 20px;
}

.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* Minimum height for the hero section */
}

.hero-content-wrapper {
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.welcome-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #19CADE;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.welcome-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 159, 67, 0.3);
}

@media (max-width: 576px) {
    .welcome-badge {
        font-size: 0.9rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero-image-wrapper {
        height: 200px;
    }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

@media (max-width: 991px) {
    .hero-img {
        border-radius: 0;
    }
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This maintains the aspect ratio while covering the area */
    display: block;
    margin: 0;
    padding: 0;
    box-shadow: none;
}
