/* General Header Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.top-bar {
    background: #000;
}

.brand-text {
    color: #e31e24;
}

.navbar {
    background: #fff;
}

.brand-logo-img {
    max-height: 70px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #111;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #e31e24;
}

/* Home Banner */
[data-aos="fade-up"] {
    transition-duration: 1s;
    transition-property: opacity, transform;
}

/* expertise section home page */
.card {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;

}

.card:not(.bg-dark)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 1;
}

.bg-img-manhole {
    background-image: url('assets/images/Concrete-Manhole-Cover.webp');
}

.bg-img-kerb {
    background-image: url('assets/images/Concrete-Kerbstone.webp');
}

.bg-img-drain {
    background-image: url('assets/images/drainage.webp');
}

/* Quality section home */
.feature-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-15px);
    background: #212529 !important;
    color: white !important;
}

.feature-card:hover h5,
.feature-card:hover p {
    color: white !important;
}

.feature-card:hover .icon-box {
    background: #dc3545 !important;
    color: white !important;
}

/* Icon Box Style */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Button Hover Effect */
.btn-danger:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* our products home page */
.card img {
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* கருப்பு ஓவர்லேவை நீக்கி, கார்டுகளை கிளீனாக வைத்திருக்கிறோம் */
.card {
    /* background-color: #ffffff !important; */
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* valuable customers */
.client-logo {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
    display: block;
    transition: 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%);
}

/* மொபைலில் ஸ்லைடு நன்றாகத் தெரிய */
.carousel-item .row {
    padding: 20px 0;
}

/* testimonial */
.italic {
    font-style: italic;
    color: #555;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    padding: 15px;
    /* கண்ட்ரோல் பட்டன் சைஸ் */
}

/* செக்‌ஷன் பேக்கிரவுண்ட் */
.bg-white {
    background-color: #ffffff !important;
}

/* footer */
footer {
    border-top: 5px solid #dc3545;
    /* லோகோ/தீம் நிறத்திற்கு ஏற்ப சிவப்பு பார்டர் */
}

footer a:hover {
    color: #dc3545 !important;
    transition: 0.3s;
}

/* floating icons */

/* 1. WhatsApp Floating Button */
.float-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

/* 2. Google Review Floating Button */
.float-review {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 110px;
    right: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.float-review img {
    width: 30px; /* லோகோ சைஸ் */
    height: 30px;
}

.float-review:hover {
    transform: scale(1.1);
}

/* 3. Phone Floating Button (Left side) */
.dock-left {
    position: fixed;
    left: 20px;
    bottom: 40px;
    z-index: 1000;
}

.node-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #dc3545; /* Brand color */
    color: white;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.node-phone:hover {
    transform: scale(1.1);
    background-color: #bb2d3b;
    color: white;
}