.top-bar {
    background-color: var(--tp-light);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: #666;
    text-decoration: none;
    margin-right: 20px;
}

.top-bar a:hover {
    color: var(--tp-blue);
}

.social-icons a {
    margin-left: 15px;
    color: #666;
}



/* .................................................... */
.carousel-section {
    margin-top: 0;
    /* margin-bottom: 40px; */
}

.carousel-item {
    background: radial-gradient(circle at 74.11507924397786% 94.03727213541667%, #ffffff 0%, 17.5%, rgb(0, 146, 230) 35%), radial-gradient(circle at 58.97912343343099% 66.87540690104167%, rgb(255 255 255) 0%, 14.7%, rgb(249 249 249 / 0%) 30%), radial-gradient(circle at 0.5939420064290365% 57.086690266927086%, rgb(241 239 239) 0%, 7.9799999999999995%, rgba(22, 87, 217, 0) 14%), radial-gradient(circle at 13.200607299804688% 9.217885335286459%, rgb(255 255 255) 0%, 16.5%, rgba(162, 56, 255, 0) 55%), radial-gradient(circle at 100% 37.314453125%, rgb(241 239 239) 0%, 9.36%, rgb(252 253 255 / 0%) 18%), radial-gradient(circle at 78.61783345540364% 57.83340454101562%, rgb(241 239 239) 0%, 17.5%, rgb(241 239 239) 35%), radial-gradient(circle at 1.8846766153971355% 94.78581746419272%, #ffffff 0%, 8.6%, rgb(10 51 75) 20%), radial-gradient(circle at 48.9013671875% 49.521484375%, #696d70 0%, 100%, rgb(241 239 239) 100%);
    height: 600px;
    background-position: center;
    background-size: cover;
    position: relative;
}
.carousel-item .out_slider_box{
    width: 100%;
    height: 100%;
    display: flex;
    /* border: 1px solid red; */
}
.out_slider_box .in_slider_box{
    /* border: 1px solid red; */
    width: 50%;
    position: relative;
    padding: 6%;
    align-content: center;
}
.out_slider_box .in_slider_box h2{
    color: #3fe0e6;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.out_slider_box .in_slider_box p{
    color: white;

}
.in_slider_box .img{
    position: absolute;
    top: 120px;
    left: 67px;
    width: 238px;
}
.in_slider_box .img1{
    position: absolute;
    top: 10px;
    left: -35px;
    width: 449px;
    animation: avi 6s ease-out infinite;
}
.in_slider_box .img2{
    position: absolute;
    top: 101px;
    left: 88px;
    width: 586px;
}
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.carousel-caption {
    background: rgba(15, 75, 125, 0.85);
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    bottom: 50%;
    transform: translateY(50%);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-caption h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-caption p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #f0f0f0;
    line-height: 1.6;
}

.carousel-btn {
    background-color: #ffffff;
    color: var(--tp-blue);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.carousel-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.9;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--tp-blue);
    padding: 25px;
    border-radius: 50%;
    background-size: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.1);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: #ffffff;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--tp-blue);
    opacity: 1;
    transform: scale(1.2);
}

/* Animation for carousel items */
.carousel-item .carousel-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    box-shadow: 2px 2px 10px black;
}

.carousel-item.active h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.carousel-item.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.carousel-item.active .carousel-btn {
    opacity: 1;
    transform: translateY(0);
}
@media(max-width:600px){
    .carousel-item .out_slider_box{
        flex-direction: column;
    }
    .carousel-item .out_slider_box{
        width: 100%;
    }
    .out_slider_box .in_slider_box{
        width: 100%;
    }
    .in_slider_box .img{
        top: 28px;
        left: 75px;
        width: 171px;
    }
    .in_slider_box .img1{
        top: -32px;
        left: 18px;
        width: 291px;
    }
    .in_slider_box .img2{
        display: none;
    }
    .out_slider_box .in_slider_box h2{
        font-size: 2.5rem;
    }
}
@keyframes avi{
    0%{
        transform: rotate(360deg);
    }
}
/*-------------- page_heading --------------*/
.heading{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    padding-top: 5%;
}
.heading .heding_name{
    background: linear-gradient(yellow, red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.heading h2{
    color: #1f72a1;
    font-size: 30px;
    font-weight: bold;
}
.heading .heading_left{
    position: relative;
}
.heading .heading_left::before{
    content: " ";
    width: 70px;
    height: 4px;
    position: absolute;
    background: #1f72a1;
    top: 19px;
    right: 100px;
}
.heading .heading_left::after{
    content: " ";
    width: 70px;
    height: 4px;
    position: absolute;
    background: #1f72a1;
    top: 19px;
    left: 100px;
}
.heading .heading_right{
    position: relative;
}
.heading .heading_right::before{
    content: " ";
    width: 30px;
    height: 4px;
    position: absolute;
    background: #1f72a1;
    top: -34px;
    left: 100px;
}
.heading .heading_right::after{
    content: " ";
    width: 30px;
    height: 4px;
    position: absolute;
    background: #1f72a1;
    top: -34px;
    right: 100px;
}
.heading p{
    color: #727272;
    font-size: 16px;
    margin-bottom: 0rem;
}

/* ............................................................... */
.jit_main2{
    background:#f4fbff;
    padding: 2%;
}
.jit_row_main{
    display: flex;
    flex-wrap: wrap;
}
.jit_tutorial_option_main{
    width: 25%;
    height: 100%;
    border: 1px solid white;
    box-shadow: 0px 0px 10px rgba(155, 155, 155, 0.658);
}
.jit_all_option{
    line-height: 30px;
    list-style-type: none;
    margin-right: 15px;
    height:720px;
    width: 100%;
    overflow: scroll;
    background: #ffffff;
}
.jit_option_hading{
    color: #fdfcfc;
    font-weight: 700;
    background: #1570a6;
    padding: 1.4rem 1rem;
    font-size: 20px;
}
.jit_all_option li{
    border-bottom: 1px solid #90b2c5;
    padding-bottom: .25rem;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 3%;
    transition: .5s;
}
.jit_all_option li i{
    margin-right: 17px;
    list-style: none;
    display:none;
}
.jit_all_option a{
    text-decoration: none;
    color: #1f1f1f;
    font-size: 18px;
}
.jit_all_option a li i{
    display:none;
}
.jit_all_option li:hover i{
    display: block;
}
.jit_all_option li:hover{
    background: #ceedff;  
}
.jit_tutorial_menu{
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    margin: 2%;
}
 /* ------------------------sakand ---------------------*/
 .jit_tutorial_text_main1{
    width: 55%;
    background: white;
    box-shadow: 3px 2px 10px rgb(70 70 70 / 13%);
    padding: 1%;
    margin-left: 30px
}
.jit_cover{
    display: flex;
    background: #1570a6;
    align-items: center;
    height: 150px;
    justify-content: space-between;
    border: 1px solid white;
    box-shadow: 2px 2px 10px rgba(129, 129, 129, 0.616);
}
.jit_cover_html{
    width: 45%;
    text-align: center;
}
.jit_cover_html h5{
    background: white;
    color: #1570a6;
    padding: 3%;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}
.jit_cover_html p{
    color: white;
    font-size: 20px;
}
.jit_cover img{
    margin-right: 50px;
}
.jit_hading{
    display: flex;
    justify-content: space-between;
    padding: 2%;
}
.jit_hading h5{
    font-size: 25px;
    color: #1570a6;
}
.jit_tutorial_img i{
    font-size: 30px;
    color: #1570a6;
    cursor: pointer;
}
.jit_table_content_header{
    background-color:#1570a6;
    padding: 18px 40px;
    font-weight: 600;
    color: #fff;
    font-weight: bold;
    font-size:22px;
}
.jit_table-content__content{
    padding: 12px 20.6px;
    border: 1px solid  #afafaf; 
}
.jit_table-content__content li{
    padding: 15px 0px;
    border-bottom: 1px solid #8bb7d1;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}
.jit_table-content__content li a{
    text-decoration: none;
    color: rgb(22, 21, 21);
    width: 100%;
    font-size:18px;
    display: flex;
    justify-content: space-between;
    margin-left: 15px;
}
.jit_table-content__content li i{
    display: none;
    margin-right: 10px;
}
.jit_table-content__content li:hover i{
    display: block;
}
.jit_table-content__content li:hover{
    background: #a2c8dd;
}
@media (max-width: 768px) {
    .jit_row_main{
        flex-direction: column-reverse;
    }
    .jit_tutorial_option_main{
        background: #1570a6;
        width: 100%;
        order: 2;
        margin-top: 20px;
    }
    .jit_tutorial_text_main1 {
        width: 100%;
        margin: 20px 0;
    }
    .jit_tutorial_menu{
        display: block;
    }
    .jit_all_option{
        display: none;
    }
}
@media (max-width: 600px) {
    .jit_row_main {
        margin: 0 10px;
    }
    .jit_option_hading {
        font-size: 18px;
        padding: 1rem;
    }
    .jit_all_option li {
        font-size: 14px;
        line-height: 24px;
    }
    .jit_hading {
        font-size: 20px;
    }
    .jit_table_content_header {
        font-size: 18px;
        padding: 12px 20px;
    }
    .jit_table-content__content li a {
        font-size: 14px;
    }
}

/* ....................................................................... */
.jit_main{
    background: #1570a6;
}
.jit_sub_main{
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(230, 225, 225);
    padding: 2% 0%;
    flex-wrap: wrap;
}
.jit_contant{
    text-align: center;
    font-family: 'Raleway', sans-serif;
    width: 200px;
    margin: 1%;
}
.jit_icon{
    font-size: 60px;
}
.jit_number{
    font-size: 50px;
    font-weight: bold;
    margin: 5%;
}
.jit_text{
    font-size: 20px;
    font-weight: bold;
    margin: 2%;
}
/* ................................................................. */
.tools-section {
    padding: 80px 0;
    background: #f8fafc;
}

.tools-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.tools-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
    margin: 0;
}

.tools-header .see-all {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tools-header .see-all:hover {
    color: #1565c0;
    transform: translateX(5px);
}

.tools-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: -5px;
    margin-bottom: 40px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tool-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33,150,243,0.1), rgba(26,35,126,0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #2196f3;
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    background: #2196f3;
}

.tool-icon i {
    font-size: 28px;
    color: #2196f3;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon i {
    color: white;
}

.tool-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 10px;
}

.tool-info p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-stats {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-item i {
    font-size: 14px;
    color: #64748b;
}

.stat-item span {
    font-size: 14px;
    color: #64748b;
}

.tool-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e3f2fd;
    color: #2196f3;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.tool-badge.new {
    background: #e8f5e9;
    color: #43a047;
}

.tool-badge.popular {
    background: #fff3e0;
    color: #f57c00;
}

@media (max-width: 768px) {
    .tools-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tools-header h2 {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
}
/* ............................................................ */
.announcement-banner {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    padding: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1633356122544-f134324a6cee?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.announcement-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.announcement-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.announcement-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.announcement-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announcement-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #ffffff;
    color: #1a237e;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.announcement-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #e3f2fd;
}

@media (max-width: 768px) {
    .announcement-title {
        font-size: 2rem;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}


/* ............................................................. */
.f_web_page{
    background: #f3f7fd;
}
.web_page{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5%;
}
.web{
    width: 406px;
    text-align: center;
    padding: 50px 20px;
    margin: 1%;
    border-radius: 5px;
    transition: .5s;
    background: white;
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57)
}
.web h2{
    margin: 5% 0%;
    color: #1570a6;
    font-size: 20px;
    font-weight: 700;
}
.web p{
    color: rgb(95, 95, 95);
    margin-bottom: 0rem;
}
.web img{
    width: 70px;
}
.web:hover{
    box-shadow: 2px 2px 10px rgba(160, 160, 160, 0.74);
}
/* ........................................................................ */
ul{
    margin-bottom: 0rem;
    padding-bottom: 0rem;
    padding-left: 0rem;
}
.nav_top{
    background: #284d63;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav_top_box1{
    width: 15%;
    height: 36px;
}
.nav_top_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    width: 85%;
}
.only_add{
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-left: 5%;
}
.only_add a{
    text-decoration: none;
    color: white;
    transition: .5s;
}
.nav_top_box i{
    margin: 10px;
}
.only_sign{
    background: #1570a6;
    width: 20%;
    height: 40px;
    align-content: center;
    text-align: end;
    clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0 100%);
    padding-right: 5%;
}
.only_sign i{
    color: white;
    font-size: 22px;
    margin: 5px;
}
.only_sign button{
    padding: 1% 6%;
    border: none;
    border-radius: 20px;
    color: #1570a6;
    font-size: 16px;
}
.only-icon a{
    color: white;
    margin: 0px;
    border-right: 1px solid rgb(141, 141, 141);
    transition: .5s;
}
.only_add a:hover{
    color: #c9c6c6;
}
.only_icon i:hover{
    color: #dad6d6;
}
/*--------------------- nav-menu ---------------------*/
nav{
    position: sticky;
    top: 0px;
    box-shadow: 0px 5px 8px rgba(43, 43, 43, 0.295);
    background: #1570a6;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}
nav .logo{
    clip-path: polygon(0 0, 65% 0, 100% 100%, 0% 100%);
    background: #f6f6f7;
    font-size: 20px;
    font-weight: bold;
    color: #1570a6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    padding: 1%;
}
.menu-s{
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.logo img{
    width: 70px;
}
.main_menu{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.main_menu .menu{
    list-style: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;  
    border-right: 1px solid #60a1c7;
    transition: .5s;
}
.main_menu .menu .menu_a{
    color: #ffffff;
    text-decoration: none;
    padding: 32px 10px;
    position: relative; 
    transition: .2s; 
}
.menu_a i{
    margin: 8px;
    font-size: 14px;
    transition: .5s;
}
.menu:hover .menu_a i{
    transform: rotate(180deg);
}
.menu_a::after{
    content: ' ';
    width: 0%;
    height: 4px;
    background: rgb(255, 255, 255);
    position: absolute;
    bottom: 2px;
    left: 0px;
    transition: .2s;
}
.menu_a:hover.menu_a::after{
    width: 100%;
}
.sub_menu{
    display: flex;
    background: #ebf3f8;
    position: absolute;
    top: 100px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 58%);
    border-bottom: 5px solid rgb(21 112 166);
    transition: .2s;
    visibility: hidden;
    z-index: 999;
}
.sub_menu .menu-sub{
    list-style: none;
    border-bottom: 1px solid rgb(197, 197, 197);
    padding: 10px;
}
.sub_menu .menu-sub .sub_a{
    text-decoration: none;
    color: #000000;
}
.menu-sub_a{
    text-decoration: none;
    color: #284d63;
}
.main_menu .menu .menu_a:hover{
    color: #e6e6e6;
}
.main_menu .menu:hover .sub_menu{
    top: 55px;
    visibility: visible;
}
/*----------------- menu_list ------------*/
.menu_list{
    width: 20vw;
    margin-right: 20px;
}
.menu_list1{
    justify-items: center;
    width: 20vw;
    border-left: 1px solid rgb(189, 221, 252);
}
.menu_list1 img{
    width: 60px;
}
.menu_list1 h5{
    color:#1570a6;
    font-weight: bold;
    margin: 10px 0px;
    font-size: 20px;
}
.menu_list1 p{
    font-size: 16px;
    color: #3d3d3d;
    text-align: center;
}
.sign{
    background: white;
    width: 30%;
    padding: 0% 1%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sign input{
    border: none;
    outline: none;
}
.sign i{
    padding: 3%;
    font-size: 16px;
    border-radius: 50%;
    color: rgb(43, 43, 43);
}
.sign button{
    padding: 2% 5%;
    border-radius: 30px;
    border: 1px solid rgb(70, 70, 70);
}
.glo-small{
    padding:1% 1.5%;
    background: white;
    border-radius: 50%;
    display: none;
    margin-left: 20%;
}
/*------------------ mobile-nav ---------------*/
.main_menu-mobile{
    display: none;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(19, 72, 102, 0.932);
    width: 100%;
    height: 100vh;
    padding-top: 15%;
    z-index: 999;
}
.menu-mobile{
    list-style: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;  
    border-bottom: 1px solid #ffffff;
    transition: .5s;
    padding: 2% 0%;
    margin: 0% 3%;
}
.menu_a-mobile{
    color: #ffffff;
    text-decoration: none;
    padding: 32px 10px;
    position: relative; 
    transition: .2s; 
}
.sub_menu-mobile{
    background: #ebf3f8;
    position: absolute;
    top: 50px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 58%);
    border-bottom: 5px solid rgb(21 112 166);
    transition: .2s;
    list-style: none;
    z-index: 1000;
    width: 100%;
   
}
.menu-sub-mobile{
    border-bottom: 1px solid rgb(21 112 166);
    padding: 2% 0%;
}
.menu-sub-mobile .menu-sub_a-mobile{
    text-decoration: none;
    color: rgb(21 112 166);
}

/*---------- humber --------*/
.humber{
    display: none;
    cursor: pointer;
    z-index: 999;
 }
 .humber .bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgb(255, 255, 255);
 }
@media(max-width:1000px){
    .sign{
         display: none;
    }
    .menu-s{
        justify-content: start;
    }
    .glo-small{
        display: block;
        margin-left:20%;
    }
    .logo img{
        width: 50px;
    }
}
@media(max-width:900px){
    nav{
        height: 70px;
    }
    /*---------- humber -----------*/
    .humber{
        display: block;
        margin-right: 4%;
     }
     .humber.active .bar:nth-child(2){
        opacity: 0;
     }
     .humber.active .bar:nth-child(1){
        transform: translateY(8px)rotate(45deg);
     }
     .humber.active .bar:nth-child(3){
        transform: translateY(-4px) rotate(-45deg);
     }
     /*---------------- humber ------------*/
    .main_menu-mobile{
        /* display: block; */
     }
    .main_menu{
        display: none;
    }
    .menu-s{
        justify-content: end;
    }
    .glo-small{
        margin: 1% 4%;
    }
    nav .logo {
        width: 30%;
    }
}
@media(max-width:728px){
    .only_add{
        display: none;
    }
    .nav_top_box{
        justify-content: end;
    }
    .only_sign button{
        display: none;
    }
    .global_secrch .global_se{
        width: 70%;
    }
    nav .logo {
        width: 70%;
        font-size: 16px;
    }
    .logo img{
        width: 40px;
    }
    .glo-small{
        padding: 2% 4%;
    }
    .humber{
        margin: 3%;
    }
}
/*-------------- global_secrch --------------*/
.global_secrch{
    background: #0d2431f5;
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    align-content: center;
    justify-items: center;
    z-index: 999;
    display: none;
}
.global_se{
  background: white;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  border-radius: 30px;
}
.global_secrch .global_se i{
    padding: 3%;
    background: #1570a6;
    color: rgb(255, 255, 255);
    border-radius: 50%;
}
.global_se input{
    padding: 1%; 
    border: none;
    outline: none;
}
.global_secrch .golbal_cl i{
    background: white;
    color: rgb(0, 0, 0);
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: 10%;
    right: 10%;
    box-shadow: 0px 0px 5px rgb(124, 124, 124);
}
.arrow{
    background: #1988ad;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
    box-shadow: 0px 0px 5px rgba(37, 37, 37, 0.418);
    text-decoration: none;
    color: white;
    font-size: 25px;
    transition: .5s;
}
.arrow:hover{
    background:#284d63;
    color: white;
}
@media(max-width:500px){
.arrow{
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    font-size: 20px;
    }
}
/* ............................................ */
:root {
    --primary: #00B98E;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}



/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}
/* ....................................................... */
.about-collge{
    background-color: #ebf5f1;
}
.avi_knowledge{
    padding: 0% 5%;
    display: flex;
}
.avi_know_box h2{
    font-weight: bold;
    font-size: 2rem;
    margin:  5% 0%;
    color: #304f7e;
}
.avi_know_box p{
    color: rgb(122, 122, 122);
}
.avi_know_box{
    width: 50%;
    margin: 1%;
}
.avi_know_box img{
    margin-top: 7%;
    width: 40vmax;
}
.avi_bca{
    display: flex;
    flex-wrap: wrap;
}
.avi_know_box .experts_box{
    box-shadow: 0 25px 70px rgb(0 0 0 / 7%);
    border: 1px solid white;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: .5s;
    padding: 1%;
    width: 250px;
    margin: 2%;
}
.avi_know_box .experts_box:hover{
    box-shadow: 0px 0px 10px rgba(83, 83, 83, 0.384);
    transition: .5s; 
}
.experts_box img{
    width: 50px;
    margin: 2rem;
}
.exper_box h3{
    color: #1d5386;
    font-size: 30px;
    font-weight: bold;
    margin: 3px;
    transition: .5s; 
}
.exper_box p{
    color: rgb(110, 110, 110);
    transition: .5s; 
}
@media(max-width:700px){
    .avi_knowledge{
        flex-direction: column;
    }
    .avi_know_box{
        width: 100%;
    }
    .avi_know_box .experts_box{
        width: 100%;
    }
}

/* .......................................................................................... */
footer{
    background: #284d63;
    justify-items: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 0% 5%;
    }
   .footer_menu{
    background: white;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    box-shadow: 2px 2px 10px rgb(65, 65, 65);
    border-radius: 5px;
    padding: 3% 7%;
   }
   .fooer_box{
    margin: 0px 25px;
   }
   .fooer_box h2{
     color: #284d63;
     font-weight: bold;
     font-size: 20px;
   }
   .fooer_box p{
     color: rgb(37, 37, 37);
     margin: 0px;
   }
   .footer_po_site{
    border-bottom: 1px solid white;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2% 0%;
   }
   .footer_po_site img{
    width: 150px;
   }
   footer .impotain_link{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid white;
    position: relative;
    padding: 30px 0px;
   }
   .im_icon{
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -19px;
   }
   .im_icon i{
    padding: 10%;
    margin: 5%;
    border-radius: 50%;
    border: 1px solid rgb(255, 81, 0);
    background: #284d63;
    color: white;
   }
   .impotain_link .im_link{
    margin: 5px;
    display: flex;
    color: white;
    font-size: 18px;
   }
   .impotain_link .im_link i{
    margin: 5px;
   }
   footer p{
    color: white;
    padding: 4% 0%;
    margin-bottom: 0rem;
   }
   @media(max-width:750px){
    .footer_po_site img{
      width: 120px;
    }
   }
   @media(max-width:450px){
    footer .impotain_link{
      justify-content: start;
    }
    .im_icon{
      margin-left: 40%
    }
   }
   /* .............................................0 */
   .jit_main2{
    background:#f4fbff;
    padding: 2%;
}
.jit_row_main{
    display: flex;
    flex-wrap: wrap;
}
.jit_tutorial_option_main{
    width: 25%;
    height: 100%;
    border: 1px solid white;
    box-shadow: 0px 0px 10px rgba(155, 155, 155, 0.658);
}
.jit_all_option{
    line-height: 30px;
    list-style-type: none;
    margin-right: 15px;
    height:720px;
    width: 100%;
    overflow: scroll;
    background: #ffffff;
}
.jit_option_hading{
    color: #fdfcfc;
    font-weight: 700;
    background: #1570a6;
    padding: 1.4rem 1rem;
    font-size: 20px;
}
.jit_all_option li{
    border-bottom: 1px solid #90b2c5;
    padding-bottom: .25rem;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 3%;
    transition: .5s;
}
.jit_all_option li i{
    margin-right: 17px;
    list-style: none;
    display:none;
}
.jit_all_option a{
    text-decoration: none;
    color: #1f1f1f;
    font-size: 18px;
}
.jit_all_option a li i{
    display:none;
}
.jit_all_option li:hover i{
    display: block;
}
.jit_all_option li:hover{
    background: #ceedff;  
}
.jit_tutorial_menu{
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    margin: 2%;
}
 /* ------------------------sakand ---------------------*/
 .jit_tutorial_text_main1{
    width: 55%;
    background: white;
    box-shadow: 3px 2px 10px rgb(70 70 70 / 13%);
    padding: 1%;
    margin-left: 30px
}
.jit_cover{
    display: flex;
    background: #1570a6;
    align-items: center;
    height: 150px;
    justify-content: space-between;
    border: 1px solid white;
    box-shadow: 2px 2px 10px rgba(129, 129, 129, 0.616);
}
.jit_cover_html{
    width: 45%;
    text-align: center;
}
.jit_cover_html h5{
    background: white;
    color: #1570a6;
    padding: 3%;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}
.jit_cover_html p{
    color: white;
    font-size: 20px;
}
.jit_cover img{
    margin-right: 50px;
}
.jit_hading{
    display: flex;
    justify-content: space-between;
    padding: 2%;
}
.jit_hading h5{
    font-size: 25px;
    color: #1570a6;
}
.jit_tutorial_img i{
    font-size: 30px;
    color: #1570a6;
    cursor: pointer;
}
.jit_table_content_header{
    background-color:#1570a6;
    padding: 18px 40px;
    font-weight: 600;
    color: #fff;
    font-weight: bold;
    font-size:22px;
}
.jit_table-content__content{
    padding: 12px 20.6px;
    border: 1px solid  #afafaf; 
}
.jit_table-content__content li{
    padding: 15px 0px;
    border-bottom: 1px solid #8bb7d1;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}
.jit_table-content__content li a{
    text-decoration: none;
    color: rgb(22, 21, 21);
    width: 100%;
    font-size:18px;
    display: flex;
    justify-content: space-between;
    margin-left: 15px;
}
.jit_table-content__content li i{
    display: none;
    margin-right: 10px;
}
.jit_table-content__content li:hover i{
    display: block;
}
.jit_table-content__content li:hover{
    background: #a2c8dd;
}
@media (max-width: 768px) {
    .jit_row_main{
        flex-direction: column-reverse;
    }
    .jit_tutorial_option_main{
        background: #1570a6;
        width: 100%;
        order: 2;
        margin-top: 20px;
    }
    .jit_tutorial_text_main1 {
        width: 100%;
        margin: 20px 0;
    }
    .jit_tutorial_menu{
        display: block;
    }
    .jit_all_option{
        display: none;
    }
}
@media (max-width: 600px) {
    .jit_row_main {
        margin: 0 10px;
    }
    .jit_option_hading {
        font-size: 18px;
        padding: 1rem;
    }
    .jit_all_option li {
        font-size: 14px;
        line-height: 24px;
    }
    .jit_hading {
        font-size: 20px;
    }
    .jit_table_content_header {
        font-size: 18px;
        padding: 12px 20px;
    }
    .jit_table-content__content li a {
        font-size: 14px;
    }
}

.jit_main2{
    background:#f4fbff;
    padding: 2%;
}
.jit_row_main{
    display: flex;
    flex-wrap: wrap;
    /* height: 745px; */
}
.jit_tutorial_option_main{
    width: 25%;
    height: 100%;
    border: 1px solid white;
    box-shadow: 0px 0px 10px rgba(155, 155, 155, 0.658);
}
.jit_all_option{
    line-height: 30px;
    list-style-type: none;
    margin-right: 15px;
    height:720px;
    width: 100%;
    overflow: scroll;
    background: #ffffff;
}
.jit_option_hading{
    color: #fdfcfc;
    font-weight: 700;
    background: #1570a6;
    padding: 1.4rem 1rem;
    font-size: 20px;
}
.jit_all_option li{
    border-bottom: 1px solid #90b2c5;
    padding-bottom: .25rem;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 3%;
    transition: .5s;
}
.jit_all_option li i{
    margin-right: 17px;
    list-style: none;
    display:none;
}
.jit_all_option a{
    text-decoration: none;
    color: #1f1f1f;
    font-size: 18px;
}
.jit_all_option a li i{
    display:none;
}
.jit_all_option li:hover i{
    display: block;
}
.jit_all_option li:hover{
    background: #ceedff;  
}
.jit_tutorial_menu{
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    margin: 2%;
}
 /* ------------------------sakand ---------------------*/
 .jit_tutorial_text_main1{
    width: 55%;
    background: white;
    box-shadow: 3px 2px 10px rgb(70 70 70 / 13%);
    padding: 1%;
    margin-left: 30px;
    overflow: auto;
    height: 736px;
}
.jit_cover{
    display: flex;
    background: #1570a6;
    align-items: center;
    height: 150px;
    justify-content: space-between;
    border: 1px solid white;
    box-shadow: 2px 2px 10px rgba(129, 129, 129, 0.616);
}
.jit_cover_html{
    width: 45%;
    text-align: center;
}
.jit_cover_html h5{
    background: white;
    color: #1570a6;
    padding: 3%;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}
.jit_cover_html p{
    color: white;
    font-size: 20px;
}
.jit_cover img{
    margin-right: 50px;
}
.jit_hading{
    display: flex;
    justify-content: space-between;
    padding: 2%;
}
.jit_hading h5{
    font-size: 25px;
    color: #1570a6;
}
.jit_tutorial_img i{
    font-size: 30px;
    color: #1570a6;
    cursor: pointer;
}
.jit_table_content_header{
    background-color:#1570a6;
    padding: 18px 40px;
    font-weight: 600;
    color: #fff;
    font-weight: bold;
    font-size:22px;
}
.jit_table-content__content{
    padding: 12px 20.6px;
    border: 1px solid  #afafaf; 
}
.jit_table-content__content li{
    padding: 15px 0px;
    border-bottom: 1px solid #8bb7d1;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}
.jit_table-content__content li a{
    text-decoration: none;
    color: rgb(22, 21, 21);
    width: 100%;
    font-size:18px;
    display: flex;
    justify-content: space-between;
    margin-left: 15px;
}
.jit_table-content__content li i{
    display: none;
    margin-right: 10px;
}
.jit_table-content__content li:hover i{
    display: block;
}
.jit_table-content__content li:hover{
    background: #a2c8dd;
}

       /* html contant */


.jit_html_introduction_text{
    font-family:"Poppins", sans-serif;
    font-size: 17px;
}
.jit_html_introduction_text h3{
    color:#1570a6; 
    margin-bottom: 1rem ;
    font-family:"Poppins", sans-serif;
    font-weight: bold;
}
.jit_html_content_main{
    /* overflow: auto; */
}
.jit_p{
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: bold;
}
.jit_list{
    background-color:#d8f0ff;
    border-radius: 0rem;
    padding: 1rem;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}
.jit_list li{
    text-align: justify;
    position: relative;
    padding-left: 1.5rem;
    list-style: none;
}

.jit_list li::before{
    content: '';
    background-color:black;
    min-width: .45rem;
    height: .45rem;
    display: inline-block;
    border-radius: 0vmax;
    position: absolute;
    left: 0;
    top: .5rem;
    transform: translateY(0);
}

.jit_html_introduction_text2{
    margin-top: 20px;
}
.jit_html_introduction_text2 h3{
    font-family: "Poppins", sans-serif;

}
.jit_html_introduction_text2 p{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}

.jit_word_html{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}

.jit_propati_hading{
    display: flex ;
    padding: 10px;
    color: #1570a6;
}

.jit_advantagr_hading{
    font-size: 22px;
    font-weight: bold;
    color:rgb(12, 12, 92);
}




@media (max-width: 768px) {
    .jit_row_main{
        flex-direction: column-reverse;
    }
    .jit_tutorial_option_main{
        background: #1570a6;
        width: 100%;
        order: 2;
        margin-top: 20px;
    }
    .jit_tutorial_text_main1 {
        width: 100%;
        margin: 20px 0;
    }
    .jit_tutorial_menu{
        display: block;
    }
    .jit_all_option{
        display: none;
    }
}
@media (max-width: 600px) {
    .jit_row_main {
        margin: 0 10px;
    }
    .jit_option_hading {
        font-size: 18px;
        padding: 1rem;
    }
    .jit_all_option li {
        font-size: 14px;
        line-height: 24px;
    }
    .jit_hading {
        font-size: 20px;
    }
    .jit_table_content_header {
        font-size: 18px;
        padding: 12px 20px;
    }
    .jit_table-content__content li a {
        font-size: 14px;
    }
}

.tutorials_page{
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 5%;
}
.tutorials{
    background: #ffffff;
    box-shadow: 0 25px 70px rgb(0 0 0 / 7%);
    width: 250px;
    height: 150px;
    padding: 2%;
    margin: 1.5%;
    border-radius: 5px;
    transition: .5s;
    text-align: center;
}
.tutorials img{
    width: 50px;
    margin: 5% 0%;
}
.tutorials p{
    color: rgb(95, 95, 95);
    font-size: 20px;
    font-weight: bold;
}
.tutorials:hover{
    box-shadow: 0px 0px 10px rgba(78, 78, 78, 0.24);
}
.jit_mission_vision_main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}
.jit_mission_sub_main {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.jit_mission_option {
    width: 25%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}
.jit_mission_option a {
    text-decoration: none;
    width: 100%;
}
.jit_mission_option a:hover .jit_mission_vission_expression {
    background: #644EEE;
    color: #fff;
}
.jit_mission_vission_expression {
    background-color: #F5F5F5;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #211F38;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 15px;
    transition: 0.4s;
}
.jit_border_right {
    background: linear-gradient(#644EEE, #fff);
    width: 5px;
}
.jit_agency_solution_img_text_main {
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 20px;
    background: #f4f4f4;;
    flex: 1;
}
/* .jit_agency_solution_img{
    margin-top: 13px;
} */
.jit_agency_solution_img img {
    width: 100%;
    height:380px;;
    border-radius: 6px;
    transition: opacity 0.3s ease-in-out;
}
.jit_agency_solution_text_main {
    background-color: #fff;
    border-radius: 6px;
    padding: 30px;
    /* margin-left: 25px; */
    flex: 1;
    transition: transform 0.3s ease-in-out;
}
.jit_agency_solution_text_main.active {
    transform: scale(1.05);
}
.jit_agency_solution_heading {
    font-size: 28px;
    font-weight: 800;
    border-bottom: 2px solid #D0CCFF;
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.jit_agency_solution_text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    color: #737092;
    margin-bottom: 15px;
}
.jit_agency_icon_text_main {
    margin-top: 10px;
}
.jit_agency_body_line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0;
}
.jit_agency_icon i {
    font-size: 18px;
    color: #644EEE;
}

/* Responsive  */
@media (max-width: 1024px) {
    .jit_mission_sub_main {
        width: 90%;
        flex-direction: column;
        align-items: center;
    }
    .jit_mission_option {
        width: 100%;
        text-align: center;
        padding-top: 20px;
    }
    .jit_agency_solution_img_text_main {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .jit_agency_solution_text_main {
        width: 100%;
        margin: 15px 0;
    }
    .jit_border_right {
        width: 100%;
        height: 5px;
    
        background: linear-gradient(to right, #644EEE, #fff);
    }
}

@media (max-width: 768px) {
    .jit_mission_vission_expression {
        font-size: 18px;
        height: 60px;
    }
    .jit_agency_solution_heading {
        font-size: 24px;
    }
    .jit_agency_solution_text {
        font-size: 14px;
    }
    .jit_agency_body_line {
        font-size: 14px;
        gap: 10px;
    }
    .jit_agency_icon i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .jit_mission_vission_expression {
        font-size: 16px;
        height: 50px;
    }

    .jit_agency_solution_img_text_main {
        padding: 10px;
    }

    .jit_agency_solution_heading {
        font-size: 20px;
    }

    .jit_agency_solution_text {
        font-size: 14px;
        line-height: 24px;
    }

    .jit_agency_body_line {
        font-size: 13px;
    }

    .jit_agency_icon i {
        font-size: 14px;
    }
}