﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Viga&display=swap');

@import url("../bootstrap/font/bootstrap-icons.css");
/* ============== Resetting default browser styles  ================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-size: 18px;
}
/* ============== Basic typography styles ================ */
body {
    font-size: 1.125rem;
    font-family: "Raleway", sans-serif;
    color: #000000;
    font-weight: 400;
    font-style: normal;
    line-height: 1.875rem;
}

h1, .h1 {
    /*    font-size: 52px;*/
    font-size: 35px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: /*60px*/ 45px;
}

.font-lato {
    font-family: "Viga", sans-serif;
    font-weight: 400;
}

h2, .h2 {
    font-size: 40px;
    font-family: "Open Sans", sans-serif;
}

h3, .h3 {
    font-size: 30px;
    font-family: "Open Sans", sans-serif;
    line-height: 35.16px;
}

h5 {
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
}

h6 {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    line-height: 20px;
}

p, a, li {
    font-size: 16px;
    font-family: "Raleway", sans-serif;
    line-height: 25px;
}

@media(max-width: 1200px) and (min-width: 992px) {
    h1 {
        font-size: 35px;
        line-height: 45px;
    }
}

@media(max-width: 992px) {
    h1 {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width: 769px) {
    h1, .h1 {
        font-size: 25px;
        line-height: 50px;
    }

    h2, .h2 {
        font-size: 32px;
        line-height: 42px;
    }

    h3, .h3 {
        font-size: 26px;
        line-height: 32px;
    }

    h4, .h4 {
        font-size: 23px;
        line-height: 28px;
    }
}

@media(max-width: 768px) {
    h1, .h1 {
        line-height: 30px;
    }
}

@media (max-width: 400px) {
    h1, .h1 {
        font-size: 30px;
        line-height: 40px;
    }

    h2, .h2 {
        font-size: 26px;
        line-height: 42px;
    }

    h3, .h3 {
        font-size: 24px;
        line-height: 32px;
    }

    h4, .h4 {
        font-size: 23px;
        line-height: 28px;
    }

    p {
        font-size: 16px;
    }
}

ul {
    list-style: disc;
    padding-left: 32px;
}

li {
    margin: 6px 0px;
}

a, a:hover, a:focus {
    text-decoration: none !important;
    transition: .7s ease;
}

    a:hover {
        color: #FFCE28 !important;
    }

.text-yellow {
    color: #FFCE28;
}

.text-black {
    color: #000000;
}

.text-blue {
    color: #7c7c7c;
}

.btn-theme {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #000 !important;
    cursor: pointer;
    padding: 10px 40px;
    text-align: center;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background-color: #FFCE28;
    transition: all 0.3s ease;
}

    .btn-theme:hover {
        background-color: #01011F;
        color: #fff !important;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
    }

@media (max-width: 769px) {
    .btn-theme {
        padding: 10px 20px;
    }
}
/* ============== Footer ================ */
#footer {
    background: #161616;
    font-size: 14px;
}

    #footer a, #footer p {
        color: #fff !important;
        font-size: 14px !important;
    }

        #footer .fa, #footer a:hover, #footer ul .list-group-item a.active {
            color: #FFCE28 !important;
            transition: .7s ease;
        }

    #footer ul.text-center {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        justify-content: space-between;
    }

/* ============== Header ================ */
header {
    background-color: #fff !important;
    padding: 0px;
}

#header a, #header a.nav-link {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #01011F;
    padding: 0px 20px;
    font-weight: 600;
}
#header .nav-link {
    font-size: 15px;
    line-height: 16px;
}

#header a.active {
    color: #FFCE28;
}

    #header a:hover, #header a:focus #header a.active {
        color: #FFCE28 !important;
        transition: .7s ease;
    }

div#navbarTogglerDemo02 {
    background-color: #fff;
}

.btn-close-custom {
    background-color: #FFCE28;
}

@media (max-width: 992px) {
 
    #header .navbar-nav {
        text-align: left;
        margin-top: 15px;
    }

    #header .nav-item {
        border-bottom: 2px solid #f1f1f1;
        margin: 5px 0;
    }

    #header a, #header a.nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
a.navbar-brand {
    width: 420px;
    transition: width 0.3s ease-in-out;
}

.header-shrink a.navbar-brand {
    width: 300px; /* or any smaller size */
margin-bottom:4px;
}

.offcanvas-body li.nav-item {
    padding-bottom: 8px;
    padding-top: 8px;
}

span.navbar-toggler-icon {
    font-size: 17px;
}

button.btn-close.btn-close-custom {
    font-size: 12px;
}
@media (max-width: 992px) {

    a.navbar-brand {
        width: 215px;
        transition: width 0.3s ease-in-out;
        padding: 0px !important;
    }
    .header-shrink a.navbar-brand {
        width: 200px; /* or any smaller size */
        margin-bottom: 4px;
    }
}
    /*===========Home-banner============*/

    #home-banner {
        /* background-image: url('../img/group.png');*/
        /*padding: 120px 0px;*/
        margin-top: 100px;
    }

        #home-banner p.text-yellow {
            letter-spacing: 2px;
            font-weight: 600;
        }

    .banner {
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
        color: #FFFFFF;
        background-position: 69%;
    }

    h2 {
        color: #000000;
        font-weight: bold;
    }

        h2 span,
        h4 span,
        h5 span {
            color: #FFCE28;
        }

    #banner-caption {
        margin: auto;
        position: absolute;
        bottom: 40%;
        left: 0;
        right: 0;
        text-align: center;
        color: #FFF;
    }

        #banner-caption span {
            position: absolute;
            right: 0px;
            text-align: center;
            color: #FFCE28;
            font-size: 18px;
            font-weight: bold;
            bottom: -120px;
        }

    @media(max-width:1200px) {
        #banner-caption span {
            position: absolute;
            right: 0px;
            text-align: center;
            color: #FFCE28;
            font-size: 18px;
            font-weight: bold;
            bottom: -90px;
        }
    }

    @media(max-width:992px) {
        #banner-caption span {
            position: unset;
            text-align: center;
            color: #FFCE28;
            font-size: 18px;
            font-weight: bold;
        }
        #home-banner {
            margin-top: 60px;
        }
    }

    .paragraph {
        font-family: "Raleway", sans-serif;
        color: #000000;
        line-height: 27px;
    }

    .test-border {
        border-radius: 10px;
        border: 1px solid #FFCE28;
    }

    .bg-yellow {
        background: #FFCE28;
        border-radius: 8px;
    }
    /*===================about-us==================*/
    .count-down {
        position: absolute;
        bottom: 40px;
        left: 40px;
        font-size: 22px;
    }

        .count-down h5 {
            font-size: 22px;
            font-family: "Open Sans", sans-serif;
        }

    @media(max-width:1400px) {
        .count-down {
            position: absolute;
            bottom: 120px;
            left: 18px;
        }
    }

    @media(max-width:1200px) {
        .count-down {
            position: absolute;
            bottom: 350px;
            left: 25px;
        }

        #counter h2 {
            font-size: 30px;
        }

        #counter h5 {
            font-size: 16px;
        }
    }

    @media(max-width:992px) {
        .count-down {
            position: absolute;
            bottom: 45px;
            left: 70px;
        }

        #counter h2 {
            font-size: 40px;
        }

        #counter h5 {
            font-size: 22px;
        }
    }

    @media(max-width:768px) {
        .count-down {
            position: absolute;
            bottom: 30px;
            left: 30px;
        }

        #counter h2 {
            font-size: 40px;
        }

        #counter h5 {
            font-size: 22px;
        }
    }

    @media(max-width:550px) {
        .count-down {
            position: absolute;
            bottom: 30px;
            left: 30px;
        }

        #counter h2 {
            font-size: 30px;
        }

        #counter h5 {
            font-size: 16px;
        }
    }

    @media(max-width:400px) {
        .count-down {
            position: absolute;
            bottom: 20px;
            left: 20px;
        }

        #counter h2 {
            font-size: 30px;
        }

        #counter h5 {
            font-size: 16px;
        }
    }

    @media(max-width:350px) {
        .count-down {
            position: absolute;
            bottom: 18px;
            left: 18px;
        }

        #counter h2 {
            font-size: 28px;
        }

        #counter h5 {
            font-size: 13px;
        }
    }

    #quality-management,
    #director-desk {
        background: #fff0bf69;
    }

    .vision-box {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-radius: 15px;
        margin: 0px 10px;
    }

    #director-box h4 span {
        color: #FFCE28;
    }

    .vision-box {
        position: relative;
        background: #fff;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        z-index: 1;
        overflow: visible;
    }

    .vision-box {
        position: relative;
    }

        .vision-box > *::before,
        .vision-box > *::after {
            content: '';
            position: absolute;
            top: 5%;
            left: -2%;
            width: 103%;
            height: 90%;
            border-radius: 30px;
            border: 1px solid #FFCE28;
            box-sizing: border-box;
            transform-origin: center;
            z-index: 2;
            pointer-events: none;
        }

        .vision-box > *::before {
            transform: scale(1.05) skew(0, 5deg);
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%);
        }

        .vision-box > *::after {
            transform: scale(1.05) skew(0, 5deg);
            clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
        }
    /*=========================*/
    .color-black {
        color: #000 !important;
        font-weight: 600 !important;
    }
    /*===========products==========*/
    #prod img {
        max-width: 80%;
    }

    .yellow-bg {
        background-color: #FFCE28;
        padding-right: 60px;
        padding-left: 150px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .grey-bg {
        background-color: #E5EAEB;
    }

    strong {
        font-weight: 500;
        color: #FFCE28;
    }

    @media(max-width: 992px) {
        .yellow-bg {
            padding-right: 60px;
            padding-left: 60px;
        }
    }

    th.align-middle {
        background-color: #FFCE28 !important;
        font-size: 18px;
    }

    td {
        line-height: 27px;
    }

    .table-responsive {
        border-radius: 10px;
        font-size: 16px !important;
    }

    .table {
        border-collapse: collapse;
    }

    @media (min-width: 992px) {
        .nowrap-lg {
            white-space: nowrap;
        }
    }
    /*=========home-page===========*/
    #key-feature ul li {
        color: #FFFFFF;
        margin: 12px 0px;
        font-weight: 200;
    }

    @media(min-width:992px) {
        #key-feature {
            background: url(../img/bg-key-featurea.png);
            background-position: top center;
            background-size: cover;
        }
    }

    @media(max-width:992px) {
        #mobile-key {
            background: #01011F;
        }

            #mobile-key ul li {
                color: #FFFFFF;
            }

        #mobile-key-2 {
            background: #E5EAEB;
        }
    }

    #polyroid img:hover {
        opacity: 0.7;
    }
    /*==========================font-us========================*/
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="file"],
    textarea {
        background-color: #F1F1F1 !important;
        font-size: 15px;
        font-family: "Open Sans", sans-serif;
    }

    label,
    #enquiry-form,
    #enquiry-form strong {
        font-size: 16px;
        font-family: "Open Sans", sans-serif;
        font-weight: bold !important;
    }

    .card-background {
        background: center/150px 150px no-repeat url('../img/location-pin.png');
        position: relative;
        background-color: #fff;
    }

    .card-body {
        position: relative;
        z-index: 1; /* Ensure text is above the background image */
    }

    #contact-us-details h5 {
        font-size: 22px !important;
    }

    .iframe-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

        .iframe-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

    .nav-link.active, #footer ul li a.active {
        color: #FFCE28 !important;
    }
    /*================extra==============*/
    @media(max-width: 992px) {
        .iframe-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

            .iframe-container iframe {
                position: relative;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: 0;
            }
    }

    #banner-caption h1 {
        color: #000;
        text-shadow: 2px 2px #ffffff;
    }

    #banner-caption .text-yellow, #banner-caption span {
        text-shadow: 2px 2px #000;
    }
#products-banner {
    margin-top: 100px;
}
#products-banner img {
    width: 100%;
    object-fit: cover;
}

    @media(max-width: 992px) {
        #products-banner {
            margin-top: 62px;
        }
        #banner-caption span {
            background: #ffffff8a;
            padding: 6px 12px;
        }

        #banner-caption .text-yellow, #banner-caption span {
            color: #000;
            text-shadow: 2px 2px #fff;
            font-weight: 700 !important;
        }
    }


    .dropdown-item.active, .dropdown-item:active {
        background-color: unset;
    }