html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #1F2937;
    background: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* TOP BAR */

.top-bar{
    background:#111;
    color:#fff;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:42px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
}

.top-bar a:hover{
    color:#D62828;
}

/* STICKY HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

/* MOBILE HIDE TOPBAR */

@media(max-width:768px){

    .top-bar{
        display:none;
    }

}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee
}

.site-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo img {
    height: 90px;
    display: block
}

.logo-text {
    font-family: inherit;
    font-size: 28px;
    color: #1F2937;
    font-weight: 700;
    display: none
}

.main-nav {
    width: 100%;
    margin-top: 12px
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

.main-nav li {
    margin: 0;
    font-family: inherit;
}

.main-nav li+li {
    margin-left: 20px
}

.main-nav li+li:before {
    content: "|";
    margin-right: 20px;
    color: #1F2937;
}

.main-nav a {
    display: inline-block;
    padding: 6px 0;
    color: #1F2937;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px
}

.main-nav a:hover {
    color: #D62828;
}

.main-nav .active a {
    color: #D62828;
    font-weight: 800
}

@media (max-width:700px) {
    .logo img {
        height: 48px
    }

    .logo-text {
        display: block
    }

    .main-nav ul {
        gap: 8px
    }

    .main-nav li+li:before {
        margin-right: 8px
    }

    .main-nav {
        margin-top: 8px
    }

    .site-header .container {
        padding: 12px
    }
}


.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: #D62828;
    color: #fff;
    font-size: 22px;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width:768px) {

    .site-header .container {
        padding: 10px 15px;
        align-items: unset;
    }

    .logo img {
        height: 100px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        margin-top: 10px;
        background: #fff;
        border: 1px solid #e5e5e5;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        display: block;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav li+li {
        margin-left: 0;
    }

    .main-nav li+li:before {
        display: none;
    }

    .main-nav a {
        display: block;
        padding: 14px 15px;
        font-size: 14px;
    }

    .main-nav .active a {
        background: #D62828;
        color: #fff;
    }
}


.has-dropdown {
    position: relative;
}

/* Main Dropdown */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 2px solid #1F2937;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
    display: none !important;
    z-index: 9999;
    margin-top: 12px;
    padding: 0;
}

/* Hover Open */

.has-dropdown:hover>.dropdown-menu {
    display: block !important;
}

/* Arrow */

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 25px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 2px solid #1F2937;
    border-top: 2px solid #1F2937;
    transform: rotate(45deg);
}

/* Dropdown Items */

.dropdown-menu li {
    margin: 0 !important;
    width: 100% !important;
    border-bottom: 1px solid #ececec;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li::before {
    display: none !important;
}

.dropdown-menu a {
    display: block;
    padding: 16px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #D62828;
    color: #fff;
}

@media(max-width:768px) {

    .dropdown-menu {
        position: static;
        display: none !important;
        min-width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        transform: none;
    }

    .dropdown-menu.show {
        display: block !important;
    }

    .dropdown-menu::before {
        display: none;
    }

}


/* ============= Footer css ============= */
.footer {
    background: #f4f4f4;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.footer-left {
    max-width: 500px;
}

.footer-left h3 {
    color: #D62828;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-left p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

.footer-left a {
    color: #D62828;
    text-decoration: none;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Curves */

.shape-1 {
    width: 110px;
    height: 110px;
    border-top: 5px solid #D62828;
    border-left: 5px solid #D62828;
    border-radius: 100%;
    transform: rotate(-45deg);
    position: relative;
}

.shape-1::before,
.shape-1::after {
    content: "";
    position: absolute;
    inset: 15px;
    border-top: 5px solid #D62828;
    border-left: 5px solid #D62828;
    border-radius: 100%;
}

.shape-1::after {
    inset: 30px;
}

/* Circle */

.shape-2 {
    width: 110px;
    height: 110px;
    border: 4px solid #D62828;
    border-radius: 50%;
}

/* Square */

.shape-3 {
    width: 110px;
    height: 110px;
    border: 4px solid #D62828;
}

/* Triangle Pattern */

.shape-4 {
    width: 120px;
    height: 120px;
    position: relative;
}

.shape-4::before {
    content: "△ △ △\A△ △ △\A△ △ △";
    white-space: pre;
    color: #D62828;
    font-size: 30px;
    line-height: 1.2;
    position: absolute;
}

.footer-bottom {
    text-align: center;
    background: #d9d9d9;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
}

@media(max-width:768px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .footer-left h3 {
        font-size: 28px;
    }

    .footer-left p {
        font-size: 15px;
    }

    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .shape-4::before {
        font-size: 18px;
        line-height: unset;
        position: unset;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        width: 60px;
        height: 60px;
    }

    .shape-4 {
        width: 67px;
        height: 67px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    line-height: 60px;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all .3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@media(max-width:768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 30px;
        right: 15px;
        bottom: 15px;
    }
}




/* =========== Contact Page ===========*/
.map-section {
    padding: 20px 0 50px;
}

.map-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.map-wrapper {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.map-wrapper iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}





/* index page */

.hero-slider {
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: 750px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, .35);
    z-index: 1; */
}

/* Glass Blocks */

.glass-block {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(3px);
    z-index: 2;
}

.block1 {
    width: 250px;
    height: 250px;
    top: 80px;
    left: 30%;
}

.block2 {
    width: 180px;
    height: 180px;
    top: 180px;
    left: 45%;
}

.block3 {
    width: 220px;
    height: 220px;
    top: 60px;
    left: 55%;
}

/* Text Boxes */

.overlay-box {
    position: absolute;
    z-index: 5;
    background: rgba(26, 26, 26, .82);
    /* Black */
    border-left: 5px solid #D62828;
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 12px;
    color: #fff;
    max-width: 420px;
}

.left-box {
    left: 80px;
    bottom: 80px;
}

.right-box {
    right: 80px;
    color: #F5F5F5;
    bottom: 120px;
}

.overlay-box span {
    display: block;
    font-size: 20px;
    color: #F5F5F5;
    margin-bottom: 10px;
}

.overlay-box h2 {
    font-size: 35px;
    line-height: 1.15;
    font-weight: 700;
}

.swiper-slide-active .overlay-box {
    animation: slideUp .8s ease;
}

@keyframes slideUp {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .5;
}

.swiper-pagination-bullet-active {
    background: #D62828 !important;
    opacity: 1;
}
@media(max-width:1000px) {
     .overlay-box {
        width: 90%;
        max-width: none;
        left: 5% !important;
        right: auto !important;
        bottom: 20px !important;
        padding: 20px;
    }

}

@media(max-width:768px) {

    .heroSwiper {
        height: 550px;
    }

    .glass-block {
        display: none;
    }

    .overlay-box {
        width: 90%;
        max-width: none;
        left: 5% !important;
        right: auto !important;
        bottom: 20px !important;
        padding: 20px;
    }

    .right-box {
        display: none;
    }

    .overlay-box span {
        font-size: 16px;
    }

    .overlay-box h2 {
        font-size: 26px;
    }

}






.about-company {
    padding: 90px 0;
    background: #fff;
}

.about-company .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-company h2 {
    font-size: 35px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: inherit;
}

.about-company p {
    font-size: 22px;
    line-height: 1.55;
    color: #374151;
    margin-bottom: 2px;
    font-family: inherit;
}

@media(max-width:768px) {

    .about-company {
        padding: 50px 0;
    }

    .about-company h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .about-company p {
        font-size: 16px;
        line-height: 1.8;
    }

}




/* broucher page  */

.brochure-section {
    padding: 80px 0;
    background: #fff;
}

.brochure-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.brochure-box {
    text-align: center;
}

.brochure-image-link {
    display: inline-block;
}

.brochure-image-link img {
    max-width: 100%;
    width: auto;
    height: 400px;
    display: block;
    margin: auto;
    border: 1px solid #ddd;
    transition: .3s;
}

.brochure-image-link:hover img {
    transform: scale(1.02);
}

.brochure-content {
    margin-top: 20px;
}

.brochure-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

@media(max-width:768px) {

    .brochure-section {
        padding: 50px 0;
    }

    .brochure-content h3 {
        font-size: 22px;
    }

}





/* about page  */

.company-overview-section {
    padding: 40px 0 0;
    background: #fff;
}

.company-overview-container {
    max-width: 1200px;
    margin: auto;
}

.company-overview-content {
    padding: 0 20px 40px;
}

.company-overview-title {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    font-family: inherit;
}

.company-overview-text {
    font-size: 18px;
    line-height: 1.55;
    color: #374151;
    font-family: inherit;
}

.company-overview-image {
    width: 100%;
}

.company-overview-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

@media(max-width:768px) {

    .company-overview-section {
        padding: 40px 0 0;
    }

    .company-overview-content {
        padding: 0 15px 30px;
    }

    .company-overview-title {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .company-overview-text {
        font-size: 16px;
        line-height: 1.8;
    }

}





.application-section {
    padding: 20px 0;
    background: #f7f7f7;
}

.application-section .container {
    max-width: 1300px;
    margin: auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #D62828;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 42px;
    color: #111;
    margin: 12px 0;
    font-weight: 800;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.application-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
    height: 420px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.application-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.application-card:hover img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, .10));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.overlay h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.application-card:hover .overlay {
    background: linear-gradient(to top,
            rgba(211, 2, 2, 0.85),
            rgba(0, 0, 0, .15));
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .application-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .application-card {
        height: 320px;
    }

    .overlay {
        padding: 20px;
    }

    .overlay h3 {
        font-size: 24px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .application-section {
        padding: 60px 0;
    }

    .application-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title span {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .section-title h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-title p {
        font-size: 14px;
        line-height: 1.7;
    }

    .application-card {
        height: 280px;
        border-radius: 15px;
    }

    .overlay {
        padding: 18px;
    }

    .overlay h3 {
        font-size: 22px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .application-section {
        padding: 50px 0;
    }

    .application-card {
        height: 240px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .overlay h3 {
        font-size: 18px;
    }

}








.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.products-section {
    padding: 90px 0;
}

/* SECTION TITLE */

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span {
    color: #D62828;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-heading h1 {
    font-size: 50px;
    color: #111;
    margin: 15px 0;
    font-weight: 800;
}

.section-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

/* GRID */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */

.product-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: .5s;
    box-shadow:
        0 5px 20px rgba(0, 0, 0, .06);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .15);
}

/* TOP CORNER */

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;

    background: #D62828;

    clip-path: polygon(100% 0,
            0 0,
            100% 100%);

    z-index: 1;
}

/* IMAGE */

.product-image {
    height: 260px;
    background:
        linear-gradient(135deg,
            #f8f8f8,
            #ffffff);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.product-image img {
    width: 80%;
    transition: .6s;
}

.product-card:hover img {
    transform:
        scale(1.12) rotate(-4deg);
}

/* CONTENT */

.product-content {
    padding: 25px;
    position: relative;
}

.product-number {
    position: absolute;
    right: 20px;
    top: -25px;

    font-size: 60px;
    font-weight: 900;

    color:
        rgba(217, 4, 41, .10);
}

.product-content h1 {
    font-size: 24px;
    color: #111;
    line-height: 1.4;
    margin-bottom: 15px;

    min-height: 70px;
}

.product-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;

    min-height: 80px;
}

/* BUTTON */

.product-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;

    text-decoration: none;

    background: #111;
    color: #fff;

    padding: 14px 20px;
    border-radius: 10px;

    font-weight: 600;

    transition: .4s;
}

.product-btn:hover {
    background: #D62828;
}

.product-btn span {
    font-size: 20px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h1 {
        font-size: 40px;
    }

}

@media(max-width:576px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h1 {
        font-size: 32px;
    }

    .product-image {
        height: 220px;
    }

}






.contact-section {
    padding: 50px 0;
    background: #f8f9fb;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #D62828;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 800;
    color: #111;
    margin: 15px 0;
}

.section-title p {
    max-width: 700px;
    font-size: 16px;
    font-weight: 500;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .4s;
}

.info-card:hover {
    transform: translateY(-6px);
}

.icon {
    width: 60px;
    height: 60px;
    background: #D62828;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.contact-form-box {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #D62828;
}

.contact-btn {
    background: #D62828;
    color: #fff;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.contact-btn:hover {
    background: #111;
}

@media(max-width:991px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 34px;
    }

}




.gallery-section {
    padding: 90px 0;
    background: #f8f9fb;
}

.gallery-section .container {
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-heading span {
    color: #D62828;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.gallery-heading h2 {
    font-size: 48px;
    color: #111;
    margin: 15px 0;
    font-weight: 800;
}

.gallery-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: block;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(217, 4, 4, 0.6);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: .4s;
}

.gallery-overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #fff;
    padding: 12px 25px;
    border-radius: 40px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media(max-width:991px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-heading h2 {
        font-size: 34px;
    }

    .gallery-item {
        height: 280px;
    }

}



#formMessage {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    display: none;
    font-weight: 600;
}

#formMessage.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#formMessage.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}




.md-latest-products {
    padding: 120px 0;
    background:
        radial-gradient(circle at top right, #D6282815, transparent 35%),
        linear-gradient(135deg, #111, #1a1a1a, #222);
    overflow: hidden;
}

.md-latest-products .container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
}

.md-showcase-header span {
    color: #D62828;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.md-showcase-header h2 {
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 800;
}

.md-showcase-header p {
    color: #bdbdbd;
    line-height: 1.9;
    margin-bottom: 35px;
}

.md-all-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    background: #D62828;
    color: #fff;
    transition: .4s;
}

.md-all-products-btn:hover {
    background: #fff;
    color: #111;
}



.md-product-card {

    min-height: 530px;

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 28px;

    padding: 30px;

    position: relative;

    overflow: hidden;

    transition: .45s;
}

.md-product-card:hover {

    transform:
        translateY(-12px);

    border-color: #D62828;
}

.md-product-card::before {

    content: '';

    position: absolute;

    width: 250px;
    height: 250px;

    background: #D6282830;

    border-radius: 50%;

    top: -120px;
    right: -120px;

    filter: blur(70px);
}

.md-product-badge {

    position: absolute;

    top: 20px;
    right: 20px;

    background: #D62828;

    color: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.md-product-image {

    height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}

.md-product-image img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: .5s;
}

.md-product-card:hover .md-product-image img {
    transform: scale(1.08);
}

.md-card-content {
    text-align: center;
}

.md-card-content h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 110px;
    margin-bottom: 20px;
}

.md-card-content a{
    margin-top:auto;    
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding:14px 20px;
    border:1px solid #D62828;
    border-radius:50px;
    color:#D62828;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.md-card-content a:hover {
    color: #fff;
}

.md-product-slider {
    width: 100%;
    overflow: hidden;
}

.md-product-slider .swiper-wrapper {
    align-items: stretch;
    z-index: 111;
    background: #00000000;
}

.md-product-slider .swiper-slide {
    height: auto;
}

.md-pagination {
    text-align: center;
    margin-top: 40px;
}

@media(max-width:991px) {

    .md-latest-products .container {

        grid-template-columns: 1fr;
        gap: 50px;
    }

    .md-showcase-header {
        text-align: center;
    }

    .md-showcase-header h2 {
        font-size: 42px;
    }

}

@media(max-width:576px) {

    .md-showcase-header h2 {
        font-size: 32px;
    }

    .md-product-card {
        min-height: auto;
    }

    .md-card-content h1 {
        font-size: 20px;
    }

}






.hero-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .5;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #D62828;
    opacity: 1;
}







.mdi-faq-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.mdi-faq-heading {
    text-align: center;
    max-width: 750px;
    margin: auto auto 60px;
}

.mdi-faq-heading span {
    color: #D62828;
    font-weight: 700;
    letter-spacing: 3px;
}

.mdi-faq-heading h2 {
    font-size: 48px;
    margin: 15px 0;
    color: #111;
}

.mdi-faq-heading p {
    color: #666;
    line-height: 1.8;
}

.mdi-faq-wrapper {
    max-width: 950px;
    margin: auto;
}

.mdi-faq-item {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    border: 1px solid #eee;
}

.mdi-faq-question {
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mdi-faq-question span {
    font-size: 30px;
    color: #D62828;
    transition: .3s;
}

.mdi-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
}

.mdi-faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.9;
}

.mdi-faq-item.active .mdi-faq-answer {
    max-height: 300px;
}

.mdi-faq-item.active .mdi-faq-question span {
    transform: rotate(45deg);
}

@media(max-width:768px) {

    .mdi-faq-heading h2 {
        font-size: 34px;
    }

    .mdi-faq-question {
        font-size: 17px;
        padding: 20px;
    }

}



.mdi-premium-testimonials {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.mdi-premium-testimonials::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #D6282808;
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.mdi-ts-heading {
    text-align: center;
    max-width: 850px;
    margin: auto auto 70px;
}

.mdi-ts-heading span {
    color: #D62828;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
}

.mdi-ts-heading h2 {
    font-size: 46px;
    color: #111;
    margin: 20px 0;
    line-height: 1.1;
}

.mdi-ts-heading p {
    color: #666;
    line-height: 1.9;
}

.mdi-ts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 70px;
}

.mdi-ts-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
    transition: .4s;
    position: relative;
}

.mdi-ts-card:hover {
    transform: translateY(-10px);
}

.mdi-ts-card.featured {
    background: #D62828;
    color: #fff;
    transform: translateY(-25px);
}

.mdi-big-quote {
    font-size: 100px;
    line-height: 1;
    opacity: .15;
    position: absolute;
    top: 10px;
    right: 25px;
}

.mdi-ts-card.featured h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.mdi-ts-card p {
    line-height: 2;
    color: #666;
}

.mdi-ts-card.featured p {
    color: #fff;
}

.mdi-ts-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mdi-ts-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mdi-ts-client img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.mdi-ts-client h4 {
    margin: 0;
    color: #111;
}

.mdi-ts-card.featured h4 {
    color: #fff;
}

.mdi-ts-client span {
    color: #777;
    font-size: 14px;
}

.mdi-ts-card.featured span {
    color: #fff;
}

.mdi-ts-rating {
    color: #FFC107;
    font-size: 20px;
}

.mdi-review-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mdi-stat-box {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}

.mdi-stat-box h3 {
    font-size: 42px;
    color: #D62828;
    margin-bottom: 10px;
}

.mdi-stat-box span {
    color: #666;
}

@media(max-width:991px) {

    .mdi-ts-grid {
        grid-template-columns: 1fr;
    }

    .mdi-ts-card.featured {
        transform: none;
    }

    .mdi-review-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mdi-ts-heading h2 {
        font-size: 42px;
    }

}

@media(max-width:576px) {

    .mdi-review-stats {
        grid-template-columns: 1fr;
    }

    .mdi-ts-heading h2 {
        font-size: 32px;
    }

}




.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
}

.product-section {
    padding: 80px 0;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Gallery */

.product-gallery {
    position: sticky;
    top: 20px;
}

.main-image {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.main-image img {
    width: 100%;
    display: block;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.gallery-thumbs img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #eee;
    transition: .3s;
}

.gallery-thumbs img:hover {
    border-color: #D62828;
}

/* Info */

.product-info {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.product-category {
    display: inline-block;
    background: #D62828;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-description {
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-red {
    background: #D62828;
    color: #fff;
}

.btn-dark {
    background: #111;
    color: #fff;
}

/* Specs */

.spec-section {
    padding: 70px 0;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 25px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.spec-table th {
    width: 250px;
    background: #f3f3f3;
    padding: 15px;
    text-align: left;
}

.spec-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* Related */

.related-section {
    padding: 70px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.related-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    text-decoration: none;
    color: #222;
}

.related-card:hover {
    transform: translateY(-10px);
}

.related-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.related-card h3 {
    padding: 20px;
    font-size: 18px;
}

@media(max-width:992px) {

    .product-wrapper {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-title {
        font-size: 30px;
    }

}

@media(max-width:576px) {

    .related-grid {
        grid-template-columns: 1fr;
    }

}








.home-contact-cta {
    padding: 50px 0;
    background: #fff;
}

.home-contact-wrapper {

    background: #dfdfdf;

    border: 1px solid #ececec;

    border-radius: 30px;

    padding: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .06);

    position: relative;

    overflow: hidden;
}

.home-contact-wrapper::before {

    content: '';

    position: absolute;

    width: 300px;
    height: 300px;

    background: #D6282810;

    border-radius: 50%;

    top: -120px;
    right: -120px;
}

.home-contact-content {
    max-width: 700px;
}

.home-contact-tag {

    display: inline-block;

    color: #D62828;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.home-contact-content h2 {

    font-size: 52px;

    line-height: 1.1;

    color: #111;

    margin-bottom: 20px;

    font-weight: 800;
}

.home-contact-content p {

    color: #666;

    font-size: 17px;

    line-height: 1.9;
}

.home-contact-actions {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}

.home-contact-btn {

    padding: 18px 35px;

    border-radius: 60px;

    text-decoration: none;

    font-weight: 700;

    transition: .4s;
}

.primary-btn {

    background: #D62828;

    color: #fff;
}

.primary-btn:hover {

    background: #111;
}

.secondary-btn {

    border: 2px solid #D62828;

    color: #D62828;
}

.secondary-btn:hover {

    background: #D62828;

    color: #fff;
}

@media(max-width:991px) {

    .home-contact-wrapper {

        flex-direction: column;

        text-align: center;

        padding: 50px 30px;
    }

    .home-contact-content h2 {
        font-size: 40px;
    }

    .home-contact-actions {
        justify-content: center;
    }

}

@media(max-width:576px) {

    .home-contact-content h2 {
        font-size: 30px;
    }

    .home-contact-btn {
        width: 100%;
        text-align: center;
    }

}




/* 404 page  */
.error-404-section {
    min-height: 60vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at top right,
            rgba(214, 40, 40, .08),
            transparent 30%),
        #fff;

    overflow: hidden;
}

.error-404-container {
    max-width: 1200px;
    width: 100%;

    padding: 0px;

    position: relative;

    text-align: center;
}

.error-404-number {

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    font-size: 280px;

    font-weight: 900;

    color: rgba(214, 40, 40, .05);

    line-height: 1;

    user-select: none;

    z-index: 1;
}

.error-404-content {
    position: relative;
    z-index: 2;
}

.error-404-tag {

    display: inline-block;

    background: #D62828;

    color: #fff;

    padding: 15px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.error-404-content h1 {

    font-size: 70px;

    color: #111;

    margin-bottom: 20px;

    font-weight: 900;

    line-height: 1.1;
}

.error-404-content p {

    max-width: 700px;

    margin: auto;

    color: #666;

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 40px;
}

.error-404-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.error-home-btn {

    background: #D62828;

    color: #fff;

    text-decoration: none;

    padding: 16px 40px;

    border-radius: 60px;

    font-weight: 700;

    transition: .4s;
}

.error-home-btn:hover {

    background: #111;
}

.error-contact-btn {

    background: #fff;

    color: #111;

    border: 2px solid #111;

    text-decoration: none;

    padding: 16px 40px;

    border-radius: 60px;

    font-weight: 700;

    transition: .4s;
}

.error-contact-btn:hover {

    background: #111;

    color: #fff;
}

@media(max-width:991px) {

    .error-404-number {
        font-size: 180px;
    }

    .error-404-content h1 {
        font-size: 50px;
    }
}

@media(max-width:576px) {

    .error-404-number {
        font-size: 120px;
    }

    .error-404-content h1 {
        font-size: 34px;
    }

    .error-404-content p {
        font-size: 16px;
    }
}




.search-floating-btn{
    position:fixed;
    right:25px;
    bottom:95px;
    width:55px;
    height:55px;
    background:#d62828;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    cursor:pointer;
    z-index:99999;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
}

.search-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    display:none;
    justify-content:center;
    align-items:flex-start;
    padding-top:100px;
    z-index:999999;
}

.search-popup.active{
    display:flex;
}

.search-box{
    width:700px;
    max-width:95%;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
}

.search-header{
    display:flex;
}

.search-header input{
    flex:1;
    border:none;
    padding:18px;
    font-size:18px;
    outline:none;
}

.search-header button{
    border:none;
    background:#d62828;
    color:#fff;
    width:60px;
    cursor:pointer;
}

#searchResults{
    max-height:500px;
    overflow:auto;
}

.search-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:12px;
    border-bottom:1px solid #eee;
    text-decoration:none;
    color:#222;
    transition:.3s;
}

.search-item:hover{
    background:#f8f8f8;
}

.search-thumb{
    width:65px;
    height:65px;
    object-fit:cover;
    border-radius:8px;
    border:1px solid #eee;
    flex-shrink:0;
}

.search-info{
    flex:1;
}

.search-info h4{
    margin:0;
    font-size:17px;
    font-weight:600;
}

.search-type{
    display:block;
    font-size:11px;
    color:#D62828;
    text-transform:uppercase;
    margin-bottom:5px;
    font-weight:700;
}

.search-type{
    color:#d62828;
    font-size:12px;
    display:block;
    margin-bottom:5px;
}




