/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.hero-content {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    border-radius: 70px;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text-box {
    position: absolute;
    bottom: 80px;
    right: 50%;
    transform: translateX(50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 40px 60px;
    border-radius: 60px;
    text-align: center;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: var(--white-color);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 24px 60px rgba(0, 143, 207, 0.5);
}

.btn {
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: inset -2px 4px 10px rgba(135, 218, 255, 1);
    transition: 0.3s ease-in-out;
}

.btn-primary:hover {
    background: #08A0E4;
    color: var(--white-color);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white-color);
    box-shadow: inset -2px 4px 10px rgb(60, 195, 255);
    transition: 0.3s ease-in-out;
}

.btn-secondary:hover {
    background: #005B91;
    color: var(--white-color);
}

.hero-logo {
    position: absolute;
    bottom: -44px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 100px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 30px;
    }

    .btn {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    
        .hero-text-box {
        bottom: -100px;
        padding: 40px 40px 20px;

    }
    
        .hero-logo {
        bottom: 90px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero-text-box {
        bottom: -80px;
        padding: 40px 40px 20px;

    }

    .btn {
        font-size: 18px;
        padding: 12px 30px;
    }

    .hero-logo img {
        width: 60px;
        height: 60px;
    }

    .hero-logo {
        width: 74px;
        height: 74px;
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        border-radius: 50px;
    }

    .hero-text-box {
        border-radius: 40px;
    }

    .hero-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero-buttons-container {
        gap: 10px;
    }

    .btn {
        font-size: 15px;
        padding: 8px 22px;
    }

    .hero-logo img {
        width: 50px;
        height: 50px;
    }

    .hero-logo {
        width: 60px;
        height: 60px;
        bottom: 50px;
    }

}

@media (max-width: 576px) {
    
    .hero {
    margin-top: 10px;
}
    .hero-text-box {
        bottom: -130px;
        padding: 20px 20px;
    }

    .hero-title {
        font-size: 22px;
        margin: 14px 0;
    }

    .hero-logo {
        bottom: 50px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        border-radius: 40px;
    }

    .hero-title {
        font-size: 19px;
        margin: 8px 0;
    }

    .btn {
        font-size: 14px;
        padding: 8px 22px;
    }

    .hero-logo img {
        width: 44px;
        height: 44px;
    }

    .hero-logo {
        width: 54px;
        height: 54px;
        bottom: 30px;
    }
    
    .hero-text-box {
        width: 94%;
    }
}

@media (max-width: 390px) {
    .hero-image {
        border-radius: 30px;
    }

    .hero-text-box {
        border-radius: 30px;
        bottom: -130px;
        padding: 16px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-logo img {
        width: 34px;
        height: 34px;
    }

    .hero-logo {
        width: 44px;
        height: 44px;
        bottom: 16px;
    }
}


@media (max-width: 375px) {
  .hero-title {
    font-size: 17px;
}  
}
