﻿* {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
}
body, html {
    width: 100vw;
    overflow-x: clip;
}
/*=============== Font Family ==================*/
.exo-2-light {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
.exo-2-regular {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.exo-2-SemiBold {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.roboto-semibold {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
/*============ colour ===========*/
.themePrimary {
    color: #ED1C24;
}
.themePrimary-bg {
    background-color: #ED1C24;
}
/*=============== custom classes =====================*/
.custom-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff !important;
    background-color: #ED1C24;
    padding: 8px 20px;
    border: 1px solid black;
    border-radius: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .custom-btn:hover {
        background-color: #fff;
        color: #ED1C24 !important;
        border-color: #ED1C24;
        text-decoration: none;
    }

.custom-btn-mobilenav {
    display: inline-block;
    text-decoration: none;
    color: #ED1C24 !important;
    background-color: #fff;
    padding: 8px 20px;
    border: 1px solid black;
    border-radius: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.rounded-4 {
    border-radius: 0.75rem;
}
.ls-1 {
    letter-spacing: 2px;
}

/*=========== Layout Page ================*/
#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #ED1C24;
    color: white;
    border: 0.5px dashed black;
    border-radius: 0.75rem;
    padding: 5px 8px;
    cursor: pointer;
    z-index: 1000;
}
#topBtn:hover{
    border:1px dashed red;
    background-color:#fff;
    color:#ED1C24;
}
/*-- header --*/
.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .logo-center img {
        height: 80px;
    }
.navbar-nav .nav-link {
    color: black;
}
    .navbar-nav .nav-link:hover {
        color: #ED1C24;
    }
.overlay-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    height: 100vh;
    background: #ED1C24;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease;
}

    .overlay-menu.active {
        right: 0;
    }

.overlay-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

    .overlay-links li {
        margin: 20px 0;
    }

        .overlay-links li a {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 400;
            text-decoration: none;
            transition: color 0.3s;
        }

            .overlay-links li a:hover {
                color: #fff;
            }

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
}
/*--- fooer ------*/
footer img{
    height:130px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 0.75rem;
    font-size: 15px;
    color: #ED1C24 !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-links a:hover {
        transform: scale(1.1);
    }

/*================================= Home Page =========================================*/
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

/* From Uiverse.io by ilkhoeri */
.button {
    --h-button: 48px;
    --w-button: 102px;
    --round: 0.75rem;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.25s ease;
    background: radial-gradient( 65.28% 65.28% at 50% 100%, rgba(237, 28, 36, 0.8) 0%, rgba(237, 28, 36, 0) 100% ), linear-gradient(0deg, #ed1c24, #ed1c24);
    border-radius: var(--round);
    border: none;
    outline: none;
    padding: 12px 18px;
}

    .button::before,
    .button::after {
        content: "";
        position: absolute;
        inset: var(--space);
        transition: all 0.5s ease-in-out;
        border-radius: calc(var(--round) - var(--space));
        z-index: 0;
    }

    .button::before {
        --space: 1px;
        background: radial-gradient( 65.28% 65.28% at 50% 100%, rgba(237, 28, 36, 0.8) 0%, rgba(237, 28, 36, 0) 100% ), linear-gradient(0deg, #ed1c24, #ed1c24);
    }

    .button::after {
        --space: 2px;
        background: radial-gradient( 65.28% 65.28% at 50% 100%, rgba(237, 28, 36, 0.8) 0%, rgba(237, 28, 36, 0) 100% ), linear-gradient(0deg, #ed1c24, #ed1c24);
    }

    .button:active {
        transform: scale(0.95);
    }

.fold {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    height: 1rem;
    width: 1rem;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    background: radial-gradient( 65.28% 65.28% at 50% 100%, rgba(237, 28, 36, 0.8) 0%, rgba(237, 28, 36, 0) 100% ), linear-gradient(0deg, #ed1c24, #ed1c24);
    box-shadow: 0 0 3px black;
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: var(--round);
}

    .fold::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 150%;
        height: 150%;
        transform: rotate(45deg) translateX(0%) translateY(-18px);
        background-color: #e8e8e8;
        pointer-events: none;
    }

.button:hover .fold {
    margin-top: -1rem;
    margin-right: -1rem;
}

.points_wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

    .points_wrapper .point {
        bottom: -10px;
        position: absolute;
        animation: floating-points infinite ease-in-out;
        pointer-events: none;
        width: 2px;
        height: 2px;
        background-color: #fff;
        border-radius: 9999px;
    }

@keyframes floating-points {
    0% {
        transform: translateY(0);
    }

    85% {
        opacity: 0;
    }

    100% {
        transform: translateY(-55px);
        opacity: 0;
    }
}

.points_wrapper .point:nth-child(1) {
    left: 10%;
    opacity: 1;
    animation-duration: 2.35s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(2) {
    left: 30%;
    opacity: 0.7;
    animation-duration: 2.5s;
    animation-delay: 0.5s;
}

.points_wrapper .point:nth-child(3) {
    left: 25%;
    opacity: 0.8;
    animation-duration: 2.2s;
    animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(4) {
    left: 44%;
    opacity: 0.6;
    animation-duration: 2.05s;
}

.points_wrapper .point:nth-child(5) {
    left: 50%;
    opacity: 1;
    animation-duration: 1.9s;
}

.points_wrapper .point:nth-child(6) {
    left: 75%;
    opacity: 0.5;
    animation-duration: 1.5s;
    animation-delay: 1.5s;
}

.points_wrapper .point:nth-child(7) {
    left: 88%;
    opacity: 0.9;
    animation-duration: 2.2s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(8) {
    left: 58%;
    opacity: 0.8;
    animation-duration: 2.25s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(9) {
    left: 98%;
    opacity: 0.6;
    animation-duration: 2.6s;
    animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(10) {
    left: 65%;
    opacity: 1;
    animation-duration: 2.5s;
    animation-delay: 0.2s;
}

.inner {
    z-index: 2;
    gap: 6px;
    position: relative;
    width: 100%;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease-in-out;
}

    .inner svg.icon {
        width: 18px;
        height: 18px;
        transition: fill 0.1s linear;
    }

.button:focus svg.icon {
    fill: white;
}

.button:hover svg.icon {
    fill: transparent;
    animation: dasharray 1s linear forwards, filled 0.1s linear forwards 0.95s;
}

@keyframes dasharray {
    from {
        stroke-dasharray: 0 0 0 0;
    }

    to {
        stroke-dasharray: 68 68 0 0;
    }
}

@keyframes filled {
    to {
        fill: white;
    }
}

/*----------- about section ------------*/
.about-section {
    position: relative;
    z-index: 1;
}

 .underline {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ED1C24;
    border-radius: 2px;
}

.bg-text {
    position: absolute;
    bottom: -5%;
    right: 5%;
    font-size: 12rem;
    font-weight: 800;
    color: rgba(237, 28, 36, 0.05);
    letter-spacing: 10px;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}
/*---------- product section ----------------*/
.products-section {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9; 
}

    .products-section .bg-image {
        background-image: url('../images/product-bg.jpg'); 
        background-size: cover;
        background-position: center;
        opacity: 0.8; 
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .products-section .container {
        position: relative;
        z-index: 2;
    }

.product-card img {
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform:scale(1.05);
}

/*----- news section -------*/
.read-more {
    color: #ED1C24;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .read-more:hover {
        color: #ED1C24;
        letter-spacing: 1px;
    }

/*================= About page ==================*/
.about-border-box {
    border: 2px solid #ED1C24;
    border-radius: 0.75rem;
    position: relative;
}

.about-heading {
    position: absolute;
    top: 0;
    left: 15%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 0 20px;
    color: rgba(237, 28, 36, 0.4);
    font-weight: 800;
    font-size:3rem;
    text-transform: uppercase;
}

.core-value-card {
    border-left: 5px solid #ED1C24;
    padding: 20px 25px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.06);
}
/* Make wrapper square (1:1) and responsive */
.svg-square {
    width: 600px; /* change this to control size */
    aspect-ratio: 1 / 1; /* ensures square box */
    display: inline-block;
    overflow: hidden;
}

    /* make SVG fill the wrapper */
    .svg-square svg {
        width: 100%;
        height: 100%;
        display: block;
    }
    
/*==============news page ===========*/
.news-index {
    background: #fff;
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 20px; 
}

    .sticky-wrapper img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: 12px;
    }

.news-index .container,
.news-index .row {
    overflow: visible !important;
}

/*-- news detail page --*/
.date-pill {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    color: #555;
}

.news-body {
    position: relative;
    padding-left: 2rem;
}

.highlight-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ED1C24;
    border-radius: 2px;
    animation: growBar 1s ease-in-out;
}

@keyframes growBar {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}
/*=========== Contact page ==========*/
    .contact-form input,
    .contact-form textarea {
        border: 1px solid #dee2e6;
        transition: all 0.3s ease;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #ED1C24;
            box-shadow: 0 0 5px rgba(237, 28, 36, 0.2);
        }

/*================ Product page ==================*/
.products-card {
    overflow: hidden;
    border: 1px solid #eee;
    cursor: pointer;
    background-color: #fff;
}

    .products-card img {
        /*height:300px;*/
        width:100%;
        object-fit:cover;
        transition: transform 0.5s ease;
    }

    .products-card:hover img {
        transform: scale(1.07);
    }

    .products-card:hover {
        border-color: rgba(237, 28, 36,0.2);
    }

/*--- product deail page ----*/
.specs-box {
    background: rgba(237, 28, 36, 0.05);
    border: 1px solid #e6e6e6;
    transition: box-shadow 0.3s ease;
}
    .specs-box:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .specs-box li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 5px;
        font-size: 16px;
        border-bottom: 1px solid #eaeaea;
        transition: all 0.3s ease;
    }

        .specs-box li:last-child {
            border-bottom: none;
        }

        .specs-box li:hover {
            background: #fff;
            transform: translateX(5px);
        }

.btn-enquiry {
    background: #ED1C24;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

    .btn-enquiry:hover {
        transform: translateY(-3px);
        color: #fff;
        opacity: 0.9;
    }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

    .btn-whatsapp:hover {
        background: #1ebe57;
        color: #fff;
        transform: translateY(-3px);
    }

.product-detail-section{
    position:relative;
}
.product-image-card {
    position: sticky;
    top: 50px;
}
    .product-image-card img {
        width:100%;
        height:auto;
        object-fit:cover;
    }
.product-detail-section .container,
.product-detail-section .row {
    overflow: visible !important;
}

.product-enquiry-form input,
.product-enquiry-form textarea {
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

    .product-enquiry-form input:focus,
    .product-enquiry-form textarea:focus {
        border-color: #ED1C24;
        box-shadow: 0 0 5px rgba(237, 28, 36, 0.2);
    }

.sub-product h4{
    color:#ED1C24;
}
/*=============================== admin login page ==================================*/
.login-card {
    border: 2px solid #ED1C24;
    border-radius: 0.75rem;
    max-width: 600px;
    width: 100%;
}

.admin-page-logo {
    height: 100px;
    margin-top: -100px;
    background: #fff;
}

.login-card input,
.login-card textarea {
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

    .login-card input:focus,
    .login-card textarea:focus {
        border-color: #000;
        box-shadow: 0 0 5px rgba(237, 28, 36, 0.2);
    }