/* Services Section Styles */
.services-section {
    padding: 80px 0;

}

.service-block {
    margin-bottom: 30px;
}

.service-block .inner-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.service-block .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-block .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

.service-block h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-block .text {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Partners Section Styles */
.partners-section {
    padding: 80px 0;
}

.partner-block {
    margin-bottom: 30px;
}

.partner-block .inner-box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.partner-block .inner-box:hover {
    transform: translateY(-5px);
}

.partner-block h5 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.partner-block .text {
    font-size: 14px;
    color: #666;
}

/* Updated button styles */
.theme-btn.btn-style-one {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.theme-btn.btn-style-one:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.theme-btn.btn-style-two {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.theme-btn.btn-style-two:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

/* Updated banner section */
.banner-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-section .upper-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}


/* Contact form styling */
.contact-section .form-group input,
.contact-section .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Hide language selector */
.lang-box {
    display: none !important;
}

/* Hide free consultation button */
.links-box .link:first-child {
    display: none !important;
}

/* Hide lower content section */
.lower-content {
    display: none !important;
}

.partner-block h5 {
    color: black!important;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-section h1 {
        font-size: 2rem;
    }
    
    .banner-section .upper-text {
        font-size: 1rem;
    }
    
    .partner-block {
        margin-bottom: 20px;
    }
}
