body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
h1,h2,h3,h4,h5,h6,p{
    font-family: "Poppins", sans-serif;
}

/* Social Bar Fix Left */
.social-bar {
    position: fixed;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}

/* Social Icon Box */
.social-item {
    display: flex;
    align-items: center;
    background: #111;
    color: #fff;
    height: 48px;
    width: 50px; /* Only icon visible */
    border-radius: 0 50px 50px 0;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    position: relative;
}

/* Expand on Hover */
.social-item:hover {
    width: 170px; /* Text area auto appear */
}

/* Icon */
.social-item i {
    font-size: 22px;
    width: 48px;
    text-align: center;
    z-index: 2;
}

/* Text behind icon (slide-in) */
.social-item span {
    position: absolute;
    left: 55px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.35s ease;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

/* Show text on hover */
.social-item:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* Colors */
.social-item.whatsapp { background: #25D366; }
.social-item.facebook { background: #1877F2; }
.social-item.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}
.social-item.youtube { background: #FF0000; }
 
/* Call */
.social-item.call {
    background: #0d6efd; /* Bootstrap primary blue */
}
.social-item.email {
    background: #D44638; /* Gmail / Email original red */
}
/*fixed btn end*/

/* TOPBAR MAIN */
.topbar {
    background: #cf2e2e;
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.topbar-inner {
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT CONTACT */
.topbar-left {
    display: flex;
    gap: 18px;
    align-items: center;
}

.contact-link {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.contact-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.contact-link i {
    font-size: 15px;
    transition: 0.3s ease-in-out;
}

.contact-link:hover i {
    transform: scale(1.2);
}

/* RIGHT SOCIAL ICONS */
.topbar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.social.facebook {
    background: #1877f2;
}

.social.facebook:hover {
    background: #0f63c4;
    box-shadow: 0 0 10px rgba(24, 119, 242, 0.9);
    transform: translateY(-3px);
}

.social.instagram {
    background: linear-gradient(45deg,
            #feda75,
            #fa7e1e,
            #d62976,
            #962fbf,
            #4f5bd5);
}

.social.instagram:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 12px rgba(214, 41, 118, 0.9);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 520px) {
    .email-link {
        display: none !important;
    }

    .contact-link,
    .contact-text {
        font-size: 13px;
    }

    .contact-link i {
        font-size: 13px;
    }

    .social {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

/* topbar end */

/* navbar start */
/* 🌿 Navbar */

.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 80px;
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

.navbar-logo {
    height: 80px;
    width: auto;
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 60px;
    }
}

.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #0e2a47;
}

/* NAV TEXT */
.navbar-nav .nav-link {
    color: #0e2a47 !important;
    font-weight: 600;
    margin-right: 20px;
    transition: 0.3s ease;
    font-size: 17px;
}

.navbar-nav .nav-link:hover {
    color: #1d3f6e !important;
    transform: translateY(-2px);
}

/* Attractive Get Estimate Button */
.estimate-btn {
    background: linear-gradient(135deg, #cf2e2e, #9e1f1f);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.estimate-btn:hover {
    background: linear-gradient(135deg, #9e1f1f, #cf2e2e);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* Dropdown Enhancement */
.dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.dropdown-item {
    color: #0e2a47;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, #cf2e2e, #9e1f1f);
    color: #fff !important;
    transform: translateX(5px);
}

.navbar-nav .dropdown-toggle::after {
    color: #0e2a47;
    transition: transform 0.3s ease;
}

/* .nav-item.dropdown:hover>.dropdown-toggle::after {
    transform: rotate(180deg);
} */

/* Custom Dropdown for Click Open with White Background */
.custom-dropdown {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-height: 420px;
    overflow-x: scroll;
    min-width: 300px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Dropdown Items */
.custom-dropdown .dropdown-item {
    padding: 8px 14px;
    margin: 3px 8px;
    border-radius: 8px;
    color: #0e2a47;
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.3;
    transition: all 0.3s ease;
}


/* Small text spacing fix */
.custom-dropdown small {
    font-size: 12px;
    line-height: 1.2;
}

/* Slim scrollbar (Chrome, Edge) */
.custom-dropdown::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-dropdown::-webkit-scrollbar-thumb {
    background: #cf2e2e;
    border-radius: 10px;
}

/* Hover effect */
.custom-dropdown .dropdown-item:hover {
    background: linear-gradient(90deg, #cf2e2e, #b12424);
    color: #fff !important;
    transform: translateX(0.5px) scale(0.98);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Dropdown toggle arrow */
.nav-item.dropdown .nav-link::after {
    transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is shown */
.nav-item.dropdown.show .nav-link::after {
    transform: rotate(180deg);
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .custom-dropdown {
        background: #ffffff;
        max-height: 300px;
        overflow-y: auto;
        min-width: 100%;
    }

    .custom-dropdown .dropdown-item {
        margin: 0;
        padding: 15px 20px;
    }
}

/* Sub Dropdown */
.dropdown-submenu {
    position: relative;
}

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    border-radius: 10px;
    background: #ffffff;
    min-width: 180px;
    padding: 5px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
}

/* Show on click (Bootstrap adds 'show') */
.dropdown-submenu.show>.sub-dropdown {
    display: block;
}

/* Sub dropdown items */
.sub-dropdown .dropdown-item {
    padding: 10px 10px;
    margin: 3px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Hover effect */
/* .sub-dropdown .dropdown-item:hover {
      background: linear-gradient(90deg, #e2ad0d, #c9980b);
      color: #fff !important;
      transform: translateX(3px);
    } */

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        text-align: center;
    }

    .estimate-btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }

    .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
    }
}

/* Mobile: Center the Estimate Button */
@media (max-width: 768px) {
    .navbar .nav-item {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .estimate-btn {
        display: inline-block;
        margin: 0 auto;
    }
}

/* Brand Wrapper */
.brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Company Name */
.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: #0e2a47;
    line-height: 1.2;
    white-space: nowrap;
}

/* Highlight word */
.brand-text span {
    color: #cf2e2e;
}

/* Tablet */
@media (max-width: 992px) {
    .brand-text {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .brand-wrap {
        gap: 8px;
    }

    .brand-text {
        font-size: 16px;
        white-space: normal;
    }
}

/* Extra small devices */
@media (max-width: 420px) {
    .brand-text {
        font-size: 14px;
    }
}

/* navbar end */


/* crousel end */

/* stats start */
.trust-strip {
    background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
    padding: 45px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    padding: 10px;
    transition: 0.4s ease;
}

.trust-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: radial-gradient(circle at top,
            rgba(207, 46, 46, 0.35),
            rgba(207, 46, 46, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.trust-icon::before {
    content: "";
    position: absolute;
    /* inset: -6px; */
    border-radius: 50%;
    border: 1px dashed rgba(207, 46, 46, 0.45);
}

.trust-icon::after {
    content: "";
    position: absolute;
    /* inset: 0; */
    border-radius: 50%;
    box-shadow: inset 0 0 12px rgba(207, 46, 46, 0.4);
}

.trust-icon i {
    font-size: 24px;
    color: #cf2e2e;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

.trust-text h6 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.trust-text span {
    font-size: 13px;
    color: #cfcfcf;
}

.trust-divider {
    position: relative;
}

.trust-divider::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
}

.trust-item:hover {
    transform: translateY(-4px);
}

.trust-item:hover .trust-icon {
    background: #cf2e2e;
    transform: rotate(6deg) scale(1.05);
    box-shadow: 0 0 25px rgba(207, 46, 46, 0.6);
}

.trust-item:hover .trust-icon i {
    color: #fff;
}

@media (max-width: 767px) {
    .trust-strip {
        padding: 30px 0;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }

    .trust-divider::after {
        display: none;
    }

    .trust-divider {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 22px;
        margin-bottom: 22px;
    }
}

/* start end */

/* about index start */
/* ===== About Section ===== */



/* about index end */

/* onwer start */


/* owner end */

/* why choose us start */
/* ================= SECTION ================= */
.why-machinery-section {
    padding: 100px 0;
    background: #ffffff;
}

.why-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

.why-title.show {
    opacity: 1;
    transform: translateY(0);
}

.why-title span {
    color: #cf2e2e;
    position: relative;
}

.why-title span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 80%;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #cf2e2e, transparent);
}

.why-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 15px auto 0;
    color: #555;
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}

.why-subtitle.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= CARD ================= */
.why-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

.why-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(207, 46, 46, 0.25);
}

/* ================= ICON ================= */
.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, #cf2e2e, #b91d1d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    position: relative;
    box-shadow: 0 12px 30px rgba(207, 46, 46, 0.45);
    transition: 0.45s ease;
}

.why-icon::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(207, 46, 46, 0.35),
            rgba(207, 46, 46, 0.05));
    z-index: -1;
}

.why-card:hover .why-icon {
    transform: scale(1.12) rotate(6deg);
}

.why-icon i {
    animation: iconFloat 2.5s ease-in-out infinite;
}

.why-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* ================= ANIMATION ================= */
@keyframes iconFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .why-title {
        font-size: 30px;
    }

    .why-card {
        padding: 30px 20px;
    }
}

/* why choose us end */

/* clients start */
/* SECTION */
.client-logo-section {
    padding: 20px 0;
    background: #FFF5F5;
}

.client-logo-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 800;
}

.client-logo-title span {
    color: #cf2e2e;
    position: relative;
}

.client-logo-title span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 80%;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #cf2e2e, transparent);
}

.client-logo-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 15px auto 50px;
    color: #555;
}

/* ===== SLIDER ===== */
.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 24px;
    animation: scrollClients 22s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* CARD */
.logo-card {
    min-width: 25%;
    background: #fff;
    border-radius: 16px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.logo-card img {
    max-height: 70px;
    filter: none !important;
    transition: 0.4s;
}

.logo-card:hover img {
    transform: scale(1.08);
}

/* ANIMATION */
@keyframes scrollClients {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .logo-card {
        min-width: 33.33%;
    }
}

@media (max-width: 768px) {
    .logo-card {
        min-width: 50%;
    }
}

@media (max-width: 480px) {
    .logo-card {
        min-width: 100%;
    }
}

/* client end */

/* gallery start */
/* ================= GALLERY ================= */
.brand-gallery-area {
    padding: 30px 0;
    background: linear-gradient(180deg, #fffafa, #ffffff);
    animation: sectionFadeUp 1.2s ease forwards;
}

@keyframes sectionFadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-gallery-heading {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 800;
}

.brand-gallery-heading span {
    color: #cf2e2e;
    position: relative;
}

.brand-gallery-heading span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 80%;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #cf2e2e, transparent);
}

.brand-gallery-text {
    text-align: center;
    max-width: 650px;
    margin: 18px auto 60px;
    color: #666;
}

/* ===== GALLERY CARD ===== */
.brand-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.45s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeUp 0.8s ease forwards;
}

.brand-gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.6s ease;
}

.brand-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(207, 46, 46, 0.18);
}

.brand-gallery-card:hover img {
    transform: scale(1.12);
}

/* stagger animation */
.brand-gallery-card:nth-child(1) {
    animation-delay: 0.1s;
}

.brand-gallery-card:nth-child(2) {
    animation-delay: 0.2s;
}

.brand-gallery-card:nth-child(3) {
    animation-delay: 0.3s;
}

.brand-gallery-card:nth-child(4) {
    animation-delay: 0.4s;
}

.brand-gallery-card:nth-child(5) {
    animation-delay: 0.5s;
}

.brand-gallery-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== VIEW MORE BUTTON ===== */
.gallery-view-more {
    text-align: center;
    margin-top: 60px;
}

.gallery-view-more a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 42px;
    background: #cf2e2e;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 15px 30px rgba(207, 46, 46, 0.35);
    position: relative;
    overflow: hidden;
}

.gallery-view-more a i {
    transition: 0.4s ease;
}

.gallery-view-more a:hover {
    background: #a91f1f;
    transform: translateY(-4px);
    box-shadow: 0 25px 45px rgba(207, 46, 46, 0.45);
}

.gallery-view-more a:hover i {
    transform: translateX(6px);
}

/* ===== MODAL ===== */
.modal-content {
    background: transparent;
    border: none;
    position: relative;
    text-align: center;
}

#galleryModalImg {
    max-height: 75vh;
    max-width: 90%;
    object-fit: contain;
    border-radius: 14px;
}

/* PERFECT CLOSE BUTTON */
/* PERFECT CLOSE BUTTON */
.gallery-close-btn {
    position: absolute;
    top: -35px;
    right: 0;
    width: 42px;
    height: 42px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    filter: invert(1);
    opacity: 1;
    z-index: 999;
    transition: all 0.3s ease;
}

/* HOVER COLOR FIX */
.gallery-close-btn:hover {
    background-color: #cf2e2e;
    /* ✅ exact red */
    transform: rotate(90deg) scale(1.05);
}

@media (max-width: 768px) {
    .brand-gallery-heading {
        font-size: 32px;
    }

    .brand-gallery-card img {
        height: 220px;
    }
}

/* gallery end */

/* contact banner start */
/* ================= CONTACT CTA ================= */
.contact-cta-section {
    /* padding: 20px 0; */
    background: linear-gradient(180deg, #ffecec, #ffffff);
}

/* FULL WIDTH CTA */
.contact-cta-box {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #cf2e2e, #9f1d1d, #cf2e2e);
    background-size: 200% 200%;
    border-radius: 0;
    padding: 70px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 35px 80px rgba(207, 46, 46, 0.45);
    overflow: hidden;
    animation: gradientMove 6s ease infinite, ctaFadeUp 1s ease forwards;
}

/* Gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glow layer */
.contact-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(255, 255, 255, 0.22),
            transparent 60%);
    pointer-events: none;
}

@keyframes ctaFadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16.5px;
    max-width: 620px;
    line-height: 1.75;
    margin: 0;
}

/* ===== CTA BUTTON ===== */
.cta-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: #ffffff;
    color: #cf2e2e;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: pulseBtn 2.8s infinite;
}

.cta-btn a i {
    font-size: 15px;
    transition: 0.4s ease;
}

.cta-btn a:hover {
    background: #fff1f1;
    transform: translateY(-5px);
}

.cta-btn a:hover i {
    transform: translateX(7px);
}

/* Button pulse */
@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 55px 8%;
    }

    .cta-text h2 {
        font-size: 30px;
    }

    .cta-text p {
        font-size: 15px;
    }
}

/* contact banner end */

/* footer start */

/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(180deg, #1a1a1a, #000);
    color: #ccc;
    padding: 40px 0 0;
}

.footer h4 {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: 22px;
    margin-bottom: 22px;
    position: relative;
}

.footer h4::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #cf2e2e;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer p {
    font-size: 15px;
    line-height: 1.8;
    color: #bbb;
}

/* LINKS */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #cf2e2e;
    padding-left: 6px;
}

/* CONTACT */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact i {
    color: #cf2e2e;
    font-size: 16px;
}

/* SOCIAL ICONS */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s ease;
}

.footer-social a:hover {
    background: #cf2e2e;
    transform: translateY(-5px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom span {
    color: #cf2e2e;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }
}


/* ===== FOOTER BRAND WITH IMAGE LOGO ===== */
.footer-brand {
    max-width: 340px;
}

.footer-logo-img {
    margin-bottom: 18px;
}

.footer-logo-img img {
    /*max-width: 200px;*/
    /* logo size control */
    max-height: 70px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    transition: 0.4s ease;
}

/* subtle hover effect */
.footer-logo-img img:hover {
    transform: scale(1.05);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.9;
    color: #bdbdbd;
}

/* footer end */

/* breadcrumb start */
/* ===== Breadcrumb Banner ===== */
.contact-banner {
    position: relative;
    background: url("images/ban1.webp") center/cover no-repeat;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.2s ease forwards;
}

.banner-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 10px 0;
    letter-spacing: 1px;
    color: #fff;
}

.banner-overlay h1 span {
    color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
    .banner-overlay h1 {
        font-size: 30px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .banner-overlay h1 {
        font-size: 24px !important;
        letter-spacing: 0.5px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .banner-overlay h1 {
        font-size: 30px !important;
        line-height: 1.2;
    }
}

.breadcrumb {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    margin: 0 6px;
    color: #fff;
}

/* Mobile devices */
@media (max-width: 768px) {
    .contact-banner {
        height: 160px;
    }
}

/* Small mobiles */
@media (max-width: 480px) {
    .contact-banner {
        height: 130px;
    }
}

/* breadcrumb end */

/* company profile start */
/* ================= FOUNDER SECTION ================= */
.company-founder-area {
    padding: 30px 0;
    background: linear-gradient(180deg, #fffafa, #ffffff);
    position: relative;
    overflow: hidden;
}

.company-founder-area::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: rgba(207, 46, 46, 0.08);
    border-radius: 50%;
}

/* LEFT CONTENT */
.company-founder-content {
    animation: contentFadeLeft 1.2s ease forwards;
}

.company-founder-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 18px;
    position: relative;
    padding-left: 16px;
}

.company-founder-content p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 70%;
    background: #cf2e2e;
    border-radius: 10px;
}

/* RIGHT IMAGE */
.company-founder-image {
    padding: 8px;
    border-radius: 14px;
    background: linear-gradient(135deg, #cf2e2e, #a91f1f);
    box-shadow: 0 30px 70px rgba(207, 46, 46, 0.35);
    animation: imageFadeRight 1.2s ease forwards;
}

.company-founder-image img {
    width: 100%;
    border-radius: 10px;
    background: #fff;
}

/* NAME */
.company-founder-name {
    margin-top: 22px;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    font-family: "Playfair Display", serif;
    color: #111;
}

.company-founder-name span {
    display: block;
    font-size: 17px;
    color: #cf2e2e;
    margin-top: 4px;
}

/* ANIMATIONS */
@keyframes contentFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes imageFadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .company-founder-area {
        padding: 80px 0;
    }

    .company-founder-image {
        margin-top: 30px;
    }

    .company-founder-name {
        font-size: 24px;
    }
}

.welcome-title {
    text-align: center;
    /* margin-bottom: 10px; */
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .welcome-title {
        padding: 30px 15px;
    }
}


.welcome-title span {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    color: #cf2e2e;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.welcome-title h1 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    font-weight: 800;
    color: #111;
    position: relative;
    display: inline-block;
}

.welcome-title h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #cf2e2e;
    margin: 14px auto 0;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-title h1 {
        font-size: 30px;
    }
}

/* ================= VISION SECTION ================= */
.company-vision-area {
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(207, 46, 46, 0.08), #ffffff);
    position: relative;
    overflow: hidden;
}

/* soft background shapes */
.company-vision-area::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 260px;
    height: 260px;
    background: rgba(207, 46, 46, 0.08);
    border-radius: 50%;
}

.company-vision-area::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: rgba(207, 46, 46, 0.06);
    border-radius: 50%;
}

.vision-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
    animation: fadeUp 1.1s ease forwards;
}

.vision-tag {
    display: inline-block;
    background: rgba(207, 46, 46, 0.12);
    color: #cf2e2e;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 0.4px;
}

.vision-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.35;
}

.vision-header h2 span {
    color: #cf2e2e;
    position: relative;
}

.vision-header h2 span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #cf2e2e, transparent);
    transform: translateX(-50%);
}

.vision-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.85;
}

/* ================= VISION CARD ================= */
.vision-card {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transition: 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1.2s ease forwards;
}

.vision-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(207, 46, 46, 0.08),
            transparent);
    opacity: 0;
    transition: 0.5s ease;
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(207, 46, 46, 0.2);
}

.vision-icon {
    width: 74px;
    height: 74px;
    background: linear-gradient(135deg, #cf2e2e, #a91f1f);
    color: #ffffff;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 15px 30px rgba(207, 46, 46, 0.4);
}

.vision-card h4 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.vision-card p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #555;
    margin: 0;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .company-vision-area {
        padding: 90px 0;
    }

    .vision-header h2 {
        font-size: 30px;
    }
}

/* ================= JOURNEY SECTION ================= */
.journey-modern {
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(207, 46, 46, 0.08), #ffffff);
    animation: sectionFade 1s ease forwards;
}

/* HEADER */
.journey-modern-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
    animation: fadeUp 1s ease forwards;
}

.journey-modern-header span.tag {
    display: inline-block;
    margin-bottom: 14px;
    color: #cf2e2e;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* HEADING */
.journey-modern-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.35;
}

.journey-modern-header h2 span {
    color: #cf2e2e;
    position: relative;
}

.journey-modern-header h2 span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #cf2e2e, transparent);
    transform: translateX(-50%);
}

.journey-modern-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
}

/* ================= JOURNEY CARDS ================= */
.journey-card {
    background: #ffffff;
    padding: 38px 36px;
    border-radius: 12px;
    border-left: 4px solid rgba(207, 46, 46, 0.6);
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    height: 100%;
    transition: 0.25s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards;
}

/* stagger effect */
.journey-card:nth-child(1) {
    animation-delay: 0.1s;
}

.journey-card:nth-child(2) {
    animation-delay: 0.2s;
}

.journey-card:nth-child(3) {
    animation-delay: 0.3s;
}

.journey-card:nth-child(4) {
    animation-delay: 0.4s;
}

.journey-card:hover {
    border-left-color: #cf2e2e;
    box-shadow: 0 12px 30px rgba(207, 46, 46, 0.15);
    background: #fffdfd;
}

.journey-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #cf2e2e;
    background: rgba(207, 46, 46, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.journey-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.journey-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sectionFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .journey-modern {
        padding: 20px 0;
    }

    .journey-modern-header h2 {
        font-size: 30px;
    }
}


/* contact us start */
/* ================= CONTACT SECTION ================= */
.contact-clean {
    padding: 30px 0;
    background: linear-gradient(180deg, rgba(207, 46, 46, 0.04), #ffffff);
    overflow: hidden;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================= TITLE ================= */
.contact-title {
    text-align: center;
    margin-bottom: 65px;
    animation: fadeUp 1s ease forwards;
}

.contact-title span.tag {
    color: #cf2e2e;
    font-weight: 600;
    letter-spacing: 0.4px;
    display: inline-block;
    margin-bottom: 6px;
}

.machinery-title {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: #111;
}

.machinery-title span {
    color: #cf2e2e;
    position: relative;
    display: inline-block;
}

.machinery-title span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 80%;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #cf2e2e, transparent);
}

.contact-title p {
    max-width: 650px;
    margin: 14px auto 0;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* ================= MAP ================= */
.contact-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    animation: fadeLeft 1.2s ease forwards;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

/* ================= FORM CARD ================= */
/* ================= FORM CARD ================= */
.contact-form-card {
    background: linear-gradient(180deg, #ffffff, #fafafa);
    border-radius: 22px;
    padding: 55px 50px;
    height: 100%;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #cf2e2e;
    animation: fadeRight 1.2s ease forwards;
}

.contact-form-card h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #111;
}

/* ================= INPUT GROUP ================= */
.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #cf2e2e;
    font-size: 14px;
    transition: 0.3s;
}

.textarea-group i {
    top: 20px;
    transform: none;
}

/* ================= INPUT ================= */
/* ================= FORM GROUP ================= */
.form-group {
    position: relative;
}

/* ICON */
.form-group i {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #cf2e2e;
    font-size: 14px;
    pointer-events: none;
}

/* TEXTAREA ICON FIX */
.textarea-group i {
    top: 16px;
    transform: none;
}

/* ================= INPUT ================= */
.form-control {
    width: 100%;
    height: 46px;
    border: none;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    padding: 10px 10px 10px 34px;
    /* left padding for icon */
    font-size: 15px;
    background: transparent;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #cf2e2e;
}

/* ================= TEXTAREA ================= */
textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 14px;
}

.contact-btn {
    margin-top: 25px;
    background: linear-gradient(135deg, #cf2e2e, #9e1f1f);
    color: #fff;
    border: none;
    padding: 14px 55px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(207, 46, 46, 0.35);
}

/* Hover */
.contact-btn:hover {
    background: linear-gradient(135deg, #9e1f1f, #cf2e2e);
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(207, 46, 46, 0.45);
}

/* Active click */
.contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(207, 46, 46, 0.35);
}

/* Focus */
.contact-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(207, 46, 46, 0.3);
}

/* Mobile */
@media (max-width: 576px) {
    .contact-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}


/* contact us end */

/* product page start */

/* ================= MACHINE DETAIL ================= */
.machine-detail-section {
    padding: 30px 0;
    background: linear-gradient(180deg, #f8f9fb, #ffffff);
}

/* CONTENT */
.machine-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0e2a47;
    margin-bottom: 12px;
    position: relative;
}

.machine-content h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #cf2e2e;
    display: block;
    margin-top: 10px;
    border-radius: 3px;
}

.machine-content .tagline {
    color: #cf2e2e;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.machine-content .desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

/* POINTS CARD */
.machine-points {
    list-style: none;
    padding: 22px 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
}

.machine-points li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.machine-points i {
    color: #cf2e2e;
    font-size: 14px;
}

/* CTA BUTTON */
.machine-actions {
    display: flex;
}

.primary-btn {
    background: linear-gradient(135deg, #cf2e2e, #9e1f1f);
    color: #fff;
    padding: 14px 42px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(207, 46, 46, 0.45);
    color: #fff;
}

/* IMAGE */
.machine-image {
    background: #ffffff;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.machine-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(207, 46, 46, 0.12),
            transparent);
    z-index: 1;
}

.machine-image img {
    width: 100%;
    border-radius: 14px;
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.machine-image:hover img {
    transform: scale(1.06);
}

/* ANIMATION */
.machine-content {
    animation: fadeLeft 1s ease forwards;
}

.machine-image {
    animation: fadeRight 1s ease forwards;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .machine-detail-section {
        padding: 55px 0;
    }

    .machine-content h2 {
        font-size: 28px;
    }
}

/* ================= VALUE HIGHLIGHT SECTION ================= */
.value-highlight {
    padding: 30px 0;
    background: linear-gradient(180deg, #fff6f6, #ffffff);
}

.value-heading {
    text-align: center;
    margin-bottom: 50px;
}

.value-heading h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0e2a47;
    margin-bottom: 8px;
}

.value-heading p {
    color: #666;
    font-size: 15px;
}

/* Card */
.value-card {
    background: #ffffff;
    padding: 38px 20px;
    border-radius: 20px;
    text-align: center;
    color: #0e2a47;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    border: 1px solid rgba(207, 46, 46, 0.15);
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Soft top accent */
.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cf2e2e, #9e1f1f);
}

/* Icon */
.value-icon {
    font-size: 38px;
    margin-bottom: 16px;
    color: #cf2e2e;
    transition: 0.3s ease;
}

/* Text */
.value-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Hover */
.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(207, 46, 46, 0.25);
}

.value-card:hover .value-icon {
    transform: scale(1.12);
}

/* Responsive */
@media (max-width: 768px) {
    .value-heading h3 {
        font-size: 26px;
    }

    .value-highlight {
        padding: 60px 0;
    }
}

/* product page end */




/*machine page style*/
#pageCont{
    
        background: #fbe4e4;
    
    h1,h2,h3,h4,h5,h6{
        color: #c33838;
        margin: 25px 0 10px 0;
    }
    
}


  .faq-section .accordion-button {
    font-weight: 600;
    background: #fff;
  }
  .faq-section .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #c33838;
  }
  .faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: #c33838;
  }
  .faq-section .accordion-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .faq-section .accordion-body {
    background: #fafafa;
    line-height: 1.7;
  }
  .faq-heading {
    color: #c33838;
    font-weight: 700;
  }
  
  .faq-cta {
  background: #fff3f3;
  border-left: 5px solid #c33838;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.faq-cta h3 {
  color: #c33838;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-cta p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

.faq-cta p:last-child {
  margin-bottom: 0;
}

