/* Dhyan Enterprise - Minimal Design Fix */

/* Fix service block layout */
.service-block-two .inner-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.service-block-two:hover .inner-box {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(204, 94, 40, 0.15);
}

.service-block-two .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cc5e28, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-block-two .icon-box i {
    color: #fff;
    font-size: 24px;
}

.service-block-two:hover .icon-box {
    transform: scale(1.1);
}

.service-block-two h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d2727;
    margin-bottom: 15px;
}

.service-block-two p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Fix counter blocks */
.counter-block-one {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.counter-block-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #cc5e28, #e67e22);
}

.counter-block-one:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(204, 94, 40, 0.15);
}

.counter-block-one .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(204, 94, 40, 0.1), rgba(230, 126, 34, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.counter-block-one:hover .icon-box {
    background: linear-gradient(135deg, #cc5e28, #e67e22);
}

.counter-block-one .icon-box i {
    font-size: 28px;
    /* color: #cc5e28; */
    transition: color 0.3s ease;
}

.counter-block-one:hover .icon-box i {
    color: #fff;
}

/* Fix contact info blocks */
.contact-info-block-one {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 30px;
}

.contact-info-block-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #cc5e28, #e67e22);
    border-radius: 12px 12px 0 0;
}

.contact-info-block-one:hover {
    transform: translateY(5px);
    box-shadow: 0 10px 30px rgba(204, 94, 40, 0.15);
}

.contact-info-block-one .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #cc5e28, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-info-block-one .icon-box i {
    color: #fff;
    font-size: 28px;
}

.contact-info-block-one:hover .icon-box {
    transform: scale(1.1);
}

.contact-info-block-one h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d2727;
    margin-bottom: 15px;
}

.contact-info-block-one p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Fix testimonial blocks */
.testimonial-block-one .inner-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.testimonial-block-one .inner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #cc5e28, #e67e22);
    border-radius: 12px 12px 0 0;
}

.testimonial-block-one:hover .inner-box {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(204, 94, 40, 0.15);
}

.testimonial-block-one .author-thumb {
    margin-top: -50px;
    margin-bottom: 20px;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Fix buttons */
.theme-btn-one {
    background: linear-gradient(135deg, #cc5e28, #e67e22);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-btn-one:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 94, 40, 0.3);
    color: #fff;
}

/* Fix form elements */
.default-form .form-group input,
.default-form .form-group textarea,
.default-form .form-group select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    background: #fff;
    font-size: 14px;
}

.default-form .form-group input:focus,
.default-form .form-group textarea:focus,
.default-form .form-group select:focus {
    border-color: #cc5e28;
    box-shadow: 0 0 0 2px rgba(204, 94, 40, 0.1);
    outline: none;
}

/* Fix section titles */
.sec-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #cc5e28, #e67e22);
    border-radius: 1px;
}

.sec-title.left h2::after {
    left: 0;
    transform: none;
}

/* Fix header */
.header-top {
    background: linear-gradient(135deg, #cc5e28, #e67e22);
    padding: 8px 0;
}

.header-top .text p {
    color: #fff;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

.social-links li a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links li a:hover {
    background: #fff;
    color: #cc5e28;
    transform: translateY(-2px);
}

/* Responsive fixes */
@media (max-width: 768px) {
    .service-block-two .inner-box,
    .counter-block-one,
    .contact-info-block-one,
    .testimonial-block-one .inner-box {
        margin-bottom: 20px;
    }
    
    .theme-btn-one {
        padding: 10px 20px;
        font-size: 12px;
    }
}
/* Header alignment fixes */
.main-header .logo-box {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.main-header .logo-box .logo img {
    max-height: 100px;
    width: auto;
}

.main-header .support-box {
    display: flex;
    align-items: center;
    padding: 8px 0 8px 55px;
}

.main-header .support-box i {
    top: 50%;
    transform: translateY(-50%);
}

.main-menu .navigation > li {
    padding: 25px 0;
}

.sticky-header .logo-box {
    padding: 10px 0;
}

.sticky-header .logo-box .logo img {
    max-height: 40px;
}

.sticky-header .support-box {
    padding: 10px 0 10px 65px;
}

.sticky-header .support-box i {
    top: 50%;
    transform: translateY(-50%);
}

.sticky-header .main-menu .navigation > li {
    padding: 20px 0;
}
/* Better social icons centering */
.header-top .social-links li a {
    line-height: 32px;
    text-align: center;
}

.header-top .social-links li a i {
    vertical-align: middle;
    line-height: inherit;
}
/* Footer logo sizing */
.footer-logo img {
    max-height: 100px;
    width: auto;
    margin-top: -20px;
}
/* Counter block center alignment */
.counter-block-one {
    text-align: center;
}