 /* ===== Google Font Import - Poppins ===== */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
        

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            transition: all 0.4s ease;
        }
       .text-uppercase{
        text-transform: uppercase !important;
       }
       .back-to-top {
            position: fixed;
            bottom: 89px;
            right: 25px;
            display: none;
            background-color: #000;
            color: #fff;
            border: none;
            padding: 14px 20px;
            border-radius: 63%;
            font-size: 20px;
            cursor: pointer;
            z-index: 99!important;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top:hover {
            background-color: rgb(0, 0, 0);
        }
        /* ===== Colours ===== */
        :root {
            --body-color: #fff;
            --nav-color: #fff;
            --side-nav: #3f0d0b;
            --text-color: #000;
            --link-bgcolor: #eb5324;
        }

        body {
            background-color: var(--body-color) !important;
        }
        h1,h2,h3,h4,h5,h6{
            color: #EA1015 !important;
        }

        header {
            position: sticky;
            top: 0;
            left: 0;
            height: 85px;
            width: 100%;
            background-color: var(--nav-color);
            z-index: 100;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        }
        .nav-bar {
            position: relative;
            height: 100%;
            width: 100%;
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-bar .sidebarOpen {
            color: var(--text-color);
            font-size: 25px;
            padding: 8px;
            cursor: pointer;
            display: none;
            height: 40px;
            width: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            transition: background-color 0.3s ease;
        }
        .nav-bar .sidebarOpen:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }
        .nav-bar .logo a {
            font-size: 25px;
            font-weight: 500;
            color: #fff;
            text-decoration: none;
        }
        .nav-bar .nav-links {
            display: flex;
            align-items: center;
        }
        .nav-links li {
            margin: 0 5px;
            list-style: none;
        }
        .nav-links li a {
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 400;
            color: var(--text-color);
            text-decoration: none;
            padding: 10px;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .nav-links li a:hover {
            color: #cd3b19;
        }
        .menu {
            margin: 16px 0 0 0;
        }
        .sidebarClose {
            color: #fff;
            font-size: 30px;
            position: absolute;
            top: 20px;
            right: 20px;
            cursor: pointer;
            display:none !important;
            z-index: 101;
        }
        /* Sidebar and Responsive Menu */
        @media (max-width: 1200px) {
            .nav-bar .sidebarOpen {
                display: block !important;
            }
            .menu {
                position: fixed;
                height: 100%;
                width:400px;
                left: -100%;
                top: -16px;
                padding: 20px;
                /*background: linear-gradient(to right, #64241C, #8B3B1F);*/
                background: #000;
                backdrop-filter: blur(10px);
                z-index: 100;
                transition: all 0.4s ease;
            }
            .menu.open {
                left: 0;
            }
            .nav-links {
                flex-direction: column;
                padding-top: 30px;
            }
            .nav-links li a {
                display: block;
                margin-top: 20px;
                color: #fff;
            }
            .sidebarClose {
                display: block !important; 
            }
        }
        .searchBox {
            position: relative;
        }

        .searchToggle {
            height: 40px;
            width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            color: #fff;
            cursor: pointer;
            border-radius: 50%; /* Make it circular */
            background-color: #EA1015; /* Semi-transparent background */
            transition: background-color 0.3s ease;
        }

        .searchToggle:hover {
            background-color: #EA1026;; /* Lighten background on hover */
        }

        .searchToggle .bx {
            font-size: 20px; /* Increase icon size */
            color:#fff; /* Set icon color */
        }

      .search-field {
    position: absolute;
    bottom: -70px;
    right: 5px;
    height: 70px !important;
    width: 400px;
    display: flex;
    align-items: center;
    background-color: var(--body-color);
    padding:10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    border-top: 2px solid #de3a18;
    pointer-events: none;
    transition: all 0.1s ease-in-out;
}

.searchToggle.active + .search-field {
    bottom: -94px !important;
    opacity: 1;
    pointer-events: auto;
}

.search-field input {
    height: 100%;
    width: 85%; /* Adjust width to fit the icon */
    padding: 0 15px;
    outline: none;
    border: 1px solid #f9caaf;
    font-size: 14px;
    color: #010718;
    background-color: #F5F5F2;
}

.search-field .search-button {
    width: 49px;
    height: 49px;
    background-color: #EA1015;
    margin-left: 12px;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-field .search-button:hover {
    background-color: #e64a19;
}

.search-field .search-button i {
    font-size: 17px;
}
        .search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
}

.search-btn i {
    color: #555;
}

.search-btn:hover i {
    color: #000;
}
@media (min-width: 1200px) {
    .logo-toggle {
        display: none;
    }
}
@media (max-width:500px) {
     .menu {
        width: 100%;
}
.search-field {
        max-width: 300px;
}
}
/*about*/
a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.section_all {
    position: relative;
    /*padding-top: 80px;*/
    /*padding-bottom: 80px;*/
    /*min-height: 100vh;*/
}
.section-title {
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.section-subtitle {
    letter-spacing: 0.4px;
    line-height: 28px;
    max-width: 550px;
}

.section-title-border {
    background-color: #000;
    height: 1 3px;
    width: 44px;
}

.section-title-border-white {
    background-color: #fff;
    height: 2px;
    width: 100px;
}
.text_custom {
    color: #EA1015;
}

.about_icon i {
    font-size: 22px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    display: inline-block;
    background: #fff;
    border-radius: 35px;
    color: #EA1015;
    box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
    max-width: 450px;
    font-size: 24px;
}

.about_icon span {
    position: relative;
    top: -10px;
}

.about_content_box_all {
    padding: 10px;
}


/*index*/
#banner h1{
text-transform: uppercase;
color: #fff;
margin-top: 20px;
font-size: 30px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
   animation: slideInLeft 1s ease-out forwards;
}
#topbanner {
    display: none;
    background:#ff6600;
    position: relative;
    overflow: hidden; /* Prevents overflow of the content */
}
#section{
    /*margin-top:115px !important;*/
}
.alertbox{
    /*background: #fff9f5 !important;*/
    /*box-shadow:0 5px 0 #c05b34;*/
}
.alertbox h1{
    font-size: 28px;
}
.alertbox h2{
    font-size: 18px;
}
.alertbox p{
    color: #32424E;
}

 /* Define the keyframe for top-to-bottom animation */
        @keyframes slideFromTop {
            0% {
                opacity: 0;
                transform: translateY(-50px); /* Start above the page */
            }
            100% {
                opacity: 1;
                transform: translateY(0); /* End at the original position */
            }
        }

        /* Apply the animation to the alertbox */
        .alertbox {
            /*animation: slideFromTop 1s ease-in-out; /* 1s duration, ease-in-out timing */*/
        }
.breadcrumb {
    padding: 10px 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    margin: 0;
    display: none;
}

.breadcrumb-item {
    margin-right: 10px;
    position: relative;
    font-weight: 500; 
    color: #333; 
    display: none;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #dd3b19; 
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #cd3b19; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb-item.active {
    color: #999; 
}


.breadcrumb-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 100%;
    height: 2px; 
    background-color: #cd3b19;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.breadcrumb-item a:hover::after {
    transform: scaleX(1); 
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    animation: fadeIn 0.5s ease forwards;
}

/* contact us */
/* Call icon and text styling */
.call-section {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF4500; 
    font-size: 18px;
    font-weight: bold;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
    border: 1px dotted #FF4500; /* Updated to match call icon color */
    margin: 5px 0;
    cursor: pointer;
}

/* Icon styling */
.call-section i {
    font-size: 24px;
}

/* Text link styling */
.call-section a {
    color: #FF4500;
    text-decoration: none;
    font-weight: bold;
}

.call-section a:hover {
    color: #FF4500;
    text-decoration: underline;
}

/* Entrance animation */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hover animation */
.call-section:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .imaa {
        display: none;
    }
}

   .ctf {
            border: none;
            border-bottom: 2px solid rgb(128, 126, 126);
            background: transparent;
            outline: none;
            width: 100%;
            text-transform: capitalize;
            padding: 1rem 0.4rem;
        }

       /* Keyframe to animate the background color */
@keyframes animateClr {
    0% {
        background-color: #3f0d0b; /* Start color */
    }
    50% {
        background-color: #92231a; /* Mid color */
    }
    100% {
        background-color: #3f0d0b; /* End color */
    }
}

/* Apply animation to the .aside class */
.aside {
    background-color: #9F751C; /* Default background color */
    /*animation: animateClr 5s infinite ease-in-out; /* Duration and infinite loop */*/
}

                      .sbm {
    border-radius: 30px !important;
    color: var(--link-bgcolor)!important;
    transition: 0.5s !important;
    border: 1px solid var(--link-bgcolor) !important;
    outline: none !important;
    cursor: pointer;
    animation: 0.2s ease-in-out;
  }
 .sbm:hover{
    background: var(--link-bgcolor)!important;
    color: #fff !important;
 }
  /* contact us */

  /*footer*/
.footer {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(to right, #FF7E28, #FFB84D);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 250px;
}

.footer-section h3 {
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    color: #000;
}

.footer-section p,
.footer-section ul {
    margin: 10px 0;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 17px;
    text-transform: uppercase;
}

.footer-section a:hover {
    padding-right: 10px;
}

.footer-section a.footer-link {
    position: relative;
    padding-left: 10px;
    color: #000;
    font-weight: 420;
    text-decoration: none;
}

.footer-section a.footer-link:hover {
padding-left: 10px;
}

.footer-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.4s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-link {
    color: #fff; 
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contact-link i {
    background-color: #fff; 
    border-radius: 50%;
    padding: 10px;
    margin-right: 8px; 
    font-size: 14px; 
    color: #000; 
    transition: background-color 0.3s ease; 
}

  /*footer*/
/*product list*/
/* Product Link Styling */
.product-link {
    display: block;
    padding: 15px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-color, #333); /* Default text color */
    transition: all 0.4s ease; /* Smooth transition */
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500; /* Slightly bold for better readability */
    letter-spacing: 1px;
    border-left: 2px solid #c21e0c; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Soft shadow for visual emphasis */
}

.product-link:hover {
    color: #430907; /* Change text color on hover */
    background-color: rgba(255, 99, 71, 0.1); /* Change background on hover */
    transform: scale(1.05); /* Scale on hover */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Elevate on hover */
}

.product-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 99, 71, 0.2); /* Animated background */
    transition: left 0.4s ease;
    z-index: -1;
}

.product-link:hover::before {
    left: 0;
}
.product-links .col-md-4 {
    width: 33.33%;
}
/* Focus state for keyboard accessibility */
.product-link:focus {
    outline: 2px dashed #ff6347; /* Focus outline for keyboard navigation */
    transform: scale(1.05); /* Same scale effect on focus */
    border: none !important;
    background-color: rgba(255, 99, 71, 0.2); /* Background color change */
}

/* Responsive text and padding adjustments */
@media (max-width: 768px) {
    .product-link {
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .product-link {
        font-size: 14px;
        padding: 10px;
    }
}
@media (max-width:576px) {
    .ima img {
       display: none !important;
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-links .col-md-4 {
    opacity: 0;
    animation: fadeIn 0.7s ease forwards;
}

.product-links .col-md-4:nth-child(1) { animation-delay: 0.2s; }
.product-links .col-md-4:nth-child(2) { animation-delay: 0.3s; }
.product-links .col-md-4:nth-child(3) { animation-delay: 0.4s; }
.product-links .col-md-4:nth-child(4) { animation-delay: 0.5s; }
.product-links .col-md-4:nth-child(5) { animation-delay: 0.6s; }
  

  /*contact us button*/
 
 .sec{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.contact-btn {
    background-color: #fff;
    color: #EA1015;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
    background-color: #EA1015;
    color: #fff;
    transform: scale(1.1);
}


 