* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.hero-section {
    background-image: url('../images/clients/cont-bg1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    position: relative;
    padding: 80px 0;
    padding-top: 150px;
    padding-bottom: 150px;
    overflow: hidden;
}

/* 🔥 DARK OVERLAY */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);
    /* adjust 0.4–0.7 as needed */
    z-index: 0;
}

/* ✨ YOUR EXISTING EFFECT (KEEP IT ABOVE OVERLAY) */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;

    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;

    z-index: 1;
}

/* CONTENT SHOULD BE ABOVE OVERLAY */
.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-align: center;
}

.hero-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.hero-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}





/*---------------------------------------
  NEWS         
-----------------------------------------*/
.about-detail-header-section {
    background-image: url('../images/slider/rubbercompression.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
}

.news-block-top {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.news-block-two-col-image-wrap {
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
    width: 150px;
    margin-right: 20px;
}

.news-category-block {
    background: var(--secondary-color);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 10px 20px;
}

.news-category-block .category-block-link {
    color: var(--white-color);
    margin-right: 10px;
}

.news-block-info {
    padding-top: 10px;
    padding-bottom: 10px;
}

.news-block-title-link {
    color: var(--dark-color);
}

.news-detail-image {
    display: block;
    border-radius: var(--border-radius-medium);
}






.contact-section {
    background: #f8f9fa;
    padding: 0;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 60px 50px;
    height: 100%;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5bc1ac;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #000;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-label {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #5bc1ac;
    box-shadow: 0 0 0 0.2rem rgba(74, 157, 95, 0.1);
}

.btn-submit {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #5bc1ac;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5bc1ac;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-info-wrapper {
    background: #5bc1ac;
    padding: 60px 50px;
    color: #ffffff;
    height: 100%;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
    /* border: 2px solid red; */
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
}

.info-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
    /* opacity: 0.95; */
    font-weight: 400;
    color: #000;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.info-content h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    color: #000;
    font-weight: 400;
}

.info-content a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.info-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffffff;
    color: #5bc1ac;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-section {
    background: #ffffff;
    /* max-width: 1180px;
    margin: 0 auto; */
    padding: 20px 0px;
}

.map-wrapper {
    width: 100%;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        border-radius: 0 0 8px 8px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .form-title,
    .info-title {
        font-size: 1.5rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }

    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .info-icon i {
        font-size: 1rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}