/* testimonial */
  /* Section */
    .testimonial-section {
        background: linear-gradient(135deg, #ffffff, #f8f9fa);
    }

    /* Box */
    .testimonial-box {
        background: #fff;
        padding: 35px;
        border-radius: 12px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    }

    /* Title */
    .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #c40c2e;
    }

    /* Text */
    .testimonial-box p {
        font-size: 15px;
        color: #444;
        line-height: 1.7;
    }

    /* Cards */
    .testimonial-card {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        border: 1px solid #eee;
        height: 100%;
        position: relative;
        transition: 0.3s;
    }

    /* Quote icon */
    .testimonial-card::before {
        content: "“";
        font-size: 40px;
        color: #c40c2e;
        position: absolute;
        top: 10px;
        left: 15px;
    }

    /* Text inside card */
    .testimonial-card p {
        font-size: 14px;
        color: #555;
        margin-top: 20px;
    }

    /* Name */
    .testimonial-card h6 {
        font-size: 14px;
        font-weight: 600;
        margin-top: 10px;
        color: #222;
    }

    /* Hover */
    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .section-title {
            font-size: 24px;
        }

        .testimonial-box {
            padding: 25px;
        }
    }

    /* process-section */
     .process-story-section {
        background: #f8f9fa;
    }

    /* Titles */
    .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #c40c2e;
    }

    .sub-title {
        font-size: 20px;
        font-weight: 600;
        color: #222;
    }

    /* Boxes */
    .process-box,
    .story-box {
        background: #fff;
        padding: 35px;
        border-radius: 12px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    }

    /* Text */
    .process-box p,
    .story-box p {
        font-size: 15px;
        color: #444;
        line-height: 1.7;
    }

    /* Step Cards */
    .step-card {
        background: #ffffff;
        border-left: 4px solid #c40c2e;
        padding: 18px;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

    .step-card h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .step-card p {
        font-size: 14px;
        color: #555;
    }

    /* Hover */
    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .section-title {
            font-size: 24px;
        }

        .process-box,
        .story-box {
            padding: 25px;
        }
    }

    /* services-section */
     /* Section */
    .services-section {
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
    }

    /* Title */
    .section-title {
        font-size: 34px;
        font-weight: 700;
        color: #c40c2e;
    }

    /* Link reset */
    .service-link {
        text-decoration: none;
        color: inherit;
    }

    /* Card */
    .service-card {
        background: #fff;
        padding: 25px;
        border-radius: 14px;
        height: 100%;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    /* Hover Effect */
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    }

    /* Icon Box */
    .icon-box {
        width: 60px;
        height: 60px;
        background: rgba(196, 12, 46, 0.1);
        color: #c40c2e;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 22px;
        margin-bottom: 15px;
    }

    /* Heading */
    .service-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    /* Text */
    .service-card p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .section-title {
            font-size: 26px;
        }
    }

    /* whychoose us */
     .why-us-section {
                background: linear-gradient(135deg, #f8f9fa, #ffffff);
            }

            /* Card Box */
            .content-box {
                background: #fff;
                padding: 35px;
                border-radius: 12px;
                box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
            }

            /* Title */
            .section-title {
                font-size: 30px;
                font-weight: 700;
                color: #222;
            }

            /* Text */
            .content-box p {
                font-size: 15px;
                color: #444;
                line-height: 1.7;
                margin-bottom: 12px;
            }

            /* Custom List */
            .why-list {
                list-style: none;
                padding-left: 0;
                margin-top: 15px;
            }

            /* List Item Style */
            .why-list li {
                position: relative;
                padding-left: 28px;
                margin-bottom: 12px;
                font-size: 15px;
                color: #444;
            }

            /* Custom Icon */
            .why-list li::before {
                content: "✔";
                position: absolute;
                left: 0;
                top: 0;
                color: #c40c2e;
                font-weight: bold;
            }

            /* Hover effect (small premium touch) */
            .why-list li:hover {
                color: #000;
                transform: translateX(3px);
                transition: 0.2s;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .section-title {
                    font-size: 24px;
                }

                .content-box {
                    padding: 25px;
                }
            }

             .expertise-section {
                background: #f8f9fa;
            }

            /* Title */
            .section-title {
                font-size: 30px;
                font-weight: 700;
                color: #222;
                margin-bottom: 10px;
            }

            /* Highlight Line */
            .highlight-line {
                font-size: 15px;
                color: #c40c2e;
                font-weight: 500;
                margin-bottom: 15px;
            }

            /* Text */
            .expertise-section p {
                font-size: 15px;
                color: #444;
                line-height: 1.7;
            }

            .image-box img {
                max-height: 350px;
                object-fit: cover;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .section-title {
                    font-size: 24px;
                }
            }

                .about-section {
        background: #ffffff;
    }

    /* Title */
    .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #222;
        margin-bottom: 10px;
    }

    /* Highlight Line */
    .highlight-line {
        font-size: 16px;
        color: #c40c2e;
        font-weight: 500;
        margin-bottom: 20px;
    }

    /* Paragraph */
    .about-section p {
        font-size: 15px;
        color: #444;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    /* Last Line Highlight */
    .last-line {
        font-weight: 600;
        color: #c40c2e;
    }

    /* Image Styling */
    .image-box {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 12px;
    }

    .image-box img {
        border-radius: 10px;
        max-height: 400px;
        object-fit: cover;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .section-title {
            font-size: 26px;
        }
    }

    .home-section {
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
    }
    /* Card Style */
    .content-box {
        background: #fff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    }

    /* Title */
    .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #222;
        margin-bottom: 10px;
    }

    /* Subtitle */
    .section-subtitle {
        font-size: 16px;
        color: #c40c2e;
        font-weight: 500;
        margin-bottom: 20px;
    }

    /* Paragraph */
    .content-box p {
        font-size: 15px;
        color: #444;
        line-height: 1.7;
    }

    /* List */
    .custom-list {
        list-style: none;
        padding-left: 0;
        margin-top: 10px;
    }

    .custom-list li {
        margin-bottom: 8px;
        font-size: 15px;
        color: #444;
    }

    /* Highlight Line */
    .highlight-text {
        font-size: 20px;
        font-weight: 600;
        color: #c40c2e;
        margin: 15px 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .section-title {
            font-size: 26px;
        }

        .content-box {
            padding: 25px;
        }
    }

    /* ===== FOOTER BASE ===== */
.footer-bg {
  background: linear-gradient(135deg, #272626, #500909);
  color: #fff;
  position: relative;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}

.footer-bg .container {
  position: relative;
  z-index: 2;
}

/* ===== LINKS ===== */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffc107;
  padding-left: 5px;
}

/* ===== TEXT ===== */
.footer-text {
  color: #ccc;
}

.footer-link {
  color: #ccc;
}

.footer-link:hover {
  color: #ffc107;
}

/* ===== SOCIAL ICONS ===== */
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.social-icon:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-3px);
}

/* ===== CONTACT BOX ===== */
.contact-box {
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.contact-box:hover {
  background: rgba(255,255,255,0.08);
}

/* ===== FOOTER BOTTOM ===== */
.bg-dark-red {
  background: #6d0606;
}

/* ===== FLOATING ROW ===== */
.floating-row {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  padding: 8px 10px;
}

/* ===== FLOATING BUTTON RIGHT ===== */
.floating-btn a {
  background: linear-gradient(135deg, #b30000, #ff1a1a);
  color: #fff;
  border-radius: 40px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.floating-btn a:hover {
  background: #000;
  color: #fff;
}

/* ===== FAB BUTTON ===== */
.fab-wrapper {
  position: relative;
}

.fab-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #b30000;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.fab-icon:hover {
  background: #000;
}

/* hamburger bars */
.icon-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

/* ===== FAB OPTIONS ===== */
.fab-options {
  position: absolute;
  bottom: 65px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

/* show on active */
.fab-wrapper.active .fab-options {
  opacity: 1;
  pointer-events: auto;
}

/* ===== FAB ITEMS ===== */
.fab-icon-holder {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

/* colors */
.call-btn {
  background: #007bff;
}

.whatsapp-btn {
  background: #25d366;
}

/* ===== LABEL ===== */
.fab-label {
  background: rgba(0,0,0,0.7);
  border-radius: 20px;
  white-space: nowrap;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 576px) {
  .floating-btn a {
    font-size: 12px;
    padding: 10px 14px;
  }

  .fab-icon {
    width: 50px;
    height: 50px;
  }

  .fab-icon-holder {
    width: 40px;
    height: 40px;
  }
}