﻿@charset "UTF-8";

.row, body {
    margin: 0px !important;
}

html {
    scroll-behavior: smooth;
}

a {
    color: black;
    text-decoration: none;
}

:root {
    --ThemePrimaryColor: #262237;
    --ThemeSecondaryColor: #3f4fde;
    --Card-ButtonShadows: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    --BlueColor: #3d55da;
    --YellowColor: #f5b10a
}

.ThemePrimaryColor {
    color: var(--ThemePrimaryColor);
}

.btn-primary {
    background: var(--ThemePrimaryColor);
    color: white;
    border: none;
    box-shadow: var(--Card-ButtonShadows)
}

.card {
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: var(--Card-ButtonShadows)
}

.btn-primary:hover {
    background: var(--ThemeSecondaryColor);
    color: white;
    border: none
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../font/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../font/Montserrat-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../font/Montserrat-Bold.ttf') format('truetype');
}

.MontserratBold {
    font-family: 'Montserrat-Bold';
}

.GreenColor {
    color: forestgreen
}

.OrangeColor {
    color: orange
}

.MontserratMediumBold {
    font-family: 'Montserrat-Medium';
}

body {
    font-family: 'Montserrat-Regular';
}

/*  Navbar Start */
.page-content {
    margin-top: 3.6rem;
}

.nav-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0px 2rem;
    box-shadow: var(--Card-ButtonShadows);
    position: fixed;
    width: 100%;
    z-index: 999;
    background: white;
    top: 0;
}
/*
nav {
    float: right;
}*/

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    nav ul li {
        float: left;
        position: relative;
    }

        nav ul li a,
        nav ul li a:visited {
            display: block;
            padding: 10px;
            /* line-height: 57px; */
            /* background: #262626; */
            color: var(--ThemePrimaryColor);
            text-decoration: none;
            margin: 7px 12px 7px 0px;
            border-radius: 5px;
        }

            nav ul li a:hover,
            nav ul li a:visited:hover {
                background: linear-gradient(90deg, rgb(255 204 53) 0%, rgb(224 172 15) 100%)
            }

            nav ul li a:not(:only-child):after,
            nav ul li a:visited:not(:only-child):after {
                padding-left: 4px;
                content: " ▾";
            }

        nav ul li ul li {
            min-width: 190px;
        }

            nav ul li ul li a {
                padding: 15px;
                line-height: 20px;
            }

.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    box-shadow: var(--Card-ButtonShadows)
}

/* Mobile navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 54px;
    width: 54px;
}

#nav-toggle {
    position: absolute;
    left: 5px;
    top: 14px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

    #nav-toggle span,
    #nav-toggle span:before,
    #nav-toggle span:after {
        cursor: pointer;
        border-radius: 1px;
        height: 5px;
        width: 35px;
        background: var(--ThemePrimaryColor);
        position: absolute;
        display: block;
        content: "";
        transition: all 300ms ease-in-out;
    }

        #nav-toggle span:before {
            top: -10px;
        }

        #nav-toggle span:after {
            bottom: -10px;
        }

    #nav-toggle.active span {
        background-color: transparent;
    }

        #nav-toggle.active span:before, #nav-toggle.active span:after {
            top: 0;
        }

        #nav-toggle.active span:before {
            transform: rotate(45deg);
        }

        #nav-toggle.active span:after {
            transform: rotate(-45deg);
        }

.logo {
    height: 60px;
    padding: 10px;
}

.lang-toggle {
    display: inline-flex;
    /* border: 1px solid #ddd; */
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    font-family: Arial, sans-serif;
    position: relative;
    top: 13px;
    padding: 3px 4px;
    background: #f4f4f4;
}

    .lang-toggle button {
        border: none;
        background: transparent;
        padding: 2px 5px;
        font-size: 13px;
        cursor: pointer;
        color: var(--ThemePrimaryColor);
        transition: all 0.2s ease;
        border-radius: 3px;
        margin-right: 3px;
    }

        .lang-toggle button.active {
            background: white;
            font-weight: bold;
            color: var(--ThemePrimaryColor);
        }

        .lang-toggle button:hover {
            background: white;
        }

@media only screen and (max-width: 700px) {
    .lang-toggle {
        position: static !important
    }

    .nav-mobile {
        display: block;
    }

    .nav-container {
        display: block;
    }

    nav {
        width: 100%;
        /*        padding: 70px 0 15px;*/
    }

        nav ul {
            display: none;
        }

            nav ul li {
                float: none;
            }

                nav ul li a {
                    padding: 5px !important;
                }

                nav ul li ul li a {
                    padding-left: 30px;
                }

    .nav-dropdown {
        position: static;
    }
}

@media screen and (min-width: 701px) {
    .nav-list {
        display: block !important;
    }
}

/*  Navbar End */

/* Footer Start */

.footer {
    background: var(--ThemePrimaryColor);
    padding: 2rem;
    color: white;
    margin-top: 2rem;
}

    .footer svg {
        background: #777388;
        padding: 10px;
        border-radius: 50%;
        font-size: 30px;
        margin-bottom: 10px;
    }
/* Footer End */

/* HomePage Start */
.HomeHeader {
    background: linear-gradient(rgb(15 12 41 / 81%), rgb(4 4 10 / 84%)), url(../../Content/images/Headerbanner.png) center center no-repeat;
    background-size: cover;
    min-height: 350px;
    padding: 2rem;
    text-align: center;
    color: white;
}

.HeadingSection {
    text-align: center;
    padding: 2rem;
}

.YellowColor {
    color: var(--YellowColor);
}

.BlueColor {
    color: var(--BlueColor);
}

.GrayColor {
    color: gray
}

.ProductCards {
    margin-bottom: 1rem;
    cursor: pointer
}

    .ProductCards img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }


.zoom-in:hover {
    transform: scale(1.05);
    transition: transform 0.4s ease-in-out;
}
/* HomePage End */

/* DevelopmentPage Start */
.AppCard .JawadLogo {
    height: 145px;
    background: white;
    padding: 3.5rem 2rem;
    border-radius: 5px;
    box-shadow: var(--Card-ButtonShadows);
    margin-bottom: 2rem
}

.AppCard ul li::marker {
    color: var(--BlueColor)
}

.AppCard ul li {
    margin-bottom: 1rem
}

.RequestForm .card-header {
    background: var(--BlueColor);
    color: white;
    padding: 1rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.checkboxes {
    background: #f6f6f6;
    padding: 5px 10px;
    min-width: 72px;
    margin-right: 10px;
    border-radius: 5px;
}

/* DevelopmentPage End */

/* ContactUsPage Start */
.ContactDetails svg {
    background: var(--ThemePrimaryColor);
    padding: 10px;
    border-radius: 50%;
    position: relative;
    bottom: 6px;
    margin-right: 10px;
    color: white;
}

.checkboxesBox {
    display: flex
}

.select2-selection.select2-selection--single {
    padding: 4px !important;
    height: 37px !important;
}

.select2-selection__arrow {
    top: 5px !important;
    right: 7px !important;
}

.map-container {
    width: 100%;
    height: 300px; /* adjust height */
    border-radius: 12px;
    overflow: hidden;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
/* ContactUsPage End */

.modal-dialog {
    max-width: 60%;
    width: 50%;
    min-width: auto;
}

.modal-body {
    padding: 10px 15px;
    border-radius: 6px;
    max-height: 80vh;
    overflow: auto;
}

.container {
    max-width: 1350px !important;
}

@media (max-width:767px) {
    .container {
        max-width: 767px !important
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 1024px !important
    }
}

@media screen and (min-width: 1900px) {
    .container {
        max-width: 1350px !important
    }
}

@media screen and (min-width: 2800px) {
    .container {
        max-width: 2000px !important
    }
}


/* Site Responsive Css Start */
@media (min-width:300px) and (max-width:768px) {
    .HomeHeader {
        padding: 1rem !important
    }

        .HomeHeader h1, .HomeHeader h4 {
            font-size: 18px;
        }

        .HomeHeader button {
            margin-top: 10px !important;
        }

    .HeadingSection {
        padding: 1rem !important
    }

    .footer div {
        margin-bottom: 10px;
    }

    .modal-dialog {
        max-width: 95%;
        width: 950%;
        min-width: auto;
    }

    .checkboxesBox {
        display: block
    }
}
/* Site Responsive Css End */
.Starick::after {
    content: "*";
    color: red;
}
