@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Dancing+Script:wght@400..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&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&display=swap');

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

/*padding*/
.pt-130 {
    padding-top: calc(var(--p-100) + 20px);
}

p {
    margin-top: 0;
    margin-bottom: 12px;
    padding-bottom: 0;
    color: var(--black);
    text-align: justify;
    /* color: red; */
    /* margin-bottom: 8px; */
}

/*body*/
body {
    font-family: "Poppins", sans-serif !important;
    font-style: normal;
    color: var(--bg-color);
    /* color:red; */
}

/*variables*/
:root {
    --height-100: 100px;
    --width-100: 100px;
    --w-100: 100%;
    --p-100: 100px;

    /* --home-height: calc(100vh - 265px); */
    /* --home-height: calc(100vh - 68px); */
    --home-height: 100vh;
    --all-page: calc(90vh - 68px - 90px);

    /*Colors*/
    --white: #fff;
    --black: #000;
    --textColor: #212529;
    --a-color: #34a0a319;


    --a-color-dark: #34a0a3;


    --bg-color: #012048;
    --primary: #34a0a3;
    --muted: #6c757d;
}


/*bgcolor*/
.bg-primary {
    background-color: var(--primary) !important;
}

.color_blue {
    color: var(--bg-color);
}

.bg_blue {
    background-color: var(--bg-color);
}

.bd-color {
    border-color: var(--bg-color);
}

/*maincolor*/
.primary {
    color: var(--primary) !important;
}

/* 
.secondary {
    color: var(--secondary) !important;
} */

.white {
    color: var(--white) !important;
}

/*line*/
.line {
    width: 100px;
    height: 2px;
    background-color: var(--bg-color);
}

.time-line {
    position: relative;
    display: table-cell;
    width: 80px;
}

.time-line:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: -5px;
    width: 1px;
    background: #e6e6e6;
    border-radius: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.time-line:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 8px;
    width: 9px;
    height: 9px;
    /* background: #fde428; */
    background: var(--bg-color);
    border-radius: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*allotherpagesheight*/
.all-page {
    height: var(--all-page);
}

/*fontsize*/
h1 {
    font-size: clamp(32px, 5vw, 64px) !important;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: capitalize !important;
}

h2 {
    font-size: clamp(28px, 4vw, 42px) !important;
    text-align: center;
    font-weight: 600;
    text-transform: capitalize !important;
}

h2>span {
    color: var(--primary);
    font-weight: 700;
}

h3 {
    font-size: clamp(24px, 3.5vw, 32px) !important;
    font-weight: 700;
    text-transform: capitalize !important;
}

h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    text-transform: capitalize !important;
    font-weight: 300;
}

h5 {
    font-size: clamp(18px, 2.5vw, 24px) !important;
    font-weight: 600;
    text-transform: capitalize !important;
}

h6 {
    font-size: clamp(16px, 2vw, 20px) !important;
    font-weight: 600;
    text-transform: capitalize !important;
}

.f12 {
    font-size: 12px !important;
}

/*fontweight*/
.font-extrabold {
    font-weight: 800;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-light {
    font-weight: 300;
}

/*alignment*/
.text-justify {
    text-align: justify;
}

/*cursorpointer*/
.cursor-pointer {
    cursor: pointer;
}

/*button*/
.btn {
    display: inline-block;
    padding: 9px 38px;
    font-size: 14px;
    border-radius: 50rem;
}

.btn-primary,
.btn-primary:hover {
    background-color: #de3737ed;
    border-color: #de3737ed;
}

/*table*/
table,
th,
td,
tr {
    border: 1px solid black;
    padding: 10px;
}



/* ------------------- height */
.h-fit-content {
    height: fit-content;
}

.height-100,
.h-100 {
    height: calc(var(--height-100));
}

.h-120 {
    height: calc(var(--height-100) + 20px);
}

.h-150 {
    height: calc(var(--height-100) + 50px);
}

.h-200 {
    height: calc(var(--height-100) + 100px);
}

.h-250 {
    height: calc(var(--height-100) + 150px);
}

.h-300 {
    height: calc(var(--height-100) + 200px);
}

.h-400 {
    height: calc(var(--height-100) + 300px);
}

.h-500 {
    height: calc(var(--height-100) + 400px);
}

.h-700 {
    height: calc(var(--height-100) + 600px);
}

/*width*/
.w-20 {
    width: calc(var(--w-100) - 80%);
}

.w-30 {
    width: calc(var(--w-100) - 70%);
}

.width-100 {
    width: var(--width-100);
}

.w-120 {
    width: calc(var(--width-100) + 20px);
}

.w-150 {
    width: calc(var(--width-100) + 50px);
}

.w-200 {
    width: calc(var(--width-100) + 100px);
}

.w-300 {
    width: calc(var(--width-100) + 200px);
}

.w-600 {
    width: calc(var(--width-100) + 500px);
}


/*navigationbar*/
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0px 32px;
}

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    vertical-align: middle !important;
}

.nav-items {
    padding: .5rem 1rem;
}

.nav-link {
    display: block;
    /* padding: .5rem 1rem; */
    padding: 0rem 0rem;
    /* padding-bottom: .5rem; */
    font-weight: 500;
    text-transform: capitalize;
    padding-bottom: 5px;
    color: var(--bg-color);
}

.nav-link:hover,
.nav-link.underlinehome.active {
    color: var(--primary) !important;
}

.home.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.product.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.brand_menu.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.blog.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.about.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);

}

/*navigationbarscroll*/
/*headernavsticky*/
.sticky-header {
    top: 0px;
    box-shadow: 0 1px 3px #00000029;
    border-radius: 0px;
    justify-self: center;
    /* width: 1350px; */
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    transition: .5s ease;
    height: 100px;
    position: fixed;
}

/*floatingnavbaratscroll */


.align-middle {
    vertical-align: middle !important;
}

/*backtotopbutton*/
.back_top_block {
    bottom: 0 !important;
}

.back_top {
    position: fixed;
    bottom: -100px;
    right: 0;
    display: inline-block;
    margin: 30px;
    transition: bottom .3s ease-in-out;
}

.back_top {
    cursor: pointer;
}

/*homepage*/
.home-height {
    height: var(--home-height);
    height: var(--home-height);
}

.home-left-contain {
    max-width: 500px;
    margin: auto;
}

/* 
.header_padding {
    padding: 0px 20px;
} */

















/* ------------------- brand text a link hover */
a {
    text-decoration: none !important;
    color: inherit;
}

a:hover {
    text-decoration: none !important;
    color: inherit;
}
















/*filterfspllogowhitefooter */
.filter {
    filter: brightness(20);
}

.filter1 {
    filter: brightness(1.5);
}


/* ------------------- image */
.img-container-brands {
    height: 200px;
    width: 100%;
    padding: 24px;
}

.img-fluid-contain {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.img-fluid-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}




/*container*/
/* .container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl { */
/* padding: 0px; */
/* } */

/* ------------------- header navbar */
/* .nav-link:hover {
    color: var(--primary) !important;
} */

/* 
.nav-link:hover,
.nav-link:active,
.nav-link.active {} */

/*navbarlinkssctive*/

/* 
ul li {
    list-style: none;
} */

/*faq q/a*/
/* .faq-list {
    list-style: inside !important;
} */


/**/

/*border bottom*/
.bd-bottom:hover {
    border-bottom: 1px solid white;
}






/* logo brand bar*/


/* brands */
.brand-container {
    padding: 16px 24px;
    transition: .4s ease;
    cursor: pointer;
}

.brand-container:hover,
.box-shadow {
    box-shadow: 0 20px 40px #00000029 !important;
    z-index: 1;
}

.brand {
    z-index: 0;
    display: flex;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    transition: .4s ease-in-out;
}

.brand img:hover {
    transform: scale(1.01);
}



/* clint */
.gap-y {
    row-gap: 2rem;
}







/* ----------------------------background color--------------------------------- */

/*core values*/
.border-white-card {
    border: 2px solid var(--white);
}

.core-val-1:hover i,
.core-val-1:hover h6,
.core-val-1:hover h5 {
    color: var(--a-color-dark);
}

.core-val-1:hover,
.a-color {
    background-color: var(--a-color);
    border: 2px solid var(--a-color-dark) !important;
}

/*company services*/
.border-light-card {
    border: 2px solid #f8f9fa;
}

.com-ser-1:hover i,
.com-ser-1:hover h6 {
    color: var(--a-color-dark);
}

.com-ser-1:hover,
.a-color {
    background-color: var(--a-color);
    border: 2px solid var(--a-color-dark) !important;
}



/* .core-val-2:hover,
.b-color {
    background-color: var(--a-color);
    border: 2px solid var(--a-color-dark) !important;
}

.core-val-3:hover,
.c-color {
    background-color: var(--a-color);
    border: 2px solid var(--a-color-dark) !important;
}

.core-val-4:hover,
.d-color {
    background-color: var(--a-color);
    border: 2px solid var(--a-color-dark) !important;
} */


/* ------------------ */
.top-50 {
    top: 50px !important;
}

.top-150 {
    top: 215px;
}


/*faq hr*/
.faq-sep {
    width: 100%;
    max-width: 818px;
    margin: 1rem auto;
    border-top: 2px solid var(--primary);
}


/* round-contain */
.center-content {
    display: flex;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    gap: 25px;
}

.round-contain {
    width: 400px;
    height: 200px;
    /* border: 1px solid black; */
    /* border-radius: 50%; */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/* index mini slaid */
.clint-contain {
    /* width: 100%; */
    width: max-content;
    height: 150px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* overflow-x: scroll; */
    /* overflow: hidden; */
    padding: 0 10px;
    gap: 50px;


}

.clint-contain

/* .clint-info-contain */
    {
    text-align: center;
    /* animation:  scrollLogos 1s linear; */
    animation: 50s infinite-slide infinite linear;
    /* animation: tech_slider 5s linear infinite; */

}

@keyframes infinite-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clint-contain:hover,
.clint-wrapper:hover .clint-contain {
    animation-play-state: paused;
}

@keyframes tech_slider {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-100%)
    }
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


/* icon*/
i.con-i {
    font-size: 2rem;
    color: var(--white);
}

i.contact-i {
    font-size: 2rem;
    color: var(--bg-color);
}

i.indx-i {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



/* border-radius blog */
.br-30 {
    border-radius: 30px;
}

.br-tlr-30 {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}


/* z-index */
.z-index-1 {
    z-index: -1;
}

.top-200 {
    top: 270px;
}

.start-10 {
    left: 5%;
}

.contact-bottom {
    position: relative;
    z-index: 100;
    margin-bottom: -100px;
}

.two-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}




/* 
.two-lines {
    display: -webkit-box;
    --webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
} */

.image-card {
    background: #fff;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}




.service-card {
    /* background: #fff; */
    border-radius: 6px;
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-card img {
    filter: brightness(1) sepia(1) hue-rotate(-10deg) saturate(500%);
}


.yellow-bg {
    background: #001659;
    /* Yellow background */
    padding: 40px;
    position: relative;
    display: inline-block;
}

.person-img {
    width: 70%;
    /* max-width: 350px; */
    object-fit: cover;
}

.role-badge {
    position: absolute;
    /* bottom: 10px;
    left: 30px; */
    bottom: 25px;
    left: 70px;
    background: white;
    color: #001659;
    padding: 6px 20px;
    font-size: 14px;
    letter-spacing: .5px;
}

.quote-box {
    background: #f5f5f5;
    border-left: 4px solid #001659;
}



.timeline-wrapper {
    position: relative;
    padding-left: 40px;
}


.timeline-title {
    font-size: 42px;
    font-weight: 800;
}

.timeline-subtitle {
    font-size: 20px;
    font-weight: 600;
}


.text-orange {
    color: #FF6B21;
}

.feature-item {
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}

.feature-icon img {
    width: 55px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
}

.feature-desc {
    color: var(--primary);
    line-height: 1.5;
    margin-top: 5px;
}

.ceo-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.ceo-card:hover {
    transform: translateY(-5px);
}

.ceo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.ceo-name {
    font-size: 20px;
    font-weight: 600;
}

.ceo-role {
    color: #777;
    font-size: 14px;
}

.item_vertical_padding {
    padding: 20px 0px;
}

/* scrolar brand and clint */
.filter_image {
    filter: grayscale(1);
}

.filter_image:hover {
    filter: grayscale(0);
}

/* home */
.filter_brightness {
    filter: brightness(0.5);
}

/* .text_yellow {
    color: #FFC107;
} */

.text_center {
    text-align: center;
}

/* Contact */

.con-card:hover,
.b-color {
    background-color: var(--c-color);
    border: 2px solid var(--c-color-dark) !important;
}

/* responsivenessformobile */
/* max767px */


/* DeskTop   768 thi upar lg*/
@media (min-width: 768px) {
    .scroll_height {
        background: rgb(255 255 255 / 85%);
        position: fixed;
        border-radius: 40px;
        max-width: 1350px;
        top: 10px;
        height: 80px;
        backdrop-filter: blur(10px);
    }

    .sticky-wrapper {
        position: sticky;
        /* top: 100px;   REQUIRED */
    }

    .menu_button {
        display: none;
    }

    .corevalue_content {
        padding-right: 48px;
    }

    section {
        padding: 100px;
    }


}

/* Teblet   576 to 767 sudhi md*/

@media (max-width: 767px) {
    header {
        height: 100px;
    }

    .home-height {
        height: calc(100vh - 100px);
    }

    .navbar .nav {
        /* display: none; */
        width: 0px;
        flex-direction: column;
        background-color: white;
        /* position: fixed; */
        top: 99px;
        height: calc(100vh - 0px);
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        transition: .2s ease-in-out;
        overflow: hidden;
        position: fixed;
    }

    .navbar {
        padding: 0px 20px;
    }

    .menucollapsed {
        width: 100% !important;
    }

    .nav-items {
        padding: 6px 20px;
    }

    /*home page*/

    .header_text_h2 {
        font-size: clamp(28px, 4vw, 42px) !important;
    }

    .ceo_card {
        flex-direction: column;
    }




    .menu_button {
        position: relative;
        display: block;
        width: 30px;
        height: 30px;
    }


    .menu_button .menu_line_1 {
        top: 6px;
        width: 70%;

    }

    .menu_button .menu_line_2 {
        top: 13.5px;
        width: 100%;
        transform-origin: right;
        transition: .6s;
    }

    .menu_button .menu_line_3 {
        top: 21px;
        width: 50%;
    }



    .menu_button .menu_line_1,
    .menu_button .menu_line_2,
    .menu_button .menu_line_3 {
        position: absolute;
        height: 2px;
        background-color: var(--black);
        border: none;
        transition: .5s ease-in;
    }

    /* header contact */
    .contact_btn span {
        display: none;
    }

    .contact_btn .btn {
        padding: 10px 15px;
        border-radius: 50px;
    }

    /*about*/
    .ceo-img-center {
        text-align: center;
    }

    .ceo-img-center .col-3 {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 12px;
    }

    /*  .p-sm-0{
        padding: 0 !important;
    } */

    section {
        padding: 40px;
    }

    .time-line {
        display: none;
    }
}

/* .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding: 0px;
        margin: 0px;
    } */

/* Mobile 0 t0 575 sm */
@media (max-width: 575px) {
    .time-line {
        display: none;
    }

    i.indx-i {
        height: 60px;
        width: 60px;
    }

    /*container*/
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding: 0px;
    }

    .contact-bottom {
        margin-bottom: 0px;
    }


    .home-left-contain {
        padding: 0px 20px;
    }

    .ceo_direction {
        flex-direction: column;
    }

    .row.m-0.gap-5 {
        flex-direction: column-reverse;
    }

    /* 
    .border {
        border: 0 !important;
    } */

    /*  .p-sm-0{
        padding: 0 !important;
    } */
    /* .row,.row>* {
        padding: 0;
    } */
    section {
        padding: 20px;
    }

    /*  .h-150 {
        height: calc(var(--height-100) + 100px);
    } */

    .header_padding {
        padding: 0px 20px;
    }

    .h-500 {
        height: calc(var(--height-100) + 100px);
    }
}

.text_muted {
    color: var(--muted);
}

/* FAQ */
.faq_item {
    /* padding-top: 8px; */
}

.faq_item span {
    font-weight: 600;
}

.faq_item_ul {
    color: var(--muted);
    margin-bottom: 8px;
}

.faq_italic {
    font-style: italic;
    padding-bottom: 0px;
}

.top_header_title {
    top: calc((100% / 2) - 125px);
}

.form_modal {
    background-color: var(--primary);
    padding: 20px 30px;
}


input:invalid {
    border-color: red;
}


.error-message {
    font-size: 16px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input:invalid {
    border-color: red;
}

.is-invalid {
    background-image: none !important;
  }