.whatsapp-float {
    position: fixed;
    bottom: 120px;
    left: 10px;
    z-index: 999; 
}
.whatsapp-float img {
   width: 50px;
   height: 50px;
}
.call-icon{ 
    position: fixed;    
    bottom: 70px;
    left: 10px;
    z-index: 999;
}
.call-icon img{
    width: 50px;
    height:50px;
}

.mobileform{
    margin:50px 0 !important;
    display:none;
}

@media (max-width: 768px) {
    
   .mobileform{
    
    display:block ;
}
}

.hero-img-wrap-3, .mobileform{
    background-color: #1e1e1e;
    padding: 25px 20px;
    border-radius: 12px;
    max-width: 600px;
    margin: auto;
}

.hero-img-wrap-3 .top-form form,
.mobileform .top-form form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-img-wrap-3 .form-items,
.mobileform .form-items{
    
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-img-wrap-3 .form-item,
.mobileform .form-item{
    width: 100%;
}

.hero-img-wrap-3 .form-control,
.mobileform .form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    background-color: transparent;
    border: 1px solid #3D3E44;
    color: #fefefe;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.hero-img-wrap-3 .form-control::placeholder,
.mobileform .form-control::placeholder{
    color: #aaa;
}

.hero-img-wrap-3 .form-control:focus,
.mobileform .form-control:focus{
    border-color: #00d9ff;
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-img-wrap-3 textarea.form-control ,
.mobileform textarea.form-control{
    resize: vertical;
    min-height: 100px;
}


.hero-img-wrap-3 .submit-btn,
.mobileform .submit-btn{
    padding: 12px 20px;
    background-color: #EDB638;
    color: #fefefe;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-img-wrap-3 .submit-btn:hover ,
.mobileform .submit-btn:hover{
    background-color: #00b3d1;
}


.enhanced-box {
    background-color: #edb638;
    color: #fefefe;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.enhanced-box .icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffffff;
}

.enhanced-box .title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.enhanced-box .content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.enhanced-box .line-shape .top-round,
.enhanced-box .line-shape .bottom-round {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.enhanced-box .line-shape .top-round {
    top: -30px;
    right: -30px;
}

.enhanced-box .line-shape .bottom-round {
    bottom: -30px;
    left: -30px;
}

