@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    /* Remove horizontal scroll */
}

.imgClass img {
    max-width: 100%;
    height: auto;
    /* display: flex;
    justify-content: center; */
}


:root {
    --primary-color: #FFFFFF;
    --text-color: #121212;
    --text-color-hover: #16469D;
    --col: #16469D;
    --bl: #585858;
    --hov: #2458B7;
    --wt: #fff;
}





/* *********************************************Navbar****************************************************** */




.header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    width: 100%;
    top: 0;
    padding: 0 15px;
    background-color: var(--primary-color);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1400px; */
    width: 80%;
    gap: 20px;
    margin: 0px;
}


.navLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    padding: 0 10px;
    width: 250px;
}

.navLogobg {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
    /* padding: 10px 20px; */
    /* background-color: white; */
    width: 90px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */


}

.navLogobg>img {
    max-height: 80%;

}

.navlinks {
    display: flex;
    list-style: none;
    gap: 20px;
    justify-content: center;
    align-items: center;


}

.navlinks>li {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0px;
    font-family: Inter;
}

.navlinks>li a:hover {
    color: #16469D !important;
}

.navlinks>li>a {
    font-size: inherit;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    /* text-transform: uppercase; */


}

/* Hover state */
.contact-link>a,
.contact-link>a {
    width: 109px;
    height: 38px;
    /* background-color: #16469D; */
    padding: 12px 14px 12px 14px;
    color: #ffff;
    border-radius: 4px;
}

.navlinks>li>button>a:hover,
.navlinks>li>button:active {
    text-decoration: none;
    color: #ffff !important;
    /* background-color: red; */
}


.dropdownHeader>a {
    display: flex;
    gap: 2px;
    align-items: center;

}

.dropdownHeader {
    position: relative;

}

.dropDownList {
    position: absolute;
    top: 100%;
    list-style: none;
    min-width: max-content;
    
    background-color: var(--primary-color);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: translateY(-20px);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
    flex-direction: column;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.dropdownHeader:hover .dropDownList {
    opacity: 1;
    visibility: visible;
    height: auto;
    transform: translateY(0px);
}


.dropDownList>li {
    padding: 10px 40px 10px 10px;

}

.dropdownHeader:hover {
    color: #e71717;
}


.dropDownList>li>a {
    text-decoration: none;
    color: black;
    font-family: 'Inter', sans-serif;
    font-size: 14px;

}



.ham-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: max-content;
    display: none;
    z-index: 55;
    cursor: pointer;

}

.ham-menu::before,
.ham-menu::after,
.ham-menu input {
    content: "";
    width: 30px;
    height: 4px;
    background-color: var(--text-color-hover);
    border-radius: 10px;
    /* transform-origin: left center; */
    transition: all 0.3s ease-in-out;
    border-radius: 555px;
}

.ham-menu input {
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: none;
}



@media screen and (max-width:1000px) {

    .dropDownList {
        position: absolute;
        top: 100%;
        list-style: none;
        min-width: max-content;
        left: -80px;
        background-color: var(--primary-color);
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transform: translateY(-20px);
        transform-origin: top;
        transition: all 0.3s ease-in-out;
        flex-direction: column;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .nav {

        width: 100%;
        justify-content: space-between;

    }

    .navlinks {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        /* Adjust this value based on your header height */
        right: 0px;
        background-color: var(--primary-color);
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 100;
        width: 50%;
    }

    .show {
        display: flex;
    }

    .ham-menu input:checked+.navlinks {
        display: flex;
    }

    .navlinks li {
        width: 100%;
        /* text-align: right; */
        padding: 10px;
    }

    .ham-menu {
        display: flex;
    }

    .ham-menu input:checked+.navlinks {
        display: flex;
    }

    #hamburger:checked~.navlinks {
        display: flex;
    }


    .ham-menu input:checked {

        opacity: 0;
        width: 0;
    }

    .ham-menu:has(input:checked)::before {

        transform: rotate(45deg) translate(8px, 6px);

    }

    .ham-menu:has(input:checked)::after {

        transform: rotate(-45deg) translate(8px, -6px);
    }



}



/* banner Style start  */
.bannerMainClass {
    display: flex;
    background-color: #F6FAFE;
    width: 100%;
    /* padding: 10% 0px; */

}

.imageandtextParent {
    width: 100%;
    padding: 0px 0px 0px 10%;
    /* margin: 0 auto; */
    display: flex;
    margin-left: auto;
    justify-content: flex-end;
}

.textClass {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.textClass>h1 {
    font-weight: 600;
    font-size: 44px;
    line-height: 64px;
    color: #121212;
    letter-spacing: 0.3px;
    /* width: 50%; */
}


.textClass>p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #2F2F2F;
    letter-spacing: 0.5px;
    width: 80%;
    opacity: 70%;
    text-transform: lowercase;
}

.grouped-text {
    display: flex;
    gap: 50px;
}

.counterGroup>h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    color: #16469D;
}

.counterGroup>h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #6B6B6B;
}

@media screen and (max-width: 768px) {
    .bannerMainClass .imageandtextParent .textClass {
        width: 100%;
        padding-top: 10%;
    }

    .imageandtextParent {
        padding-left: 0px;
    }
}

@media screen and (max-width: 540px) {
    .textClass>h1 {
        font-weight: 600;
        font-size: 24px;
        line-height: 24px;
        color: #121212;
        letter-spacing: 0.3px;
        width: 100%;
    }

    .textClass>p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.2px;
        text-align: justify;
        width: 100%;


    }

    .counterGroup>h2 {
        font-weight: 600;
        font-size: 25px;
        line-height: 25px;
        color: #16469D;
    }

    .counterGroup>h3 {
        font-weight: 600;
        font-size: 12px;
        line-height: 12px;
        color: #6B6B6B;

    }
    .imageandtextParent {
        margin: 0 auto;
       
    }
}

/* AboutUs Style Start  */
.aboutUsSection {
    /* ... */
}

.aboutUsMainClass {
    width: 80%;
    margin-top: 10%;
    margin-bottom: 10%;
}

.aboutUsCards {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}



.imageBox {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: flex-start;
}

.imageBox2 {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: flex-end;
}

/* .aboutUsLeft {
    position: relative;
} */
.readMoreBtn {
    display: none;
    /* position: absolute;
    top: 50%;
    left: 50%; */
    color: #ffff;
    border: 1px solid #16469D;
    text-decoration: none;
    padding: 12px 15px 12px 15px;
    background-color: #16469D;
    cursor: pointer;
    border-radius: 4px;
    width: 122px;
    height: 46px;
}

.readMoreBtn:hover {
    border: 1px solid #16469D;
}

.readMoreBtn:focus {
    border: 1px solid #16469D;
}

#aboutUsText.truncated {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Adjust the number of lines you want to show */
    -webkit-box-orient: vertical;
}

.aboutUsLeft>h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    color: #333333;
    font-family: 'Inter', sans-serif;

}

.aboutUsLeft>p {
    font-weight: 400;
    font-size: 18px;
    line-height: 21.78px;
    color: #333333;
    opacity: 80%;
    width: 80%;
    font-family: 'Inter', sans-serif;
    /* text-align: justify; */

}

.aboutUsCardImageFirst {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 292px !important;
    background-color: #F4F4F4;
    border-radius: 10px;
    margin: 0px;
    padding: 0px;
    height: 169px;
}

.aboutUsCardImageSecond {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 292px;
    background-color: #F4F4F4;
    border-radius: 10px;
    margin: 0px;
    padding: 0px;
    height: 169px;
}

@media (max-width: 768px) {
    .aboutUsLeft>h1 {
        font-size: 38px;
        line-height: 52px;
    }

    .aboutUsMainClass {
        width: 100%;
    }

    .aboutUsCards {
        width: 100%;
        display: flex;
        /* flex-direction: column;  */
        justify-content: center;
        gap: 10px;
    }

    .aboutUsLeft>p {
        font-size: 14px;
        line-height: 18.78px;
        width: 100%;
        text-align: justify;
    }

    .imageBox {
        justify-content: center;
    }

    .imageBox2 {
        display: flex;
        justify-content: center;
    }

    .aboutUsCardImageFirst {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 292px !important;
        background-color: #F4F4F4;
        border-radius: 10px;
        margin: 0px;
        padding: 0px;
        height: 169px;
    }

    .aboutUsCardImageSecond {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 292px;
        background-color: #F4F4F4;
        border-radius: 10px;
        margin: 0px;
        padding: 0px;
        height: 169px;
    }

}

/* AboutUs Style End  */




/* Our Product Style Start */

.productHeading {
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    color: #333333;
    font-family: 'Poppins', ;
}

.productDescription {
    font-weight: 400;
    font-size: 18px;
    line-height: 21.78px;
    color: #333333;
    font-family: 'Inter', ;
    text-align: center;
    width: 45%;
}

.pro-class {
    width: 80%;
}

.scrollable-div {
    overflow-x: auto;
}

.card {
    width: 100%;
    height: 290px;
    margin-bottom: 20px;
    /* Add margin for spacing between cards */
}

.card>img {
    max-width: 100%;
    height: 100%;
}

.card-text {
    flex-grow: 1;
}
.img-fluid{
    width: 60%;
}
.aa>a {
    border: 1px solid #ffff;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    background-color: #ffff;
    gap: 8px;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    outline: none;
    line-height: 19px;
    cursor: pointer;
    /* Add cursor pointer to indicate it's clickable */
    /* padding-left: 5%; */
    /* Set left padding to 5% */
}

.aa>a>:active,
#myButton:focus {
    border: none;
    /* Set border to none when the button is active or focused */
    outline: none;
    /* Remove browser default focus outline */
}

.card {
    position: relative;
    padding: 30px;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    /* Set text color */
    padding: 20px;
    /* Add padding for better readability */
    text-align: center;
    /* Center the text */
    background-color: rgba(0, 0, 0, 0.5);
    /* Add a semi-transparent background for better contrast */
}

.productcard-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    font-family: 'Poppins', sans-serif;
}

.productcard-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 19.36px;
    font-family: 'Poppins', sans-serif;
    opacity: 80%;
    width: 90%;
}

.pro-img-class {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: absolute;
    bottom: 10%;
    right: 0%;
}

@media (max-width: 1180px) {
    .card{
        padding: 20px;
    }
    .card>div>img {
        max-width: 40%;
        height: 50%;
    }

    .productcard-title {
        width: 100%;

    }

    .productcard-text {
        width: 100%;
        z-index: 999;
        /* text-align: justify; */
    }
}

@media (max-width: 968px) {
    .productDescription {
        width: 75%;
    }
    .aboutUsLeft>p {
        width: 100%;
        text-align: justify;
    }
    
}
@media (max-width: 768px) {

    .productHeading {
        font-size: 30px;
        line-height: 35px;

    }

    .productDescription {
        font-weight: 400;
        font-size: 16px;
        line-height: 21.78px;
text-align: justify;
        text-align: left;
        width: 80%;
        justify-content: center;
    }

    .card {
        /* height: auto; */
        height: 290px;
        padding: 15px;
    }


    .card>div>img {
        max-width: 40%;
        height: auto;
    }

    .productcard-title {
        width: 100%;



    }

    .productcard-text {
        font-size: 14px;
        width: 100%;
        text-align: justify;
        z-index: 999;
    }

    .aa>a {
        padding-left: 0;
        /* Adjust padding for better mobile appearance */
    }

    .text-overlay {
        padding: 10px;
        /* Adjust padding for better mobile appearance */
    }
}


@media (max-width: 500px) {
    
    .pro-class {
        width: 100%;
    }
    .pro-img-class {
        width: 200px;
        bottom: 2%;
        
    }
    /* pro-img-class:nth-child(1)>img{
        width: 150px;
    } */
    .productDescription {
    text-align: justify;
    width: 100%;
    }
}

/* Our Product Style End  */





/* Meet Our Team Styles Start  */

.card-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #282828;
    font-family: 'Inter';

}

.card-tex {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #3E3E59;
    font-family: 'Inter';


}

.card-body>h6 {
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    color: #5F6980;
    font-family: 'Inter';


}

/* Meet Our Team Styles End  */



/* Contact Us Style Start  */
.contactUsRedirect {
    margin-bottom: 5%;
}

#mainDiv {
    width: 95%;
}

#mainDiv {
    padding: 20px;
}

#firstDiv {
    background-color: #F0F7FF;
    padding: 3%;
}

#firstDiv>h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 42px;
    color: #231F1F;
    font-family: 'Poppins', sans-serif;
}

#information {
    display: flex;
    flex-direction: column;
}



.info>div>i {
    width: 20px;
    height: 17.8px;
    /* margin-right: 10px; */
    margin: 0px;
    padding-top: 5px;

}

#secondDiv {
    background: url('../images/KJSS\ FZCO\ 2.png') center center;
    background-size: cover;
    min-height: 200px;
    /* adjust as needed */
}



.info>div {
    display: flex;
    align-items: flex-start;
    /* background-color: red; */
    padding: 10px;
    margin: 5px 0;
    gap: 20px;
}

.info>div>span {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #231F1F;

    width: 80%;
}

#firstDiv>h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #3A3B3D;
    margin-top: 3%;
    font-family: 'Poppins', sans-serif;

}

/* .location {
    padding-left: 3%;
} */

.location>p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #231F1F;
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}

.location>p>span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #231F1F;
    opacity: 70%;
    font-family: 'Poppins', sans-serif;

}

.custom-row {
    width: 80%;
    margin: 0 auto;
    /* Center the row horizontally */
}

@media (max-width: 768px) {
    .custom-row{
        width: 100%;
    }
    #mainDiv{
        width: 100%;
    }
}
@media (max-width: 768px) {
    #firstDiv {
        width: 100%;
    }

    .custom-row {
        width: 100%;

    }

    .info>div>span {
        width: 100%;
    }

}

/* Contact Us Style End  */










/* ---------------------------------- FOOTER Page START ---------------------------------------------- */



.FooterMain {
    width: 100%;
    display: flex;
    background-color: #00293a;
    justify-content: center;
    align-items: center;
    font-family: Inter;
}

.FooterStart {
    display: flex;
    flex-direction: column;
    width: 90%;
}

.FooterContainer1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2%;
    margin-top: 2%;

}

.FooterContainer2 {
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2%;
}

.FooterBox1 {
    display: flex;
    flex-direction: column;
    width: 20%;
}

.FooterBox1 img {
    display: flex;
    width: 100%;
}

.FooterBox2 {
    width: 75%;
    display: flex;
    justify-content: space-around;
}

.FooterBox {
    width: 24%;
    padding-top: 2%;

}

.FooterBox ul li {
    list-style: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--wt);
    padding-bottom: 8%;
}

.FooterBox>h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--wt);
    /* padding-bottom: 8%; */
    height: 30px;
    width: 100%;

}

.FooterBox>label>ul {
    padding-left: 0 !important;

}

.FooterBox1>h6 {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    margin-top: 4%;

}

.FooterIcon {
    width: 90%;
}

.FooterDownBox1 {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.SocialIcons {
    display: flex;
    width: 60%;
    justify-content: space-between;
}

.FooterDownBox1>h6 {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 4%;
}

.footercopyright {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    text-transform: uppercase;
    width: 100%;

}

.footertos {
    display: flex;
    width: 35%;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #c8c4c4;
    justify-content: space-between;
    align-items: flex-end;
}

.FooterBoxHide {
    display: none;
}

/* ----------------------------------------------- */


@media(max-width:1140px) {
    .FooterBox1 {
        width: 22%;
    }

    .FooterBox1>h6 {
        font-size: 12px;
    }

    .FooterBox {
        width: 20%;

    }

    .FooterBox>label>u>a>li {
        font-size: 12px;
    }

    .FooterBox>h4 {
        font-size: 15px;
    }

    .FooterDownBox1 {
        width: 25%;

    }

    .FooterDownBox1>h6 {
        font-size: 12px;
    }

    .footercopyright {
        font-size: 12px;

    }

    .footertos {
        width: 40%;
        font-size: 12px;
    }

    .SocialIcons {
        width: 100%;
    }

}

@media(max-width:825px) {
    .FooterContainer1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .FooterDownBox1 {
        width: 35%;

    }

    .footercopyright {
        width: 100%;
    }

    .FooterBox1 {
        width: 70%;
        text-align: center;
        margin-bottom: 2%
    }

    .FooterBox2 {
        width: 100%;
        display: flex;
        justify-content: space-around;
    }

    .FooterBox {
        width: 50%;

    }

    .FooterIcon {
        text-align: center;

    }

    .FooterIcon>img {
        width: 100%;

    }

    .footertos {
        width: 45%;
    }

}

@media(max-width:679px) {
    .FooterBox2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .FooterBox {
        flex: 5 0 150px;
        text-align: start;

    }

    .FooterContainer2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footertos {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 5%;
    }

    .FooterDownBox1 {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}

@media(max-width:500px) {

    .FooterBox1 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .FooterIcon {
        width: 40%;
    }

    .FooterIcon>img {
        width: 100%;
    }

}

@media(max-width:416px) {

    .FooterBox2 {
        gap: 20px;
        display: flex;
        box-sizing: border-box;
        margin-top: 5%;

    }

    .FooterBox1 {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: start;
        margin-top: 5%;
    }

    .FooterBox {
        display: flex;
        flex-direction: column;
        text-align: left;
        box-sizing: border-box !important;
        gap: 1px;
        padding-left: 1%;
        width: 100%;

    }

    .SocialIcons {
        margin-bottom: 2%;
    }

    .FooterContainer2 {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .FooterDownBox1 {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footertos {
        margin-bottom: 4%;
        display: none;
    }

    .FooterBox>ul>a>li {
        padding-bottom: 4%;

    }

    .footercopyright {
        margin-bottom: 4%;
    }

    .SocialIcons {
        display: flex;
        width: 50%;

    }
}

/* ---------------------------------- FOOTER Page  END---------------------------------------------- */