@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Jost:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

:root {
    --jost: "Jost", sans-serif;
    --abeezee: "ABeeZee", sans-serif;
    --opensans: "Open Sans", sans-serif;
    --blue: #002D4E;
    --seagreen: #2b8582;
    --orange: #ff9b1b;
    --white: #fff;
    --black: #000;
    --default-trans: all .5s ease;

}

html {
    overflow-x: hidden;
    font-family: sans-serif;
    /* 1 */

    -ms-text-size-adjust: 100%;
    /* 2 */

    -webkit-text-size-adjust: 100%;
    /* 2 */
}
body{
    margin: 0 !important;
    padding: 0 !important;
}

/**
 * Remove default margin.
 */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */

    vertical-align: baseline;
    /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */

    font: inherit;
    /* 2 */

    margin: 0;
    /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
/* 1 */

input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */

    cursor: pointer;
    /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
    line-height: normal;
}

.form-control {
    box-shadow: none !important;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */

    padding: 0;
    /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */

    box-sizing: content-box;
    /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0;
    /* 1 */

    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}








/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

::-moz-selection {
    background-color: #007d9d;
    color: #fff;
    text-shadow: none;
}

::selection {
    background-color: #007d9d;
    color: #fff;
    text-shadow: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
    color: inherit;
    opacity: 0.7;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    color: inherit;
    opacity: 0.7;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.7;
}

body {
    margin: 0;
    padding: 0;
    font-size: 20px !important;
    overflow-x: hidden;
    color: #353535 !important;
    font-family: var(--Inter) !important;
}

.container:after,
.container:before {
    content: " ";
    display: table;
}

.container:after {
    clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
figure {
    margin: 0;
    padding: 0;
}

img {
    margin: 0;
    padding: 0;
    border: none;
    max-width: 100%;
    height: auto !important;
    display: block;
}

a,
button,
input {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none !important;
}





/**************global css end*******/



/*================================ Start Header ================================*/
/* HEADER START */

header {
    width: 100%;
    height: 70px;
    transition: all 1s ease-in-out;
    background-color: #fff;
     box-shadow: 0px 4px 10px #0000000d;
    padding: 0 50px;
}


.header-holder {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}
.fixed {
    position: fixed !important;
    top:0;
    z-index: 9999;
    animation: smoothScroll 1s forwards;
    width: 100%;
    transition: all 1s ease-in-out;
}
@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* .fixed .header-holder{
    box-shadow: 0px 4px 10px #0000000d;
} */
.logo {
    width: 170px;
}
.nav .nav_sec {
    width: 100%;
    margin: 0;
    padding: 0;
}
.nav .nav_sec ul {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.nav .nav_sec ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.nav .nav_sec ul li a {
    color: var(--black);
    display: block;
    position: relative;
    z-index: 99;
    transition: var(--default-trans);
    font-weight: 500;
    font-size: 14px;
    font-family: var(--opensans);
    text-transform: uppercase;
    line-height: 18.75px;
    padding: 25px 15px;
    border-radius: 0 0 10px 10px;
}

.nav .nav_sec ul li a:hover,
.nav .nav_sec ul li.active a,
.nav .nav_sec ul li.current-menu-item>a {
    background-color: var(--blue);
    color: #fff;
}

.nav .nav_sec ul li ul {
    position: absolute;
    left: 0;
    width: 250px;
    background-color: var(--white);
    box-shadow: 0px -20px 55px 0px #00000026;
    border: none;
    border-radius: 0 0 10px 10px;
    display: block;
    visibility: hidden;
    opacity: 0;
    top: 180%;
    transition: 0.3s;
    pointer-events: none;
    z-index: 111;
}
.nav .nav_sec ul li:hover ul {
    display: block;
    top: 100%;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}
.nav .nav_sec ul li ul li {
    width: 100%;
    padding: 0;
}

.nav .nav_sec ul li ul li a {
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}
.nav .nav_sec ul li ul li a:hover{
    color: #fff;
}
.nav .nav_sec ul li ul li.active>a{
    background-color: var(--blue);
    color: #fff;
}
span.toggle-menu {
    display: none;
}

.nav .nav_sec ul li .arw-nav {
       width: 21px;
    background-size: contain;
    height: 13px;
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translate(0, -50%) scale(0.5);
    z-index: 999;
    cursor: pointer;
    background-image: url(images/arw-dekstop.png);
    background-repeat: no-repeat;
    pointer-events: none;
}
.nav .nav_sec ul .header_btn{
    display: none;
}

/* HEADER END */



/* extra nav */
.extra_nav_for_mobile a{
    display: none !important;
}


    .extra_nav_sec {
  position: fixed;
  top: 0px;
  right: -300px; 
  width: 300px;
  height: 100vh;
  background-color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px 0;
  transition: right 0.3s ease-in-out;
  z-index: 999;
}

.extra_nav_sec.active {
  right: 0;
}
.extra_nav {
    width: 100%;
    margin-top: 10px;
}
.extra_nav a {
  color: white;
  text-decoration: none;
  padding: 10px 0 10px 10px;
  border-radius: 0 0 10px 10px;
  display: block;
  background-color: var(--blue);
}
.extra_nav a:hover{
    background-color: var(--seagreen);
}

.extra_toggle_btn {
    margin-top: auto;
    cursor: pointer;
    color: #000000;
    background-color: var(--blue);
    color: rgb(255, 255, 255);
    margin: 0px;
    padding: 3px 8px;
    border-radius: 4px;
    display: block;
    width: 35px;
    height: 35px;
}

       
#extraClose {
    margin-left: auto;
    margin-right: 30px;
    background-color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    cursor: pointer;
}
/* extra nav */


/*================ End header ================*/

/* =================banner start=================== */
.home_banner{
    width: 100%;
    height: auto;
    background-image: url('../images/home-banner.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 50px;
}
.heading_box{
    padding-top: 120px;
    text-align: center;
}
.heading_box p{
    font-family: var(--abeezee);
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
}
.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.typed-container {
  display: block;
  height: 130px;
  min-width: 200px; 
  font-family: var(--abeezee);
  font-size: 85px;
  font-weight: 800;
  color: var(--white);
  overflow: hidden;
  position: relative;
}
#typed-name::after {
    content: "|";
    display: inline-block;
    margin-left: 2px;
    animation: blinkCursor 0.7s steps(1) infinite;
    color: var(--white); 
    font-weight: bold;
  }
  
  @keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
.speak_btn{
    width: 265px;
    height: 58px;
    background-color: var(--seagreen);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-family: var(--opensans);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--default-trans);
}
.speak_btn:hover{
    background-color: var(--orange);
}
.banner_buttom{
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0, .4);
    margin-top: 25px;
    padding: 10px 0;
}
.banner_buttom_box{
    height: 80px;
    background-image: url(images/banner\ fream.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner_buttom_box p{
    text-align: center;
    font-family: var(--opensans);
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0;
}

/* =================banner end=================== */


/* ==============work sec start============== */
.work_sec{
    width: 100%;
    position: relative;
}

.work_sec h2{
    font-size: 68px;
    line-height: 76px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.work_holder{
    height: 136px;
    padding: 10px;
    background-color: var(--blue);
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.work_box{
    min-width: 230px;
    text-align: center;
}
.work_box h3{
    color: #FFFFFF;
    font-family: var(--abeezee);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0;
}
.work_box p{
    color: #FFFFFF;
    font-family: var(--opensans);
    font-size: 19px;
    line-height: 2.5;
    font-weight: 600;
    margin-bottom: 0;
}
/* ==============work sec end============== */

 /* =============glance sec start=============  */
 .glance_sec{
    padding: 0 30px;
 }
 .glance_sec h2{
    font-family: var(--abeezee);
    font-size: 43px;
    font-weight: 600;
    color: var(--blue);
    text-align: center;
    margin: 40px 0;
 }
 .glance_boxes_1{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    
 }
 .glance_box{
    height: 180px;
    background-color: var(--white);
    border: 1px solid var(--seagreen);
    margin: 8px;
    padding: 15px;
    border-radius: 7px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
 }
 .glance_box:nth-child(2), .glance_box:nth-child(4){
    background-color: var(--blue);
    color: var(--white);
 }
 .glance_box:nth-child(2) p, .glance_box:nth-child(4) p, .glance_box:nth-child(2) h3, .glance_box:nth-child(4) h3 {
    color: var(--white);
 }
 .glance_boxes_2{
    margin-bottom: 50px;
 }
 .glance_box2{
    height: 200px;
    background-color: var(--white);
    border: 1px solid var(--seagreen);
    margin: 8px;
    padding: 15px;
    border-radius: 7px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
 }
.glance_boxes_2 .row > div:nth-child(2) .glance_box2{
    background-color: var(--blue);
    color: var(--white);
 }
 .glance_boxes_2 .row > div:nth-child(2) .glance_box2 p, .glance_boxes_2 .row > div:nth-child(2) .glance_box2 h3{
    color: var(--white);
 }
 .glance_boxes_2 .row>*{
    margin: 0;
    padding: 0;
 }
 .glance_boxes_2 .row{
    --bs-gutter-x: 0;
 }
 .glance_icon{
    width: 61px;
    height: 61px;
    margin-bottom: 20px;
 }
 .glance_icon2{
    width: 81px;
    height: 81px;
    margin-bottom: 20px;
 }
 .glance_box h3, .glance_box2 h3{
    margin-bottom: 0;
    font-family: var(--abeezee);
    font-size: 30px;
    font-weight: 600;
    color: var(--black);
 }
 .glance_box p, .glance_box2 p{
    margin-bottom: 0;
        font-family: var(--opensans);
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
 }

 .glance_icon:hover, .glance_icon2:hover {
    animation: zoomInOut 0.6s ease-in-out infinite;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
 /* =============glance sec end=============  */


 /* =============about company sec start============= */
.about_company_sec{
 background-color: #F5FAFF;
 padding: 38px;
}
.about_content h4{
text-align: center;
margin-bottom: 20px;
font-family: var(--abeezee);
font-size: 32px;
color: var(--blue);
font-weight: 600;
}
.about_content p{
    font-family: var(--opensans);
    font-weight: 500;
    color: #7a7a7a;
    font-size: 16px;
}
.about_image {
    transform: scale(0);
    opacity: 0;
    transition: all 1.2s ease-out;
}

.about_image.animate {
    transform: scale(1);
    opacity: 1;
}

/* =============about company sec end============= */


/* ==============our partner sec start============= */
.tab_section {
  padding: 40px 0;
}
.tabs {
  margin-bottom: 30px;
}
.tab_btn {
  width: 100%;
  height: 100%;
  padding: 16px 24px;
  background: var(--blue);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--abeezee);
  font-size: 16px;
  color: var(--white);
  transition: var(--default-trans);
  position: relative;
}
.tab_btn:hover{
    background-color: var(--seagreen);
}
.tab_btn.active::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--seagreen); 
}
.tab_btn.active {
  background: var(--seagreen); 
  color: #fff;
}

.tab_content {
  display: none;
}
.tab_content.active {
  display: block;
}
.Clientele_box{
    border: 2px solid var(--seagreen);
    border-radius: 7px;
    overflow: hidden;
   
}

.tab_contents .row {
    row-gap: 25px;
    background-color: #F5FAFF;
}

.Experience_box{
    background-color: var(--seagreen);
    text-align: center;
    color: var(--white);
    margin: 12px;
    padding-bottom: 10px;
    opacity: 0;
    transform: scale(0);
    animation: zoomFadeIn 1.2s ease-out forwards;
    position: relative;
}
.Experience_box::before{
    position: absolute;
    content: "";
    background-color: var(--seagreen);
    width: 100%;
    height: 70%;
    top: -5px;
    left: -15px;
    border-radius: 7px;
    z-index: -1;

    transform: translateX(-100%);
    animation: slideInFromLeft 1.2s ease-out forwards;

}

/* Keyframes */
@keyframes slideInFromLeft {
    to {
      transform: translateX(0);
    }
  }
.experience_image img{
    height: 155px !important;
    width: 100%;
}
.Experience_box p{
    font-family: var(--abeezee);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin: 10px 0 0;
    
}
/* Keyframes */
@keyframes zoomFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ==============our partner sec end============= */


/* ===========footer start============ */
.footer{
    background-image: url('../images/footerbackground.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    border-top: 1px solid #cfcbcb77;
}

.footer_holder{
    display: flex;
    gap: 20px;
}
.footer_left{
    max-width: 260px;
}
.footer_right{
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 78px;
}
.contact_box ul li{
    display: flex;
    gap: 15px;
}
.foot_box ul{
    padding: 0;
    margin: 0;
}
.foot_logo{
    width: 240px;
}
.footer_left p{
    color: var(--white);
    font-family: var(--opensans);
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
}
.foot_box h5{
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--abeezee);
}
.foot_box ul li a{
    font-size: 14px;
    font-family: var(--opensans);
    color: var(--white);
    font-weight: 300;
}
.foot_box ul li a:hover{
    color: var(--orange);
}

.contact_icon i{
    color: var(--white);
}


.foot_bottom{
    background-image:url(images/footer\ background.png) ;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.foot_bottom a{
    font-family: var(--abeezee);
    font-size: 13px;
    color: var(--white);
    font-weight: 400;
    transition: var(--default-trans);
}
.foot_bottom a:hover{
    color: var(--orange);
}


/* ===========footer end============ */



/* ======================registration page start============================= */
 
.form-group {
    margin-bottom: 1rem;
}

.form-group p{
    font-size: 14px;
    font-family: var(--opensans);
    font-weight: 400;
}
.paddi {
    padding-left: 20px;
}
.asteriskField {
    color: red;
}
.btn_1 {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    background-color: #48a77a;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-transform: capitalize;
    border: 1px solid transparent;
}
.btn_1:hover {
background-color: var(--blue);
}
.registration_panel select {
    font-size: 13px !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    height: 40px;
    padding-left: 15px !important;
     -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("images/dropdown.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 10px 10px;
  padding-right: 35px; 
    
}

.registration_head h4 {
    color: var(--blue);
    font-weight: 500;
}
.registration_panel .form-control {
    border: 1px solid #a9becc;
    border-radius: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    display: block;
    width: 100%;
    height: 44px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
}

.registration_panel input {
    font-size: 13px;
    font-family: var(--opensans);
}
.registration_panel label {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--abeezee);
    
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #000;
}

.registration_panel textarea.form-control {
    height: 44PX;
    line-height: 0px;
    font-size: 13px;
}


 .gen {
    font-size: 16px;
    display: flex;
    gap: 20px;
    justify-content: s;
  }

  .gen_box {
    position: relative;
  }

  .gen_box input[type="radio"] {
    display: none;
  }

  .custom-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0 12px;
    border: 1px solid #a9becc;
    border-radius: 10px;
    height: 44px;
    transition: all 0.2s ease-in-out;
  }

  .custom-radio::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #aaa;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    transition: all 0.2s ease-in-out;
  }

  .gen_box input[type="radio"]:checked + .custom-radio::before {
    background-color: #4CAF50;
    border-color: #4CAF50;
    content: "✓";
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
  }

  .gen_box input[type="radio"]:checked + .custom-radio {
    border-color: #4CAF50;
    background-color: #f0fff0;
  }

.form-group label{
    color: var(--seagreen);
    font-size: 12px;
}
.paddi span{
    color: var(--seagreen);
    font-family: var(--abeezee);
    font-size: 20px;
}

/* /////////////////////////////////////// */
.breadcrumb{
  margin-top: 20px;
}
.breadcrumb-item{
  font-size: 16px;
  font-family: var(--opensans);
  font-weight: 600;
  color: #000;
}
.breadcrumb-item a{
  color: var(--blue);
  transition: var(--default-trans);
}
.breadcrumb-item a:hover{
    color: var(--orange);
}

.registration_tab_section {
  position: relative;
  padding-bottom: 30px; 
}
.registration_tab_section .tab_row_gap{
    row-gap: 20px;
}
.form-group .row{
    row-gap: 20px;
}
.reg_tab_left {
  background: #fff;
  padding: 20px;
  height: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0dddd;
  border-radius: 20px;
   box-shadow: 0 0 0px rgb(7, 143, 86), 
            inset 0 1px 15px rgb(16, 122, 78);
}

.reg_tab_btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reg_tab_btn {
  padding: 12px 15px;
  text-align: left;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--opensans);
  font-weight: 600;
  border-radius: 8px;
  color: #383535;
}

.reg_tab_btn.reg_active {
  background: #e0f3ce;
  color: var(--seagreen);
}


.reg_tab_right {
  height: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid #e0dddd;
  border-radius: 20px;
 box-shadow: 0 0 0px rgb(7, 143, 86), 
            inset 0 1px 15px rgb(16, 122, 78);
}

.reg_tab_content {
  display: none;
}

.reg_tab_content.reg_active {
  display: block;
}

.form_btn_sec{
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.fixed_next_btn, .fixed_back_btn {
  width: 100px;
  background: var(--seagreen);
  color: #fff;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 99;
  transition: var(--default-trans);
}
.fixed_next_btn:hover, .fixed_back_btn:hover {
    background-color: var(--blue);
}
.verify_btn{
    border: 2px solid green;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: rgb(222, 245, 222);
}

.stylee{
    border: 1px dashed #000;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.upload_sec_right {
    display: flex;
    gap: 15px;
    align-items: center;
}
.uploaded_doc {
    width: 30px;
    height: 30px;
}
.stylee p{
margin-bottom: 0;
font-size: 15px;
font-family: var(--opensans);
font-weight: 300;
color: #000;
}
.upload_icon i{
color: var(--seagreen);
cursor: pointer;
}
#presentAddressDetails, #permanentAddressDetails{
    background-color: #e0f3ce;
    padding: 10px;
    border-radius: 10px;
}
#presentAddressDetails .row, #permanentAddressDetails .row{
    row-gap: 10px;
    
}


/* ======================registration page end============================= */






/* ====================information page start======================= */
.information_holder{
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
   box-shadow: 0 0 0px rgb(7, 143, 86), 
            inset 0 1px 15px rgb(16, 122, 78);
}
.information_holder .row{
    row-gap: 30px;
}
.inform_box{
    padding: 20px;
    border-radius: 15px;
    background-color: var(--seagreen);
    text-align: center;
    height: 100%;
    transition: var(--default-trans);
}
.inform_box:hover{
background-color: var(--blue);
}
.inform_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}
.inform_icon img{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.inform_box h3{
    color: #fff;
    font-size: 18px;
    font-family: var(--abeezee);
    font-weight: 600px;
}

/* //////////// */
.instruction_holder{
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 0px rgb(7, 143, 86), 
            inset 0 1px 15px rgb(16, 122, 78);
}
.instruction_holder h2{
text-align: center;
margin: 30px 0;
color: var(--seagreen);
font-family: var(--abeezee);
font-size: 30px;
font-weight: 600;
}
.instruction_holder h3{
color: var(--seagreen);
font-family: var(--abeezee);
font-size: 20px;
font-weight: 600;
}
.instruction_holder p{
font-size: 16px;
font-family: var(--opensans);
font-weight: 400;
color: #000;
margin-bottom: 15px;
}

.instruction_holder ul li{
 list-style-type: decimal;
font-size: 16px;
font-family: var(--opensans);
font-weight: 400;
color: #000;
margin-bottom: 15px;
}

.instruction_holder ul li ul li{
    list-style-type: lower-latin;
}


/* ///////////////// */

.event_gallery_holder{
     padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 0px rgb(7, 143, 86), 
            inset 0 1px 15px rgb(16, 122, 78);
}
.event_gallery .container .row{
    row-gap: 25px;
}
.gallery_box{
    padding: 7px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid rgb(224, 222, 222);
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.gallery_box p{
    text-align: center;
    font-size: 14px;
    font-family: var(--opensans);
    font-weight: 700;
    margin: 15px 0 8px;
    color: var(--seagreen);
}
.gallery_img{
    border-radius: 5px;
    overflow: hidden;
}
.gallery_img img{
    width: 100%;
    height: 150px !important;
    object-fit: cover;
    transform: scale(1);
    transition: var(--default-trans);
}
.gallery_img img:hover{
transform: scale(1.09);
}
/* //////////////// */
.contact_holder{
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 0px rgb(7, 143, 86), 
            inset 0 1px 15px rgb(16, 122, 78);
}
.contact_holder h2{
    text-align: center;
    margin-bottom: 30px;
    color: var(--blue);
    font-size: 30px;
    font-weight: 700;
    font-family: var(--abeezee);
}
.project_manager_info {
    text-align: center;
    width: 240px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.project_manager{
    width: 220px;
    height: 250px !important;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--seagreen);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
}
.project_manager img{
    width: 210px;
    height: 250px !important;
    object-fit: cover;
    transform: scale(1);
    transition: var(--default-trans);
}
.project_manager img:hover{
    transform: scale(1.09);
}
.project_manager_info p{
    font-size: 20px;
    font-family: var(--opensans);
    font-weight: 600;
    color: var(--seagreen);
    margin-bottom: 0;
}
.project_manager_info a{
    font-size: 16px;
    font-family: var(--opensans);
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
    transition: var(--default-trans);
}
.project_manager_info a:hover{
    color: var(--orange);
}
/* //////////// */
.team_info{
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    border-radius: 10px;
    background-color: #fff;
    padding-bottom: 10px;
    padding: 10px;
}
.team_info p{
     font-size: 16px;
    font-family: var(--opensans);
    font-weight: 600;
    color: var(--seagreen);
    margin-bottom: 0;
}
.team_info a{
    font-size: 14px;
    font-family: var(--opensans);
    font-weight: 600;
    color: #000;
    margin-bottom: 0; 
    transition: var(--default-trans);
}
.team_info a:hover{
    color: var(--orange);
}
.team_image_box{
    height: 250px !important;
      border: 2px solid var(--seagreen);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    text-align: center;
    object-fit: cover;
    margin-bottom: 15px;
}
.team_image_box img{
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    transform: scale(1);
    transition: var(--default-trans);
}
.team_image_box img:hover{
    transform: scale(1.09);
}
.jharkhand_team .row{
    row-gap: 25px;
}
/* ====================information page end======================= */


/* =====================career page start======================= */
.career_holder{
     padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 0px rgb(7, 143, 86), 
            inset 0 1px 15px rgb(16, 122, 78);
}

table.careerswrap {
    width: 100%;
    border-collapse: collapse;
}

table.careerswrap th,
table.careerswrap td {
    padding: 15px;
   border: 2px solid #93b3ca;
    vertical-align: middle;

    
}

table.careerswrap th {
    background-color: var(--blue);
    text-align: center;
}
.table.careerswrap th{
    color: #fff;
    font-size: 16px;
}
table.careerswrap td {
    background-color: #f8f9fa;
    color: #000;
    font-size: 14px;
    vertical-align: top;
}
.career_holder h2{
    font-size: 25px;
    color: var(--seagreen);
    font-weight: 600;
    font-family: var(--abeezee);
    text-align: center;
    margin-bottom: 30px;
}
table ul li{
    list-style-type: lower-latin;
}
/* =====================career page end======================= */

/* ==============modal start============== */
.modal-body .row{
    align-items: center;
}
.modal-body p{
    font-size: 16px;
    color: #000;
    font-family: var(--opensans);
    margin-bottom: 5px;
}
.modal-title{
    color: var(--blue);
    font-family: var(--abeezee);
    font-size: 25px;
}
.modal-content{
background: #e2d8ed;
background: linear-gradient(11deg,rgb(255, 255, 255) 41%, rgb(217, 192, 240) 100%);
}
.modal-header{
    border-bottom: 0 !important;
    padding: 15px 15px 0 15px !important;
}
/* ==============modal end============== */


/* ================flatpicker start============= */
.flatpickr-months {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--seagreen);
    border-radius: 5px 5px 0 0;
    height: 50px;
    align-items: center;
}
.flatpickr-current-month{
    color: #fff !important;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month{
    color: #fff !important;
    fill: #fff !important;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: rgb(255 255 255 / 90%) !important;
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: rgb(255 255 255 / 90%) !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
    background-color: var(--seagreen) !important;
    margin-top: 10px;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background-color: var(--seagreen) !important;
}
.flatpickr-day:hover{
    background-color: var(--seagreen) !important;
    color: #fff !important;
}
.flatpickr-calendar{
    box-shadow: 0 0 15px rgba(0, 0, 0, .4) !important;
}
span.flatpickr-weekday{
    color: #000 !important;
}

/* ================flatpicker end============= */



/* ====================admin page start====================== */
.admin_login_page{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: antiquewhite;
}
.admin_login_page .container .row{
    align-items: center;
    row-gap: 30px;
}
.login_container{
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
}
.form_box{
    background-color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .4);
}

.form_box form{
    width: 100%;
}
.login_container h2{
font-size: 30px;
color: #000;
font-family: var(--abeezee);
font-weight: 700;
}
.input_wrapper{
    position: relative;
    margin: 20px 0;
}
.input_wrapper input{
    width: 100%;
    padding: 10px 40px 10px 20px;
    background-color: #deecfa;
    border-radius: 7px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--opensans);
    color: #000;
}
.input_wrapper input::placeholder{
    font-size: 14px;
    color: #000000 !important;
    font-weight: 400;
    opacity: 1;
}
.input_wrapper i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #000;
    font-size: 20px;
}
.forgot_link {
    margin-bottom: 10px;
}
.forgot_link a{
    font-size: 16px;
    color: #000;
    text-decoration: none;
}
.form_box form label{
    font-size: 16px;
    color: #000;
}
.main_btn{
    width: 100%;
    height: 44px;
    background-color: #40bdb9;
    color: #fff;
    font-size: 16px;
    font-family: var(--opensans);
    font-weight: 500;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    margin: 10px 0;
    transition: var(--default-trans);
}
.main_btn:hover{
    background-color: var(--seagreen);
}

.sum{
    border-radius: 7px;
    border: none;
    background-color: #deecfa;
}
.captcha{
     border-radius: 7px;
    border: none;
    background-color: #deecfa;
}

/* ====================*/
.banner-slider{
    position: relative;
}
.banner-slider .slick-dots{
    position: absolute;
    z-index: 9;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    padding-left: 0;
}
.banner-slider .slick-dots li{
    
    margin: 0 5px;
}
.banner-slider .slick-dots li button{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--seagreen);
    font-size: 0px;
    background-color: var(--seagreen);
    transition: var(--default-trans);
}
.banner-slider .slick-dots li.slick-active button {
	background: var(--blue);
    border: 1px solid var(--blue);
    transform: scale(1.2);
}

.banner {
    background-color: #fff;
     border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .4);
}
.banner-slider .item{
    width: 100%;
    height: 80vh !important;
    object-fit: cover;
}
.banner-slider .item img{
    object-fit: cover;
}
/* ====================admin page end====================== */




/* ====================career details page start===================== */
.career_details{
margin-top: 40px;
}
.career_details_box{
    padding: 20px 20px 10px;
    border-top: 1px solid var(--blue);
}
.career_details_box p{
    font-size: 16px;
    font-family: var(--opensans);
    color: #000;
    margin-bottom: 10px;
}
.career_details_box .row{
    row-gap: 10px;
}
.career_holder h2 {
    font-size: 22px;
}
/* ====================career details page end===================== */


/* ===================welcome page start======================= */
.after_login_page{
    text-align: center;
}
.after_login_page p{
    color: var(--blue);
    font-weight: 600;
    font-family: var(--opensans);
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 30px;
}
.after_login_page h3{
    color: #000;
    font-family: var(--opensans);
    font-size: 30px;
    margin-bottom: 20px;
}
.after_login_page h1{
    font-size: 40px;
    font-family: var(--abeezee);
    font-weight: 800;
    color: var(--seagreen);
    margin-bottom: 40px;
}
.after_login_box{
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .4);
    border: 1px solid var(--seagreen);
}
.after_login_box table {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
.after_login_box table th{
    border: 1px solid #000;
    background-color: var(--seagreen);
    color: #fff;
    font-size: 18px;

}
.after_login_box table td{
    border: 1px solid #000;
    font-size: 16px;
}
.know_more_btn{
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 25px;
    background-color: var(--seagreen);
    color: #fff;
    font-size: 18px;
    font-family: var(--opensans);
    font-weight: 600;
    margin: 0 auto;
    display: block;
    transition: var(--default-trans);
}
.know_more_btn:hover{
    background-color: var(--blue);
}

/* /////////////attendance page */
.att_details p{
    font-size: 16px;
    color: #000;
    font-family: var(--opensans);
}

.complain_kiosk .form-group textarea{
    height: 117px;
    border: 1px dashed #000;
    border-radius: 20px;
}
.complain_kiosk .form-group select{
    font-size: 13px !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    height: 40px;
    padding-left: 15px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/dropdown.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 10px 10px;
    padding-right: 35px;

}

.change_password .form-group input::placeholder{
     font-size: 14px;
    color: #000000 !important;
    font-weight: 400;
    opacity: 1;
}


.profile_wrapper{
    margin-top: 30px;
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
    align-items: center;
}
.profile_image{
width: 200px;
height: 200px;
border-radius: 15px;
border: 2px solid var(--seagreen);
overflow: hidden;
}
.profile_image img{
    width: 100%;
}
.profile_wrapper .profile_name h4{
color: var(--seagreen);
font-size: 25px;
font-family: var(--abeezee);
font-weight: 600;
margin-bottom: 5;
}
.profile_wrapper .profile_name P{
    font-size: 16px;
    font-family: var(--opensans);
    color: #000;
    margin-bottom: 0;
}
.doc_wrapper{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}
.doc_wrap_head{
    background-color: var(--seagreen);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 30px;
}
.doc_wrap_head p{
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--opensans);
}
/* ===================welcome page end======================= */