body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Top Bar */
.top-bar {
    background: #f1ebeb;
    color: black;
    display: flex;
    justify-content: space-between;
    padding: 8px 20px;
    font-size: 14px;
}

.social-icons a {
    color: black;
    margin-left: 15px;
    text-decoration: none;
    font-size: 16px;
}

.social-icons a:hover {
    color: red;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f4f4f4;
}

/* Logo */
.logo img {
    height: 70px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* Normal Links */
.nav-menu a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    position: relative;
}

.nav-menu a:hover {
    color: blue;
}

/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
}

/* Dropdown Links */
.dropdown-content a {
    display: block;
    padding: 8px 15px;
    color: black;
    font-weight: normal;
}

.dropdown-content a:hover {
    background: #f2f2f2;
    color: blue;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn i {
    font-size: 12px;
    margin-left: 5px;
}

/* Optional: rotate arrow on hover */
.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* Phone */
.phone {
    font-weight: bold;
    color: red;
}

/* Content */
.content {
    padding: 40px;
    text-align: center;
}


/* ================= Contact Banner ================= */
.contact-banner {
    background: url("image/contact-banner.jpg") no-repeat center center/cover;
    height: 250px;
    display: flex;
    align-items: center;
    /* padding-left: 80px; */
    color: white;
}

.banner-text h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 18px;
}

/* ================= Red Line ================= */
.red-line {
    height: 4px;
    background-color: red;
    width: 100%;
}


/* ================= Contact Section ================= */
/* Banner Image */
/* Banner Container */
.contact-banner {
    position: relative;
    /* width: 100%; */
    height: 300px;
    overflow: hidden;
}

/* Banner Image */
.contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Text */
.banner-overlay {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: white;
}

/* Heading */
.banner-overlay h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Breadcrumb */
.banner-overlay p {
    font-size: 18px;
}


.contact-section {
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
    gap: 50px;
}

/* Left Side */
.contact-left {
    width: 50%;
}

.contact-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-left p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}

/* Form Styling */
.contact-left form {
    display: flex;
    flex-direction: column;
}

.contact-left label {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-left input {
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
}

.contact-left input:focus {
    border-bottom: 2px solid red;
}

/* Textarea */
.contact-left textarea {
    padding: 10px;
    margin-bottom: 25px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    resize: none;
    height: 100px;
    font-family: inherit;
}

.contact-left textarea:focus {
    border-bottom: 2px solid red;
}

/* Submit Button */
.submit-btn {
    width: 150px;
    padding: 12px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background-color: darkred;
}


/* Right Section */
.contact-right {
    width: 50%;
}

.contact-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-right p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-right i {
    color: red;
    margin-right: 10px;
}

/* Horizontal Line */
.contact-right hr {
    margin: 30px 0;
    border: none;
    height: 2px;
    background-color: #ddd;
}

/* Social Icons */
.contact-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    margin-right: 15px;
    font-size: 18px;
    background-color: black;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.contact-social a:hover {
    background-color: darkred;
}

.contact-social i {
    color: white;
}

.map-section {
    width: 100%;
    margin-top: 50px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/* ================= Blog Banner ================= */

.blog-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */
.blog-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Overlay Text */
.blog-overlay {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

.blog-overlay h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.blog-overlay p {
    font-size: 18px;
}

/* ================= Red Line ================= */

.blog-red-line {
    width: 100%;
    height: 4px;
    background-color: red;
}

/* ================= Blog Cards Section ================= */

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Always 3 per row */
    gap: 30px;
    padding: 50px 80px;
}

/* Individual Blog Card */
.blog-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 20px;
    margin: 15px;
}

.blog-card p {
    margin: 0 15px 15px;
    font-size: 14px;
    color: #777;
}

.blog-card .read-more {
    display: inline-block;
    margin: 0 15px 20px;
    color: red;
    text-decoration: none;
    font-weight: 600;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-cards {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PRODUCT BANNER
========================= */
.product-banner {
    /* width: 100%; */
    height: 300px;
    background: url("image/products_banner.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
    color: white;
    position: relative;
}

.product-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

.banner-text {
    position: relative;
    z-index: 2;
}

.banner-text h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 18px;
}


/* =========================
   RED LINE
========================= */
.red-line {
    width: 100%;
    height: 4px;
    background-color: red;
    margin: 30px 0;
}


/* =========================
   PRODUCT SECTION
========================= */
.product-section {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 60px;
}


/* PRODUCT CARD */
.product-card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
}

.product-card h3 {
    margin-top: 15px;
    font-size: 20px;
    text-align: center;
}

.product-card p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    text-align: justify;
}


/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 992px) {
    .product-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-section {
        grid-template-columns: 1fr;
    }

    .product-banner {
        height: 200px;
        padding-left: 30px;
    }

    .banner-text h1 {
        font-size: 28px;
    }
}

/* ===== About Banner Section ===== */
.about-banner {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */
.about-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Text Over Image */
.banner-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
}

.banner-text h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: bold;
}

.banner-text p {
    font-size: 16px;
}

.banner-text a {
    color: #fff;
    text-decoration: none;
}

.banner-text a:hover {
    color: #ff4d4d;
}

/* ===== Red Horizontal Line ===== */
.red-line {
    width: 100%;
    height: 5px;
    background-color: #b30000;
}

/* ===== Three Column Section ===== */
/* ABOUT SECTION */

.about-section {
    padding: 80px 8%;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #c60000;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.section-title span::before,
.section-title span::after {
    content: "";
    width: 70px;
    height: 2px;
    background: #c60000;
    position: absolute;
    top: 50%;
}

.section-title span::before {
    right: 110%;
}

.section-title span::after {
    left: 110%;
}

.section-title h2 {
    font-size: 48px;
    color: #111;
    margin: 15px 0;
    font-weight: 700;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

.about-three-column {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.about-box {
    flex: 1;
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .4s;
}

.about-box:hover {
    transform: translateY(-8px);
}

.about-icon {
    width: 90px;
    height: 90px;
    background: #fdeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.about-icon i {
    font-size: 42px;
    color: #b00000;
}

.about-box h3 {
    font-size: 30px;
    color: #b00000;
    margin-bottom: 18px;
}

.about-box p {
    color: #444;
    line-height: 1.9;
    font-size: 17px;
    text-align: justify;
    text-justify: inter-word;
}

/* ===== MD Section ===== */
.md-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 10%;
    background: #ffffff;
}

.md-content {
    flex: 1;
}

.md-content h2 {
    font-size: 32px;
    color: #b30000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.md-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* Bottom Line (Button + Name same line) */
.md-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    /* 4 gap effect */
    margin-top: 20px;
}

/* Read More Button */
.read-btn {
    padding: 10px 25px;
    background: #b30000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s ease;
}

.read-btn:hover {
    background: #800000;
}

/* Name Styling */
.md-name p {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

/* Right Side Image */
.md-image {
    flex: 1;
}

.md-image img {
    width: 100%;
    border-radius: 10px;
}

/* ===== Feature Section ===== */
/*=========================
  OUR CORE VALUES
=========================*/

.feature-section {
    padding: 80px 8%;
    background: #fff;
}

.feature-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.feature-section .section-title span {
    color: #c60000;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.feature-section .section-title span::before,
.feature-section .section-title span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 70px;
    height: 2px;
    background: #c60000;
}

.feature-section .section-title span::before {
    right: 110%;
}

.feature-section .section-title span::after {
    left: 110%;
}

.feature-section .section-title h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-top: 15px;
}

.feature-row {
    display: flex;
    gap: 30px;
}

.feature-box {
    flex: 1;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .4s;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: #fdeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 40px;
    color: #b00000;
}

.feature-box h3 {
    font-size: 30px;
    color: #111;
    margin-bottom: 18px;
    font-weight: 700;
}

.feature-box p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    text-justify: inter-word;
}

/* ===== Team Section ===== */
/* Our Team Section */
.our-team {
    padding: 60px 5%;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: #222;
}

/* Team Cards */
.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card h3 {
    font-size: 22px;
    color: #d40000;
    margin-bottom: 10px;
}

.designation {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-container {
        grid-template-columns: 1fr;
    }
}

/* Offerings Section */
.offerings-section {
    padding: 60px 12% 60px 14%;
    /* top right bottom left */
    background-color: #ffffff;
}

.offerings-container {
    max-width: 1100px;
    margin: auto;
}

.offerings-container h2 {
    color: #c40000;
    margin-bottom: 15px;
    font-size: 28px;
    border-left: 5px solid #c40000;
    padding-left: 10px;
}

.offerings-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.offerings-container ul {
    margin-bottom: 40px;
    padding-left: 20px;
}

.offerings-container ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}


/* ===== Service Banner ===== */
.service-banner {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.service-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */
.service-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Banner Text */
.service-banner-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
}

.service-banner-text h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-banner-text p {
    font-size: 16px;
}

.service-banner-text a {
    color: #fff;
    text-decoration: none;
}

.service-banner-text a:hover {
    color: #ff4d4d;
}

/* ===== Service Red Line ===== */
.service-red-line {
    width: 100%;
    height: 4px;
    background-color: #b30000;
}

/* ===== Service Two Column Section ===== */
.service-two-column {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 10%;
    background: #f9f9f9;
}

/* Column */
.service-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

/* Service Box */
.service-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    /* important */
    color: #000;
    /* important */
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateX(8px);
    background: #b30000;
    color: #fff;
}

.service-box:hover .arrow {
    color: #fff;
}

/* Arrow Style */
.arrow {
    font-size: 20px;
    color: #b30000;
}

/* Images */
.service-image img,
.service-middle-image img {
    width: 100%;
    border-radius: 8px;
}

/* Small image between left boxes */
.service-image {
    text-align: center;
}

/* Middle Image Between Columns */
.service-middle-image {
    flex: 1;
    text-align: center;
}

/* Home Slider */

.video-banner {
    width: 100%;
    height: 85vh;
    overflow: hidden;
    position: relative;
}

.home-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;
    /* এই লাইনটা নতুন যোগ করুন */

    transition: left .8s ease;
}

.home-slide.active {
    left: 0;
}

/* Remove old video styles */

/* .banner-video{
    width:100%;
    height:100%;
    object-fit:cover;
} */

/* .video-banner::after{
    display:none;
} */

/* .video-overlay{
    display:none;
} */
/* Red Horizontal Bar */
.red-bar {
    width: 100%;
    height: 12px;
    background-color: #d60000;
}

/* THREE COLUMN SECTION */
.three-column-section {
    display: flex;
    width: 100%;
    height: 450px;
}

/* Common Column Style */
.column {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease;
}

/* Content */
.column-content {
    position: relative;
    z-index: 2;
    color: #000;
    transition: 0.4s ease;
}

.column-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.column-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* Background Image Hidden Initially (1st & 3rd) */
.hover-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 0.5s ease;
    z-index: 1;
}

/* 1st Column Image */
.hover-bg:nth-child(1)::before {
    background-image: url('image/image-1.jpg');
}

/* 3rd Column Image */
.third::before {
    background-image: url('image/image-2.jpg');
}

/* Show Image on Hover */
.hover-bg:hover::before {
    opacity: 1;
}

/* Dark Overlay when hover */
.hover-bg:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Text white when hover */
.hover-bg:hover .column-content {
    color: #fff;
}

/* Center Column Background Always Visible */
.center-bg {
    background: url('image/image-3.jpg') center/cover no-repeat;
    color: #fff;
}

.center-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.center-bg .column-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    background: #d60000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s ease;
}

.read-more-btn:hover {
    background: #000;
}

/* Hover করলে button white outline style হবে */
.hover-bg:hover .read-more-btn {
    background: transparent;
    border: 1px solid #fff;
}

.hover-bg:hover .read-more-btn:hover {
    background: #fff;
    color: #000;
}

.commitment-section {
    padding: 80px 10%;
    background: #ffffff;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.left-content {
    flex: 1;
}

.left-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.left-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.signature {
    text-align: right;
    margin-top: 20px;
    font-weight: 600;
}

.signature span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    color: #777;
}

.read-more-btn {
    margin-top: 25px;
}

.read-more-btn a {
    display: inline-block;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.read-more-btn a:hover {
    background: #444;
}

.right-image {
    flex: 1;
}

.right-image img {
    width: 100%;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .signature {
        text-align: left;
    }
}

.products-section {
    padding: 80px 10%;
    background: #f9f9f9;
}

/* Heading Center */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 600;
}

/* 3 Column Layout */
.products-wrapper {
    display: flex;
    gap: 30px;
}

.product-card {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.product-card h3 {
    margin-top: 20px;
    font-size: 20px;
}

.product-card p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Image Hover Effect */
.product-image {
    overflow: hidden;
    border-radius: 10px;
}

.product-image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.product-image:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .products-wrapper {
        flex-direction: column;
    }
}

.view-all-btn {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn a {
    display: inline-block;
    padding: 14px 35px;
    background-color: red;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease;
}

.view-all-btn a:hover {
    background-color: #cc0000;
}

.image-marquee {
    padding: 50px 10%;
    background: #f9f9f9;
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: scrollRightToLeft 20s linear infinite;
}

.marquee-content img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Image hover effect */
.marquee-content img:hover {
    transform: scale(1.05);
}

/* Scroll Animation */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Image Banner Section */
.cta-image-banner {
    position: relative;
    width: 100%;
    min-height: 450px;
    background: url('image/index-banner-1.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay */
.cta-image-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    /* ektu beshi dark kore dilam */
    z-index: 1;
}

/* Center Content */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 30px;
}

/* Heading Highlight */
.banner-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    /* image er upor clear dekhar jonno */
}

/* Description Text */
.banner-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #f2f2f2;
    /* heading theke alada light color */
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
}

/* Button */
.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d60000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background-color: #a80000;
}

/* Recent Projects Section */
.recent-projects {
    padding: 70px 20px;
    text-align: center;
    background: #f9f9f9;
}

/* Heading */
.recent-projects h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.black-text {
    color: #000;
}

.red-text {
    color: #d60000;
}

/* 3 Column Layout */
.projects-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Updated Card Design */
.project-card {
    width: 280px;
    /* আগের থেকে কম width */
    height: 350px;
    /* বেশি height */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

/* Image Fit Properly */
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* image crop হয়ে পুরো card fill করবে */
    display: block;
    transition: 0.4s ease;
}

/* Hover Zoom */
.project-card:hover img {
    transform: scale(1.08);
}

/* Latest News Section */
.latest-news {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
}

.latest-news h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Color Control */
.red-text {
    color: #d60000;
}

.black-text {
    color: #000000;
}

/* Layout */
.news-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Card Design */
.news-card {
    width: 500px;
    /* বেশি width */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: 0.3s ease;
}

/* Image */
.news-card img {
    width: 100%;
    height: 250px;
    /* কম height */
    object-fit: cover;
    display: block;
}

/* Content */
.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Button */
.read-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #d60000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.read-btn:hover {
    background: #a80000;
}


/* footer */
/* Footer Section */
/* ===== FOOTER SECTION ===== */

.footer {
    background: #111;
    color: #fff;
    padding: 60px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Logo */
.footer-logo {
    width: 50px;
    margin-bottom: 15px;
}

/* Tagline */
.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Social Icons */
.footer-social a {
    color: #fff;
    margin-right: 15px;
    font-size: 18px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #25D366;
}

/* Headings */
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid red;
    display: inline-block;
    padding-bottom: 5px;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

/* Contact Info */
.contact-info p {
    font-size: 14px;
    margin: 6px 0;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.contact-info i {
    color: red;
    /* icon color */
    margin-top: 3px;
    min-width: 16px;
}

.contact-info strong {
    display: block;
    margin-top: 18px;
    margin-bottom: 8px;
    color: #fff;
    font-size: 16px;
}



/* Bottom Red Bar */
.bottom-bar {
    background: red;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
}

/* Contact Handles */
/* ================= FLOATING ICON BUTTONS ONLY ================= */
.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

/* hide text */
.float-btn span {
    display: none;
}

.float-btn:hover {
    transform: translateY(-4px) scale(1.08);
    color: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

/* glossy effect */
.float-btn::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 10px;
    width: 60%;
    height: 35%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

/* CALL */
/* .call-btn {
    background: linear-gradient(145deg, #2563eb, #1d4ed8);
} */

/* SMS */
/* .sms-btn {
    background: linear-gradient(145deg, #f97316, #ea580c);
} */

/* WHATSAPP */
.whatsapp-btn {
    background: linear-gradient(145deg, #22c55e, #16a34a);
}

/* MOBILE */
@media(max-width:768px) {
    .floating-contact {
        right: 12px;
        bottom: 14px;
        gap: 12px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}

/* Contact Handles */

.choose-title span::before,
.choose-title span::after {
    display: none;
}