* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f9f9f9;
    padding-top: 90px;
}




.navbar {
    padding: 1px 0;
    transition: 0.3s ease-in-out;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    background-color: #181717;
}


.navbar-brand img {
    height: auto;
    width: 60px;
    transition: 0.3s;
    /* background-color: red; */
    margin: 0px;
    padding: 0px;
}


.navbar .nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    margin-left: 20px;
    color: #222 !important;
    position: relative;
    transition: 0.3s;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #ff4d00;
    transition: 0.3s;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.navbar .nav-link:hover {
    color: #ff4d00 !important;
}

.navbar .nav-link.active {
    color: #ff4d00 !important;
}

/* Mobile Styling */
@media (max-width: 991px) {

    .navbar {
        padding: 0px;
    }

    .navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
}



/* testing */


/* ================= CUSTOM BANNER SECTION ================= */

.custom-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    margin-top: -12px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

    .custom-banner {
        height: 25vh;
    }

    #homeBanner {
        max-height: 400px;
        padding: 5px 0px;
    }

    #homeBanner h2 {
        text-align: start;
    }

    /* .carousel .carousel-inner .carousel-item:before, */
    .carousel .carousel-inner .carousel-item:after {
        display: none;
    }


    footer {
        padding: 10px;
    }


}

/* ==================CUSTOM BANNER SECTION END============================ */

/* Carousel */
.carousel-item {
    min-height: 100vh;
    position: relative;
}

.carousel-item img {
    width: 40%;
    float: right;
    margin-top: 5%;
    margin-right: 8%;
}

/* Content */
.content {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
}

.content h4 {
    color: #FA4E05;
    margin-bottom: 10px;
}

.content h1 {
    font-size: 50px;
    font-weight: 300;
}

.content h1 small {
    display: block;
    font-size: 16px;
    margin-top: 5px;
    color: #666;
}

.content h2 {
    font-size: 25px;
    margin: 15px 0;
}

.content p {
    font-size: 14px;
    color: #555;
    margin-top: 15px;
}

.content .btn {
    border-radius: 25px;
    width: 200px;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .carousel-item img {
        width: 80%;
        float: none;
        display: block;
        margin: 20px auto;
    }

    .content {
        position: relative;
        width: 90%;
        left: 5%;
        transform: none;
        text-align: center;
        margin-top: 20px;
    }

    .content h1 {
        font-size: 28px;
    }

    .content h2 {
        font-size: 18px;
    }

    .content .btn {
        width: 100%;
    }
}

/* =========================== */
.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
    /* margin-top: -15px; */
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

/* .carousel .carousel-inner .carousel-item:before, */
.carousel .carousel-inner .carousel-item:after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 30%;
    right: 0;
    animation: slidedown 5.8s infinite;
}



.carousel .carousel-inner .carousel-item:after {
    background: linear-gradient(to right, #af0303, #330001);
}

/* 
.carousel .carousel-inner .carousel-item:before {
    background-color: #560000;
    right: 12%;
} */

/* .carousel .carousel-inner .carousel-item:nth-child(2):after {
    background-color: #00599a;
}

.carousel .carousel-inner .carousel-item:nth-child(2):before {
    background-color: #22096f;
    right: 12%;
}

.carousel .carousel-inner .carousel-item:nth-child(3):after {
    background-color: #8ac402;
}

.carousel .carousel-inner .carousel-item:nth-child(3):before {
    background-color: #1da3e0;
    right: 12%;
} */

.carousel .carousel-inner .carousel-item img {
    width: 40%;
    float: right;
    margin-top: 5%;
    margin-right: 7%;
    position: relative;
    z-index: 9;
    border-radius: 50%;
}

@keyframes slidedown {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

/* =========================== */
.catalog-section {
    padding: 15px 0;
    overflow: hidden;
    /* background-color: #ffffff; */
    /* background: linear-gradient(to right, #af0303, #330001); */
    /* background: linear-gradient(90deg, #af0303, #8b0202, #5a0101); */
    background: linear-gradient(to right, #f9f9f9 0%, #f9f9f9 70%, #af0303 70%, #330001 100%);
}


.marquee {
    display: flex;
    width: max-content;
    animation: scroll 90s linear infinite;
}

/* .catalog-item {
    min-width: 150px;
    margin: 0 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.catalog-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
    border: 3px solid #8a5a1f;
} */
.catalog-item {
    min-width: 150px;
    margin: 0 10px;
    text-align: center;
    text-decoration: none;
    /* color: #1a1a1a; */
    color: #111;
}

.catalog-item img {
    width: 170px;
    height: 170px;
    border-radius: 2px;
    padding: 10px;
    /* background-color: #fafafa; */
    background-color: #f3f3f3;
    object-fit: contain;
}



.catalog-section:hover .marquee {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {
    .catalog-item {
        min-width: 120px;
        margin: 0 5px;
    }

    .catalog-item img {
        width: 90px;
        height: 90px;
    }

    .catalog-section {
        padding: 10px 0;
    }
}

/* ===============home page image+content============= */
.info-section {
    width: 100%;
    /* padding: 80px 8%; */
    padding: 0px 8%;
    background: #f9f9f9;
    /* box-shadow: inset 0 2px 1px rgba(105, 0, 2, 0.5); */
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: yellow; */
    gap: 40px;
}

.info-row.reverse {
    flex-direction: row-reverse;
}

.info-img {
    flex: 1;
}

.info-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.info-content {
    flex: 1;
}

.border-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;

    /* Border Text Effect */
    color: transparent;
    -webkit-text-stroke: 2px #000;
}

.info-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
        text-align: center;
    }

    .info-row.reverse {
        flex-direction: column;
    }

    .border-heading {
        font-size: 32px;
    }

    .catalog-section {
        background: #fff;
    }
}

/* ===============home page image+content end============= */

/* ===============home page product section start============= */
.future-products {
    padding: 70px 20px;
    background: linear-gradient(to right, #af0303, #7a0202, #330001);
    text-align: center;
    color: #fff;
}

.future-title {
    font-size: 38px;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Grid Layout */
.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card Design */
.future-card {
    background-color: #f3f3f3;
    border-radius: 25px;
    padding: 20px;
    backdrop-filter: blur(15px);
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #181717;
}

.future-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Image Box */
.img-box {
    overflow: hidden;
    border-radius: 20px;
}

.img-box img {
    width: 100%;
    transition: 0.4s;
}

.future-card:hover img {
    transform: scale(1.1);
}

/* Button */
.buy-btn {
    margin-top: 15px;
    padding: 10px 22px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    background: linear-gradient(to right, #af0303, #7a0202, #330001);
    color: #fff;
    transition: 0.3s;
}

.buy-btn:hover {
    opacity: 0.8;
}

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {
    .future-title {
        font-size: 26px;
    }

    .future-products {
        padding: 50px 15px;
    }
}

/* ===============home page product section end============= */

/* =====================main products section==================================== */
.products-section {
    background: #f8f9fb;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-card img {
    border-radius: 15px;
}

.enquiry-btn {
    /* background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5); */
    background: linear-gradient(to right, #af0303, #7a0202, #330001);

    color: #fff;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
}

.enquiry-btn:hover {
    opacity: 0.85;
    color: #fff;
}

.view-all-btn {
    background: #111;
    color: #fff;
    border-radius: 30px;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #333;
    color: #fff;
}

/* =======================WHY CHOOSE US============================= */
.why-choose {
    background: #f8f9fb;
}

.feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5); */
    background: linear-gradient(to right, #af0303, #7a0202, #330001);
    color: #fff;
    font-size: 24px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

/* Mobile Spacing */
@media (max-width: 768px) {
    .feature-box {
        padding: 25px 15px;
    }
}

/* ===================Offer banner ========================== */
.offer-banner {
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    border-radius: 20px;
}

.offer-btn {
    background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5);
    border: none;
    color: #fff;
    border-radius: 30px;
    transition: 0.3s;
}

.offer-btn:hover {
    opacity: 0.85;
    color: #fff;
}

/* Extra spacing for mobile */
@media (max-width: 768px) {
    .offer-banner {
        text-align: center;
    }
}

/* ===================Offer banner end========================== */



/* ==============testimonials============================== */
.testimonials {
    background: #f8f9fb;
}

.testimonial-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.stars i {
    color: #ffc107;
    font-size: 14px;
}

/* ==============testimonials end============================== */


/* ==============Footer==================== */
.footer-section {
    background: #111;
    color: #dddcdc;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-subtitle {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #222;
    margin-right: 8px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5);
}

.footer-line {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ==============Footer End==================== */



#homeBanner button {
    background: linear-gradient(to right, #af0303, #330001);
    color: #fff;
    border-color: #610101;
}

.lead{
    font-size: 18px;
}

