

/* ===== Start of style.css ===== */
@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400;1,700&display=swap");

html,
body {
    height: 100%;
    font-family: "Arimo", sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #222222;
    /* font-family: "Arimo", sans-serif; */
}

p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    /* padding: 0; */
    margin: 0;
}



/* Preloder */

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #ffffff;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

/*---------------------
   Helper CSS
 -----------------------*/

.section-title {
    text-align: center;
    position: relative;
    /* margin-bottom: 55px; */
}

.section-title img {
    margin-bottom: 15px;
}

.section-title h2 {
    /* font-weight: 400;
    font-size: 38px; */
    text-transform: capitalize;
}

.section-title p {
    padding-top: 15px;
    margin-bottom: 0;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

.site-btn {
    display: inline-block;
    font-size: 16px;
    padding: 16px 15px;
    min-width: 180px;
    color: #fff;
    background: #8DB952;
    line-height: 1;
    text-align: center;
    font-weight: 700;
    border: none;
    border-radius: 2px;
}

.site-btn i {
    font-size: 24px;
    position: relative;
    top: 5px;
    margin-left: 4px;
}

.site-btn:hover {
    color: #fff;
}

.section__title {
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 45px;
    position: relative;
}

.section__title:after {
    position: absolute;
    content: "";
    width: 60px;
    height: 4px;
    left: calc(50% - 30px);
    bottom: 0;
    background: #8DB952;
}

.section__title h2 {
    margin-bottom: 0;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .section__title h2 {
        font-size: 24px;
    }
}

.search-model {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #ffffff;
    z-index: 99999;
}

.search-model-form {
    padding: 0 15px;
}

.search-model-form input {
    width: 500px;
    font-size: 34px;
    border: none;
    border-bottom: 2px solid #ededed;
    background: 0 0;
    color: #999;
}

@media (max-width: 576px) {
    .search-model-form input {
        width: 100%;
        font-size: 24px;
    }
}

.search-close-switch {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #333;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 39px;
    line-height: 28px;
    top: 30px;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pt83 {
    padding-top: 83px;
}

/*---------------------
   Header section
 -----------------------*/

.header {
    padding: 40px 45px 0;
    padding-top: 40px;
}

@media (max-width: 576px) {
    .header {
        padding: 40px 0 0;
    }
}

@media (max-width: 576px) {
    .header__social {
        display: none;
    }
}

.header__social a,
.header__switches a {
    display: inline-block;
    color: #222222;
    padding-top: 5px;
    margin-right: 15px;
    font-size: 16px;
}

.header__social a:last-child,
.header__switches a:last-child {
    margin-right: 0;
}

.header__social a.nav-switch,
.header__switches a.nav-switch {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e1e1e1;
    text-align: center;
    padding-top: 9px;
    margin-top: -9px;
}

@media (max-width: 576px) {

    .header__social a.nav-switch,
    .header__switches a.nav-switch {
        display: inline-block;
    }
}

.header__switches {
    text-align: right;
}

@media (max-width: 576px) {
    .header__switches {
        text-align: center;
        padding-top: 20px;
    }
}

/*----------
   Menu
 ---------*/

.main__menu {
    position: relative;
    right: 0;
    padding-top: 25px;
    text-align: center;
}

@media (max-width: 576px) {
    .main__menu .nav__menu {
        display: none;
    }
}

.main__menu .nav__menu>li {
    display: inline-block;
    position: relative;
}

.main__menu .nav__menu>li:last-child a {
    margin-right: 0;
}

.main__menu .nav__menu>li>a {
    position: relative;
    font-size: 16px;
    color: #7E858B;
    font-weight: 700;
    padding: 5px 2px;
    margin-right: 40px;
    text-transform: uppercase;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .main__menu .nav__menu>li>a {
        margin-right: 20px;
    }
}

.main__menu .nav__menu>li>a:after {
    position: absolute;
    content: "";
    width: 0;
    height: 6px;
    left: 0;
    bottom: 8px;
    background: #8DB952;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.main__menu .nav__menu>li>a.menu--active {
    color: #222222;
}

.main__menu .nav__menu>li>a.menu--active:after {
    width: 100%;
}

.main__menu .nav__menu>li:hover a {
    color: #222222;
}

.main__menu .nav__menu>li:hover a:after {
    width: 100%;
}

.main__menu .nav__menu>li:hover .sub__menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

.main__menu .nav__menu>li .sub__menu {
    position: absolute;
    text-align: left;
    padding: 10px 0;
    width: 170px;
    left: 0;
    top: 100%;
    margin-top: 50px;
    -webkit-box-shadow: 0 9px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 0 9px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.main__menu .nav__menu>li .sub__menu:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 25px;
    left: 0;
    top: -25px;
}

.main__menu .nav__menu>li .sub__menu>li {
    display: block;
}

.main__menu .nav__menu>li .sub__menu>li>a {
    display: block;
    display: block;
    padding: 5px 15px;
    color: #7E858B;
    text-transform: none;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.main__menu .nav__menu>li .sub__menu>li>a:hover {
    color: #222222;
}

.main__menu .nav__menu>li .sub__menu>li>a:after {
    display: none;
}

.slicknav_menu {
    background: #f7f7f7;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    display: none;
}

@media (max-width: 576px) {
    .slicknav_menu {
        display: block;
    }
}

.slicknav_btn {
    display: none;
}

.slicknav_nav ul {
    margin: 0;
}

.slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #222222;
}

.slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #222222;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 11px 25px;
    margin: 0;
    color: #222222;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #e9e9e9;
}

.slicknav_nav .slicknav_item a {
    border-bottom: none;
}

/*---------------------
   Hero section
 -----------------------*/

.hero__section {
    padding-top: 120px;
    margin-bottom: 90px;
}

@media (max-width: 576px) {
    .hero__section {
        padding-top: 30px;
    }
}

.slide-item {
    padding: 0 5px;
    outline: none;
    cursor: pointer;
}

.slick-center.slide-item img {
    padding: 0;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.hero-slider .slick-track {
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.slide-item img {
    height: 570px;
    padding: 65px 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

@media (max-width: 576px) {
    .slide-item img {
        padding: 0;
    }
}

.hero-text-slider {
    text-align: center;
    padding-top: 50px;
    max-width: 800px;
    margin: 0 auto;
}

/*---------------------
   Footer section
 -----------------------*/

.footer__copyright__text {
    text-align: center;
    padding-bottom: 5px;
}

.footer__copyright__text p {
    font-size: 16px;
}

.footer__copyright__text i {
    color: #d32a2a;
}

.footer__copyright__text a {
    color: #7E858B;
    text-decoration: underline;
}

.footer__copyright__text a:hover {
    color: #8DB952;
}

/*------------------
   About page
 ------------------*/

.about__page {
    padding: 90px 60px 150px;
}

@media (max-width: 576px) {
    .about__page {
        padding: 30px 0 150px;
    }
}

.about__title {
    display: inline-block;
    margin-bottom: 50px;
    position: relative;
}

.about__title:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 6px;
    left: 0;
    bottom: 8px;
    background: #8DB952;
    opacity: 0.5;
    z-index: -1;
}

.about__text {
    padding-bottom: 50px;
}

.about__text img {
    padding-top: 20px;
}

.about__meta {
    overflow: hidden;
    margin-bottom: 35px;
}

.about__meta img {
    float: left;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
    padding-top: 0;
}

.about__meta__info {
    overflow: hidden;
    padding-top: 25px;
}

.about__meta__info h5 {
    margin-bottom: 5px;
}

.about__meta__info p {
    text-transform: uppercase;
    font-size: 12px;
    color: #8DB952;
}

.experience__item {
    padding-top: 15px;
    margin-bottom: 20px;
}

.experience__item h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.skills__text {
    padding-bottom: 50px;
}

.skills__text p {
    margin-bottom: 40px;
}

.single-progress-item {
    margin-bottom: 30px;
}

.single-progress-item h6 {
    margin-bottom: 10px;
}

.progress-bar-style {
    height: 6px;
    background: #E8E8E8;
}

.progress-bar-style .bar-inner {
    height: 100%;
    background: #8DB952;
}

/*-------------------
   Gallery Page
 -------------------*/

.gallery__page {
    padding: 80px 15px 65px;
}

@media (max-width: 576px) {
    .gallery__page {
        padding: 30px 15px 65px;
    }
}

.gallery__warp {
    max-width: 1570px;
    margin: 0 auto;
}

.gallery__item {
    display: block;
    margin-bottom: 30px;
}

.gallery__item img {
    min-width: 100%;
}

.fr-position-outside {
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
}

.fr-position-text {
    color: #fff;
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-outside .fr-close:hover .fr-close-background {
    background-color: transparent;
}

.fr-thumbnail-active {
    border: 2px solid #8DB952;
}

/*----------------
   Blog Page
 ----------------*/

.blog__page {
    padding: 90px 0 55px;
}

@media (max-width: 576px) {
    .blog__page {
        padding: 30px 0 55px;
    }
}

.blog__warp {
    max-width: 1570px;
    padding: 0 15px;
    margin: 0 auto;
}

.blog__item {
    height: 370px;
    position: relative;
    margin-bottom: 30px;
    background-position: center;
}

.blog__item.blog__item--long {
    height: 770px;
}

.blog__item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(43%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.49)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.49) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.49) 100%);
}

@media (max-width: 576px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .blog__item h3 {
        font-size: 22px;
    }
}

.blog__content {
    position: absolute;
    bottom: 30px;
    padding: 0 30px;
    z-index: 2;
}

.blog__content h4 {
    font-size: 22px;
}

.blog__content h4 a {
    color: #fff;
}

.blog__date {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/*-------------------
   Blog Single Page
 --------------------*/

.blog__slider {
    padding: 70px 0 60px;
}

@media (max-width: 576px) {
    .blog__slider {
        padding: 30px 0 60px;
    }
}

.blog__slider .slick-track {
    margin-left: 380px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog__slider .slick-track {
        margin-left: 250px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 576px) {
    .blog__slider .slick-track {
        margin-left: 0;
    }
}

.blog__slider__item {
    outline: none;
    padding: 0 3px;
}

.blog__container {
    max-width: 1000px;
    padding: 0 15px;
    margin: 0 auto 30px;
}

.blog__container p {
    font-size: 18px;
}

.blog__container h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.blog__header {
    text-align: center;
}

.blog__cata {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 13px;
    border-radius: 2px;
    color: #fff;
    background: #8DB952;
    margin-bottom: 20px;
}

.blog__single__title {
    font-size: 44px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.blog__metas {
    margin-bottom: 30px;
}

.blog__metas .blog__meta {
    position: relative;
    display: inline-block;
    margin-right: 18px;
    margin-bottom: 5px;
    padding-right: 20px;
    font-size: 14px;
    color: #7E858B;
}

.blog__metas .blog__meta:after {
    position: absolute;
    content: "|";
    font-size: 14px;
    right: 0;
    top: 0;
    color: #7E858B;
}

.blog__metas .blog__meta:last-child {
    margin-right: 0;
    padding-right: 0;
}

.blog__metas .blog__meta:last-child:after {
    display: none;
}

.blog__article blockquote {
    max-width: 1170px;
    margin: 50px auto;
    padding: 45px 45px 55px;
    background-color: #EAEFE5;
    background-image: url("../img/blog-single/quote.png");
    background-repeat: no-repeat;
    background-position: right 60px bottom -10px;
}

.blog__article blockquote p {
    color: #222222;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.blog__article blockquote h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.blog__article blockquote h5 {
    font-size: 14px;
    text-transform: uppercase;
    color: #8DB952;
    letter-spacing: 2px;
}

.blog__banner {
    max-width: 1170px;
    margin: 0 auto;
}

.blog__banner img {
    min-width: 100%;
}

.post__footer {
    border-top: 1px solid #E8E8E8;
    padding-top: 30px;
    margin-bottom: 70px;
}

.post__tags a {
    display: inline-block;
    font-family: "Raleway", sans-serif;
    color: #7E858B;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 21px;
    margin-bottom: 5px;
    margin-right: 2px;
    background-color: #F3F3F3;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.post__tags a:hover {
    background: #8DB952;
    color: #fff;
}

.post__share {
    text-align: right;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 576px) {
    .post__share {
        text-align: left;
        padding-top: 35px;
    }
}

.post__share span {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
}

.post__share a {
    display: inline-block;
    font-size: 16px;
    color: #7E858B;
    margin-left: 30px;
}

.post__share a:first-child {
    margin-left: 0;
}

.comment__area {
    padding-bottom: 100px;
}

.comment__area h2 {
    margin-bottom: 40px;
}

.comment__form input,
.comment__form textarea {
    width: 100%;
    height: 50px;
    font-size: 16px;
    padding: 15px 20px;
    margin-bottom: 26px;
    color: #222222;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.comment__form input:focus,
.comment__form textarea:focus {
    border: 1px solid #8DB952;
}

.comment__form textarea {
    height: 110px;
    resize: none;
    margin-bottom: 50px;
}

.blog__details__comment {
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 30px;
}

.blog__details__comment h4 {
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.recent__post {
    padding: 75px 15px 60px;
    border-top: 1px solid #E8E8E8;
}

.recent__post h2 {
    margin-bottom: 65px;
}

.recent__post .blog__item {
    background-position: center;
}

/*----------------
   Contact Page
 ----------------*/

.contact__warp {
    max-width: 802px;
    padding: 170px 15px 130px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .contact__warp {
        padding: 30px 15px 130px;
    }
}

.contact__social {
    padding-top: 20px;
    margin-bottom: 40px;
}

.contact__social a {
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    padding-top: 8px;
    margin-right: 6px;
    color: #222222;
    border-radius: 50%;
    background: #E8E8E8;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.contact__social a:hover {
    background: #8DB952;
    color: #ffffff;
}

.contact__text p {
    font-size: 18px;
    color: #222222;
}

.contact__form {
    padding-top: 20px;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    height: 50px;
    font-size: 16px;
    padding: 15px 20px;
    margin-bottom: 26px;
    color: #222222;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact__form input:focus,
.contact__form textarea:focus {
    border: 1px solid #8DB952;
}

.contact__form textarea {
    height: 110px;
    resize: none;
    margin-bottom: 50px;
}
/* ===== End of style.css ===== */


/* ===== Start of common.css ===== */
/* typing Animation  */
.line-1 {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    left: 25%;
}

/* Animation */
.anim-typewriter {
    animation: typewriter 4s steps(31) infinite normal both;
    /* Added infinite for loop */
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 18.3em;
    }
}

.line-1::after {
    content: "";
    animation: blink 0.7s step-end infinite;
    /* Added blinking cursor effect */
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}


/* marquee  */
.title_news {
   /* background: #cdcdcc !important;*/
    box-shadow: 0 0 8px 0 #d1d1d1;
    padding: 10px 1px;
  }
  .scroll-container {
    overflow: hidden;
    position: relative;
  }
  .scroll-text {
    white-space: nowrap;
    animation: scrollRightToLeft 38s linear infinite;
    transition: animation 0s;
    color: #fff;
  }
  .title_news a {
    margin-left: 21px;
  }
  .title_news a {
   font-size: 18px;
  font-weight: 400;
  color: #222;
  text-decoration: underline;
  }
  
   .scroll-container {
           overflow: hidden;
           position: relative;
           }
           .scroll-text {
           white-space: nowrap;
           animation: scrollRightToLeft 38s linear infinite;
           transition: animation 0s;
           color: #fff;
           }
           .scroll-container:hover .scroll-text {
           animation-play-state: paused;
           }

           .scroll-container.paused .scroll-text {
            animation-play-state: paused;
            }

           @keyframes scrollRightToLeft {
           0% {
           transform: translateX(100%);
           }
           100% {
           transform: translateX(-100%);
           }
           }
  
  .scrolling-text {
      animation: scroll 85s linear infinite;
  }
  
  @keyframes scroll {
      0% {
          transform: translateY(0);
      }
      100% {
          transform: translateY(-100%);
      }
  }
  
  .stop-scrolling {
      animation-play-state:Â paused;
  }
  /* marquee  */

/* Top Header Search Css Start */
.header-search-wrapper {
    float: left;
    position: relative;
}

.search-main {
    display: block;
    line-height: 29px;
    padding: 0 14px;
    cursor: pointer;
}

.header-search-wrapper .search-form-main {
    background: #fff none repeat scroll 0 0;
    -webkit-box-shadow: 1px 1px 7px rgba(0, 0, 0, .15);
    box-shadow: 1px 1px 7px rgba(0, 0, 0, .15);
    border-top: 2px solid #408c40;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 124%;
    width: 766px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

.search-form-main.active-search {
    opacity: 1;
    visibility: visible;
}

.header-search-wrapper .search-form-main {
    border-top-color: #d33;
}

.header-search-wrapper .search-form-main:before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #408c40;
    content: "";
    position: absolute;
    right: 15px;
    top: -10px;
}

.header-search-wrapper .search-form-main:before {
    border-bottom-color: #d33;
}

.header-search-wrapper .search-form-main .search-field {
    border-radius: 0;
    padding: 8px 10px;
    width: 627px;
    float: left;
}

.header-search-wrapper .search-form-main .search-submit {
    border: medium none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    float: right;
    padding: 8px 0 10px;
    width: 13%;
    height: 39px;
    background: #ef6d1a;
}

.search-form {
    margin-bottom: 0px;
}

@media only screen and (max-width: 720px) {
    .header-search-wrapper .search-form-main {
        left: 0;
    }
}

.site-header {
    height: 450px;
    /* Remove affer */
    width: 800px;
    /* Remove affer */
    margin: 50px auto;
}

#MainMenu {
    padding: 0;
}

.navbar {
  background-image: linear-gradient(to bottom, #284B63, #284B63);
  border-top: 1px solid white;
  border-bottom: 2px solid #d7a343;
}
.navbar .nav-link, .navbar .dropdown-item {
    color: #fff;
    font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}
.navbar .dropdown-menu {
    background-color: #fff;
  box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
  padding: 0px;
  border-radius: 0px;
}
.navbar .dropdown-item:hover {
    background-color: #FB6818;
    color: #fff;
}
.navbar .dropdown-menu li .dropdown-item{
  font-weight: 500;
  font-size: 16px;
}
/* ---------- DESKTOP ---------- */
@media (min-width: 992px) {

  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
    position: absolute;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 991px) {

  .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-submenu > .dropdown-menu {
    padding-left: 15px;
    border-left: 2px solid #ddd;
    background: #f8f9fa;
  }
}

.btn-default.readmore {
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: 10px;
  transition: 0.3s;
  font-weight: 400;
  line-height: 1.5;
}
/*---------- Search ----------*/
.result-bucket li {
    padding: 12px 15px !important;
}

.instant-results {
    background: #fff;
    width: 100%;
    color: gray;
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .175);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .175);
    display: none;
    z-index: 9999;
    max-height: 221px;
    overflow-y: auto;
}

.form-search {
    transition: all 200ms ease-out;
    -webkit-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
}

.search-form {
    position: relative;
    max-width: 100%;
}

.result-link {
    color: #4f7593;
}

.result-link .media-body {
    font-size: 13px;
    color: gray;
}

.result-link .media-heading {
    font-size: 16px;
    font-weight: 500;
    color: rgb(17, 115, 192) !important;
}

.result-link:hover,
.result-link:hover .media-heading,
.result-link:hover .media-body {
    text-decoration: none;
    color: #4f7593
}

.result-link .media-object {
    width: 50px;
    padding: 3px;
    border: 1px solid #c1c1c1;
    border-radius: 3px;
}

.result-entry+.result-entry {
    border-top: 1px solid #ddd !important;
}

.top-keyword {
    margin: 3px 0 0;
    font-size: 12px;
    font-family: Arial;
}

.top-keyword a {
    font-size: 12px;
    font-family: Arial;
}

.top-keyword a:hover {
    color: rgba(0, 0, 0, 0.7);
}

.quick-links {
    padding: 10px 15px !important;
}

.btn.btn-info.btn5 {
    background-color: #ef6d1a;
    border: 1px solid #ef6d1a;
}

.btn.btn-info.btn5 i {
    color: #fff;
}

.media-body p {
    font-size: 13px;
}



.search {
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, .1);

}

.search input {

    height: 42px;
    text-indent: 25px;
    border: 2px solid #d6d4d4;


}

.search input:focus {

    box-shadow: none;
    border: 2px solid blue;
}

.search .fa-search {
position: absolute;
  top: 16px;
  left: 16px;
  font-size: 15px;
}

.search button {
   position: absolute;
  top: 4px;
  right: 5px;
  height: 34px;
  width: 110px;
  background: #ef6d1a;
  line-height: 0;
  border-color: #ef6d1a;
}

/* Top Header Search Css End  */

/* Logo Image CSS Start  */
.emblem-image{
    width: 70px; 
    /* margin-left: 45px; */
}

.DG-shipping-logo{
    width: 100px; 
    height: 105px;
    object-fit: contain;
}
.widget.no-border.m-0.timeline_text {
  line-height: 38px;
}
.list-inline.sm-text-center.mt-5 li:last-child {
  white-space: unset;
  margin-left: -4px;
}
.slick-next::before, .slick-prev::before {
  font-family: slick;
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #333 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #256bb20d;
  padding: 6px;
}
.slick-prev {
  /* left: -51px !important; */
}
.slick-next {
  /* right: -14px !important; */
}
.breadcrumb-bg.breadcrumb.newpt {
  padding: 16px 0;
}
.search.overwrite input {
  height: 60px;
  text-indent: 25px;
  border: 2px solid #d6d4d4;
}
.search.overwrite button {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  width: 110px;
  background: #ef6d1a;
  line-height: 0;
  border-color: #ef6d1a;
}
.search.overwrite .fa-search {
  position: absolute;
  top: 20px;
  left: 14px;
}
/* Logo Image CSS Start  */


/* Overlay styles */
.owl-carousel .item img {
    width: 90%;
    object-fit: cover;
    border-radius: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Social Media Button CSS Start */


.social-right ul {
    list-style-type: none;
    padding: 0;
    transform: translatex(270px);
    position: fixed;
    top: 35%;
    right: 0;
    z-index: 99;
}

.social-right .facebook-icon {
   display: block;
    margin: 5px;
    background-color: #3b5998;
    width: 311px;
    text-align: left;
    /* Align text to the left */
    padding: 5px 7px;
    border-radius: 11px 0 0 11px;
    /* Adjust rounded corners */
    transition: all 1s;
}


.social-right li {
    display: block;
  margin: 5px;
  width: 310px;
  text-align: left;
  padding: 2px;
  border-radius: 30px 0 0 30px;
  transition: all 1s;
}

.social-right ul li:hover {
    transform: translatex(-110px);
    /* Move to the left on hover */
}

.social-right ul li a {
    color: white;
    text-decoration: none;
}

.social-right ul li .fa-x-twitter {
    text-align: center;
    margin-right: 14px;
    /* Adjusted for right side */
    color: black;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    transform: rotate(0deg);
}

.social-right ul li .fa-facebook {
   text-align: center;
  margin-right: 14px;
  color: #3b5998;
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  transform: rotate(0deg);
}

.social-right ul li .fa-youtube {
    text-align: center;
    margin-right: 14px;
    /* Adjusted for right side */
    color: #d10202;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    transform: rotate(0deg);
}

.social-right ul li .fa-instagram {
   text-align: center;
    margin-right: 14px;
    /* Adjusted for right side */
    color: #d9317a;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    transform: rotate(0deg);
}

.social-right ul li .fa-linkedin {
    text-align: center;
    margin-right: 14px;
    /* Adjusted for right side */
    color: #0a66c2;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    transform: rotate(0deg);
}

.social-right ul li:hover i {
    transform: rotate(360deg);
    transition: all 1s;
}

/* left icon  */
/* .social-left {
    
} */

/* .social-left ul {
    position: fixed;
    top: 50%;
    z-index: 99;
    list-style-type: none;
    padding: 0;
    transform: translatex(-270px);
}

.social-left .who-id-who {
    display: block;
    margin: 5px;
    background-color: #042b53;
    width: 320px;
    text-align: right;
    padding: 10px;
    border-radius: 0 30px 30px 0;
    transition: all 1s;
}

.social-left .meeting-shedule {
    display: block;
    margin: 0px;
    background-color: #042b53;
    width: auto;
    text-align: right;
    padding: 10px;
    border-radius: 0 30px 30px 0;
    transition: all 1s;
}

.social-left ul li:hover {
    transform: translatex(110px);
}

.social-left ul li a {
    color: white;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
}

.social-left ul li i {
    text-align: center;
    margin-left: 14px;
    color: #256bb2;
    background-color: #fff;
    padding: 9px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    transform: rotate(0deg);
}

.social-left ul li:hover i {
    transform: rotate(360deg);
    transition: all 1s;
} */

.social-left ul {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 99;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Shared li styles */
.social-left ul li {
     position: relative;
    background-color: #042b53;
    width: 188px;
   padding: 5px 7px;
   border-radius: 11px 11px;
    margin: 5px;
    transform: translateX(-145px);
    transition: transform 0.4s ease;
}

/* Slide out on hover */
.social-left ul li:hover {
   transform: translateX(-44px);
}

/* Link styles */
.social-left ul li a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Icon styles */
.social-left ul li i {
     margin-left: 14px;
    color: #256bb2;
    background-color: #fff;
    padding: 9px;
    border-radius: 50%;
    width: 31px;
    height: 31px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s;
}

/* Icon rotation */
.social-left ul li:hover i {
    transform: rotate(360deg);
}


/* Popup styles */
.popup {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 1300px;
    /* You can adjust the width */
    text-align: justify;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003440;
    border-radius: 8px 8px 0px 0px;
    padding: 10px;
}

/* Adjusting the h5 to remove margin */
.popup-header h5 {
    margin: 0;
    padding-left: 20px;
    color: #fff;
}

/* Close button styles (already defined above) */
.close {
    font-size: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding-right: 20px;
}

.close:hover {
    color: red;
}

.popup-content {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
    padding: 10px;
}

/* Overlay for background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
}

/* Popup content */
.popups {
    min-width: 90vw;
    max-width: 90vw;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    max-height: 100vh;
    overflow: hidden;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

/* Scrollable table container */
.popup-content {
    overflow: auto;
    max-height: 75vh;
}

/* Close button */
.close-btn {
    font-size: 30px;
    text-decoration: none;
    color: white;
    position: absolute;
    top: 12px;
    right: 24px;
    cursor: pointer;
    font-weight: 600;
    z-index: 5;
    padding: 5px;
    border-radius: 10px;
    width: 40px;
}

.close-btn:hover {
    color: red;
}

/* Social Media Button CSS End */


.header-section {
    padding: 10px;
    border-bottom: 1px solid #dad5d5;
}

.header-section h1 {
    margin: 0;
    display: inline-block;
    font-size: 1.5em;
    vertical-align: text-bottom;
    line-height: 1;
    font-weight: 400;
}

/* Overlay1 styles (when side-nav is active) */
.overlay1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(212, 212, 212, 0.36);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.overlay1.visible {
    display: block;
    opacity: 1;
}


/*Mega Menu Styles Start */

.Mega-Menu {
    width: 100%;
    position: sticky; 
    top: 50px; 
    left: 0;
    right: 0;
    /* padding: 10px; */
    border-radius: 0 0 4px 4px;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    z-index: 999;
    background-color: #ffffff;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.Mega-Menu:before {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #256bb2;
    content: "";
    height: 0;
    left: 92rem;
    position: absolute;
    top: 0;
    width: 0;
    z-index: 9999;
}

.Mega-Menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.Mega-Menu h5 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: capitalize;
    color: #263238;
    line-height: 18px;
    padding: 5px;
}

.Mega-Menu h2 {
    font-size: 18px;
    color: #e26b0a;
}

.Mega-Menu h5:hover {
    border-radius: 3px;
    padding: 5px;
}

.Mega-Menu .list-group ul li {
    margin-bottom: 10px;
}

.Mega-Menu .list-group ul li a {
    color: #546e7a;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    word-break: break-word;
}

.Mega-Menu .list-group ul li a:hover {
    text-decoration: underline;
    border-radius: 3px;
    color: #010178;
}

/* new css  */
.mega-menu-container {
    display: flex;
}
.main-menu {
    width: 330px;
    color: blue;
    background: #256bb2;
}
.main-menu a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: 0.3s;
}
.menu-item{
    border-bottom: 1px solid #ffffff;
}   
.main-menu a:hover, .main-menu a.active {
    background: hsla(0, 0%, 76.9%, .2);
    color: #fff;
}
.sub-menu-container {
    flex: 1;
    padding: 20px;
    display: none;
}
.sub-menu-container.active {
    display: block;
}


/*Mega Menu Styles End */


/* Heightlight Section CSS Start */
.marqueeWrap {
    margin-top: 0px;
    position: relative;
    z-index: 9;
    display: flex;
    /* width: 100%; */
}

.col-lg-2.pt66 {
    padding-right: 0px;
}

.title3 {
    font-size: 17px;
    font-weight: bold;
}

.marqueeTitle {
   background-color: #000;
    color: #fff;
    padding: 10px 10px;
    align-items: center;
    font-weight: bold;
    text-align: center;
}

.col-lg-10.pt77 {
    padding-left: 0px;
}

.marqueeContent {
    background-color: #ef6d1a;
    color: #fff;
    padding: 0 20px;
}

.marqueeScrolling {
    width: 100%;
    padding: 0 20px 0 0;
}

.marqueeScrolling {
    height: 46px;
}

.marquee {
    overflow: hidden;
}

.js-marquee {
    display: flex;
    align-items: center;
    height: 46px;
}

.marqueeScrolling li {
    float: left;
    padding: 0 25px;
    list-style: none;
    color: #fff;
    border-right: 1px solid #fff;
}

.marqueeScrolling li a {
    color: #fff;
}

/* Heightlight Section CSS End */

/* Container for each news item */
.DGS-title h3 {
  font-size: 14px;
  color: #003b49;
  font-weight: 600;
}

.DGS-title h2 {
    font-size: 14px;
    /* font-weight: 800; */
    color: #656565;
}

.first-td {
    width: 28%;
}

.second-td {
    width: 68%;
    color: #010101;
}

/* breadcrumb css start  */

.breadcrumb-bg {
    background-color: #f5eded73;
    border: 1px solid rgb(107 129 172 / .35);
}

.breadcrumb {
    display: flex;
    padding: 8px 0;
    margin-bottom: 0;
    list-style: none;
    border-radius: 0;
}

.breadcrumb li {
    font-size: 16px;
    font-weight: 500;
    color: #333333eb;
    display: inline-block;
    line-height: 21px;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #666666;
    font-size: 20px;
}
.breadcrumb__link {
  color: #0f0aa2;
}
.breadcrumb__link:hover {
  color: #992600;
}
.visually-hidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
    width: 1px;
    word-wrap: normal;
}

/* breadcrumb css end  */

/* acts & rules css  */
.acts-box {
    height: 400px;
    background-color: #256bb2;
    color: #fff;
}

.acts-box h5 {
     color: #fff;
  font-size: 18px;
  padding: 15px 15px 12px 21px;
  border-bottom: 1px solid #fff;
}
.acts-box-content{
    padding: 15px 25px 15px 25px;
    /* text-align: justify; */
}
.acts-box-content p{
    font-size: 16px;
    text-align: justify;
    color: #fff;
}

.acts-rule-section {
    padding-top: 50px;
}

/* Event Section css  */

.centered {
    position: relative;
    top: 40%;
    left: 72%;
    transform: translate(-50%, -50%);
    z-index: 999;
    font-size: 50px;
    color: #FFF;
    font-weight: bolder;
}

.event-tabs {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    top: auto;

}

.event-tab-button {
    padding: 10px 15px;
    font-weight: 600;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.event-tab-button.active {
    background-color: #144a79;
    color: white;
}

.event-tab-button.active::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #144a79;
    transition: all 300ms ease;
}

.event-tab-content {
    display: none;
    background-color: white;
    border-top: 1px solid #ccc;
    z-index: 1;
}

.event-tab-content.active {
    display: block;
}

.inner-box-scroll {
    height: 451px;
    width: auto;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #fff;
    overflow: scroll;
}

.image-container {
    width: 100%;
    height: 220px;
    background-size: cover;
}
.event-section .content-box{
    height: 500px;
    width: auto;
}

.event-section .inner-box-scroll ul li {
    list-style: none;
}

.event-section .list-style-two li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    padding-left: 5px;
    font-weight: 400;
    color: #333333;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 6px
}


.event-section .arrow-icon{
    font-size: 20px;
    color: #1c60a5;
}

/* calender css  */



.fc-view-container {
    height: calc(100% - 50px);
    overflow: hidden;
}

.fc-day-grid-container {
    overflow: auto;
}

.scrolling-text {
    animation: scroll 25s linear infinite;
}

/* Custom Styles for the Event Form */
.event-form {
    display: none;
    margin-top: 20px;
}

.event-form input,
.event-form textarea,
.event-form button {
    margin: 5px;
}

/* Custom styles for the event details */
.event-details {
    margin-top: 10px;
    padding: 6px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
}

.event-details h4 {
  margin-bottom: 4px;
  font-size: 16px;
}

/* Engineering wings css  */
article {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
}

/* Secondary section (Image and meta info) */
.article-recent-secondary {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
}

.article-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    /* Makes sure the video fits the container nicely */
}

/* Main section (Title and text) */
.article-recent-main {
    flex: 1;
    padding: 20px;
    /* Adjusted padding to shift content right */
}

.article-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.article-body {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}


/* Large screens (Desktops) */
@media (min-width: 1200px) {
    article {
        flex-direction: row;
        align-items: flex-start;
    }

    .article-recent-main {
        padding-left: 20px;
    }

    .article-recent-secondary {
        width: 25%;
        /* 1/4 width for image/video */
    }
}

/* Medium screens (Tablets and larger smartphones) */
@media (max-width: 1199px) and (min-width: 768px) {
    article {
        flex-direction: row;
        align-items: center;
    }

    .article-recent-main {
        padding-left: 20px;
    }

    .article-recent-secondary {
        width: 30%;
        /* Video takes 30% width */
    }
}

/* Small screens (Large smartphones) */
@media (max-width: 767px) and (min-width: 576px) {
    article {
        flex-direction: row;
        align-items: center;
    }

    .article-recent-main {
        padding-left: 20px;
    }

    .article-recent-secondary {
        width: 40%;
        /* Video takes 40% width */
    }
}

/* Extra small screens (Mobile phones) */
@media (max-width: 575px) {
    article {
        flex-direction: column;
        align-items: center;
    }

    .article-recent-main {
        padding-left: 0;
        text-align: center;
    }

    .article-recent-secondary {
        width: 100%;
        margin-top: 15px;
    }
}

/* Style for form labels */
label.form-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.dgs-form {
    background: #ffffff;
    padding: 12px 15px 20px;
    border-radius: 4px;
    border: 1px solid #d9d4de;
    margin-top: 18px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.caption-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #343a40;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.latest-posts table {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

/* Optional: Style the table headers for better clarity */
.latest-posts th {
    font-size: 18px;
    font-family: 'Arial', sans-serif;
}



/* Notices and Order section  */
.notices-order {
    padding: 30px 0;
    overflow: hidden;
    /* background: #f3f3f3c7; */
    background-color: #f3f3f3;
}

.news-box {
    background: #fff;
    box-shadow: -4.104px 11.276px 38px 0px rgba(32, 30, 42, 0.10);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    min-height: 399px;
}

.news-box h3 {
    background: #0233b2;
    color: #fff;
    padding: 10px;
    padding-left: 22px;
    font-size: 16px;
    font-weight: 500;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    letter-spacing: 1px;
}



.notif-ticker ul {
    list-style: none;
    padding: 0;
    width: 100%;
    /* margin-left: 35px; */
}

.notif-ticker li {
    padding-left: 0px;
    position: relative;
    border-bottom: 1px dotted #a09f9f;
    text-align: left;
    margin-left: 25px;
    padding-top: 10px;
    margin-right: 25px;
    padding-bottom: 5px;
}

.notif-ticker li a:hover {
    color: #0233b2;
}

/* Responsive Styles for Mobile (max-width: 767px) */
@media screen and (max-width: 767px) {
    .notices-order {
        padding: 20px 0;
    }

    .news-box {
        min-height: 300px;
        padding: 15px;
    }

    .news-box h3 {
        font-size: 14px;
        padding-left: 15px;
    }

    .notif-ticker li {
        margin-left: 15px;
        margin-right: 15px;
        font-size: 14px;
    }
    .col-lg-2.pt66 {
  padding-right: 15px;
}
.col-lg-10.pt77 {
  padding-left: 15px;
}
}

/* Responsive Styles for Tablets (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .notices-order {
        padding: 25px 0;
    }

    .news-box {
        min-height: 350px;
        padding: 20px;
    }

    .news-box h3 {
        font-size: 15px;
        padding-left: 18px;
    }

    .notif-ticker li {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* Responsive Styles for Desktops (min-width: 1025px) */
@media screen and (min-width: 1025px) {
    .notices-order {
        padding: 30px 0;
    }

    .news-box {
        min-height: 399px;
    }

    .news-box h3 {
        font-size: 16px;
        padding-left: 22px;
    }

    .notif-ticker li {
        margin-left: 25px;
        margin-right: 25px;
    }
}


.current-section {
    text-align: center;
    background-color: #efefff;
}

.current-section .section-title {
    padding-top: 40px;
}

.customTabs {
    padding-top: 20px;
    padding-bottom: 40px;
}

.current-section {
    text-align: center;
}

.tabs-wrap {
    position: relative;
    margin: auto;
    display: block;
    text-align: left;
}

.customTabs .nav-tabs {
    border-bottom: 1px solid #256bb2;
}

.customTabs .nav-tabs .nav-item.show .nav-link,
.customTabs .nav-tabs .nav-link.active {
    background-color: #256bb2;
    color: #ffffff;
}

.customTabs .nav-item .nav-link {
    font-size: 1.1rem;
    color: #256bb2;
    border: 1px solid #256bb2;
    border-bottom: 1px solid transparent;
    margin-right: 85px;
    font-weight: 500;
    background-color: #f4f5ff;
    width: 99%;
}

.customTabs .nav-item .nav-link:hover {
    background-color: #2f87e0;
    color: #ffffff;
}



.customTabs .tab-content {
    padding: 1rem;
    background-color: #fff;
    box-shadow: 1px 1px 3px #e9e9e9;
    height: 500px;
    /* overflow-x: hidden; */
}

.list-lable {
    margin-bottom: 0.5rem;
    position: relative;
}

.scroll-content .list-lable>a {
    display: block;
    padding: 0.5rem 2.5rem;
    /* background-color: #eff7ff; */
    color: #414141;
    font-size: 1rem;
    /* border: 2px solid #ccc; */
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.list-lable>a>span {
    margin-left: -2.15rem;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    position: absolute;
    top: 1rem;
    font-size: 1.75rem;
    line-height: 1rem;
    border-radius: 100%;
}

.scroll-content .list-lable>a i {
    color: #ffa905;
}

.light-sm-txt {
   font-size: 0.75rem;
  padding:1px 2px;
}

.light-sm-txt i{
    color: #999;
}
/* Online Appointment Request CSS Start    */
.mt-0 {
    margin-top: 0 !important;
}

.line-bottom {
  position: relative;
  margin-bottom: 11px;
  padding-bottom: 8px;
  font-size: 19px;
  font-weight: 600;
}

.line-bottom:after {
    border: 1px solid #256bb2;
}

.line-bottom:after {
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 50px;
}

form {
    margin-bottom: 9px;
}

.mt78 {
    margin-bottom: 18px;
}

.contact_form .form-group label {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
}

.contact_form .form-control {
    border-radius: 0;
    box-shadow: none;
    height: 45px;
}

.grievance_body {
    color: #333;
}

.grievance_body p {
    margin-bottom: 12px;
}

.kindly-text {
    color: #333;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 25px;
}

.kindly-text.mt109 {
    margin-bottom: 19px;
    display: block;
}

.grievance_footer {
    border-width: 6px;
    border-image: repeating-linear-gradient(45deg, turquoise, pink 4%) 1;
    padding: 10px;
    border-radius: 4px;
    margin-top: 6px;
}

.grievance_footer {
    border: 1px solid #3333;
    padding: 10px;
    border-radius: 4px;
    background-color: #f6f6f6;
}

.grievance_footer p {
    color: #24249d;
    font-size: 16px;
    margin-bottom: 2px;
}
.grievance_footer p b{
    font-size: 15px;
    color: #333;
}

.grievance_footer p a {
    color: #24249d;
    font-size: 15px;
}

/* Online Appointment Request CSS End    */

/* Engineering Wing Tree Team css Start */
.engineering-team-tree {
    display: flex;
    flex-wrap: wrap;
    font-family: Arial;
    justify-content: center;
    margin-top: 30px;
}

.tree {
    padding: 0;
}

.tree:not(:empty):before,
.tree:not(:empty):after,
.tree ul:not(:empty):before,
.tree ul:not(:empty):after,
.tree li:not(:empty):before,
.tree li:not(:empty):after {
    display: block;
    position: absolute;
    content: "";
}

.tree ul,
.tree li {
    position: relative;
    margin: 0;
    padding: 0;
}

.tree li {
    list-style: none;
}

.tree li>.node {
    background-color: #eee;
    color: #222;
    padding: 5px;
    display: inline-block;
    /* height: 200px;
    width: 200px; */
}

.tree.cascade li {
    margin-left: 24px;
}

.tree.cascade li .node {
    margin-top: 12px;
}

.tree.cascade li:before {
    border-left: 2px solid #010101;
    height: 100%;
    width: 0;
    top: 0;
    left: -12px;
}

.tree.cascade li:after {
    border-top: 1px solid #ddd;
    width: 12px;
    left: -12px;
    top: 24px;
}

.tree.cascade li:last-child:before {
    height: 24px;
    top: 0;
}

.tree.cascade>li:first-child:before {
    top: 24px;
}

.tree.cascade>li:only-child {
    margin-left: 0;
}

.tree.cascade>li:only-child:before,
.tree.cascade>li:only-child:after {
    content: none;
}

.tree.horizontal li {
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.tree.horizontal li .node {
    margin: 6px 0;
}

.tree.horizontal li:before {
    border-left: 2px solid #010101;
    height: 100%;
    width: 0;
    top: 0;
    left: -12px;
}

.tree.horizontal li:first-child:before {
    height: 50%;
    top: 50%;
}

.tree.horizontal li:last-child:before {
    height: 50%;
    bottom: 50%;
    top: auto;
}

.tree.horizontal li:after,
.tree.horizontal li ul:after {
    border-top: 2px solid #010101;
    height: 0;
    width: 12px;
    top: 50%;
    left: -12px;
}

.tree.horizontal li:only-child:before {
    content: none;
}

.tree.horizontal li ul:after {
    left: 0;
}

.tree.horizontal>li:only-child {
    margin-left: 0;
}

.tree.horizontal>li:only-child:before,
.tree.horizontal>li:only-child:after {
    content: none;
}

.tree.vertical {
    display: flex;
}

.tree.vertical ul {
    display: flex;
    justify-content: center;
}

.tree.vertical li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tree.vertical li .node {
    margin: 12px 6px;
}

.tree.vertical li:before {
    border-left: 2px solid #010101;
    height: 12px;
    width: 0;
    top: 0;
}

.tree.vertical li:after {
    border-top: 2px solid #010101;
    height: 0;
    width: 100%;
}

.tree.vertical li:first-child:after {
    border-top: 2px solid #010101;
    height: 0;
    width: 50%;
    left: 50%;
}

.tree.vertical li:last-child:after {
    border-top: 2px solid #010101;
    height: 0;
    width: 50%;
    right: 50%;
}

.tree.vertical .joint:first-child:after {
    border-top: 2px solid #010101;
    height: 0;
    width: 150%;
    left: -50%;
}

.tree.vertical li:only-child:after {
    content: none;
}

.tree.vertical li ul:before {
    border-left: 2px solid #010101;
    height: 12px;
    width: 0;
    top: -12px;
}

.tree.vertical>li:only-child:before,
.tree.vertical>li:only-child:after {
    content: none;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li,
.tree.vertical.cascade-3>li>ul>li>ul>li,
.tree.vertical.cascade-2>li>ul>li,
.tree.vertical.cascade-1>li,
.tree.vertical .cascade {
    flex-direction: column;
    align-items: start;
    padding: 0 12px;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li:before,
.tree.vertical.cascade-3>li>ul>li>ul>li:before,
.tree.vertical.cascade-2>li>ul>li:before,
.tree.vertical.cascade-1>li>before,
.tree.vertical .cascade:before {
    left: 24px;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li:after,
.tree.vertical.cascade-3>li>ul>li>ul>li:after,
.tree.vertical.cascade-2>li>ul>li:after,
.tree.vertical.cascade-1>li>after,
.tree.vertical .cascade:after {
    left: 0;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li:first-child:after,
.tree.vertical.cascade-3>li>ul>li>ul>li:first-child:after,
.tree.vertical.cascade-2>li>ul>li:first-child:after,
.tree.vertical.cascade-1>li:first-child:after,
.tree.vertical .cascade:first-child:after {
    left: 24px;
    width: 100%;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li:last-child:after,
.tree.vertical.cascade-3>li>ul>li>ul>li:last-child:after,
.tree.vertical.cascade-2>li>ul>li:last-child:after,
.tree.vertical.cascade-1>li:last-child:after,
.tree.vertical .cascade:last-child:after {
    left: 0;
    width: 24px;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li ul,
.tree.vertical.cascade-3>li>ul>li>ul>li ul,
.tree.vertical.cascade-2>li>ul>li ul,
.tree.vertical.cascade-1>li ul,
.tree.vertical .cascade ul,
.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li li,
.tree.vertical.cascade-3>li>ul>li>ul>li li,
.tree.vertical.cascade-2>li>ul>li li,
.tree.vertical.cascade-1>li li,
.tree.vertical .cascade li {
    display: block;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li ul:before,
.tree.vertical.cascade-3>li>ul>li>ul>li ul:before,
.tree.vertical.cascade-2>li>ul>li ul:before,
.tree.vertical.cascade-1>li ul:before,
.tree.vertical .cascade ul:before,
.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li ul:after,
.tree.vertical.cascade-3>li>ul>li>ul>li ul:after,
.tree.vertical.cascade-2>li>ul>li ul:after,
.tree.vertical.cascade-1>li ul:after,
.tree.vertical .cascade ul:after,
.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li li:before,
.tree.vertical.cascade-3>li>ul>li>ul>li li:before,
.tree.vertical.cascade-2>li>ul>li li:before,
.tree.vertical.cascade-1>li li:before,
.tree.vertical .cascade li:before,
.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li li:after,
.tree.vertical.cascade-3>li>ul>li>ul>li li:after,
.tree.vertical.cascade-2>li>ul>li li:after,
.tree.vertical.cascade-1>li li:after,
.tree.vertical .cascade li:after {
    border: none;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li .node,
.tree.vertical.cascade-3>li>ul>li>ul>li .node,
.tree.vertical.cascade-2>li>ul>li .node,
.tree.vertical.cascade-1>li .node,
.tree.vertical .cascade .node {
    margin: 0;
    margin-top: 12px;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li li,
.tree.vertical.cascade-3>li>ul>li>ul>li li,
.tree.vertical.cascade-2>li>ul>li li,
.tree.vertical.cascade-1>li li,
.tree.vertical .cascade li {
    margin-left: 24px;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li li:before,
.tree.vertical.cascade-3>li>ul>li>ul>li li:before,
.tree.vertical.cascade-2>li>ul>li li:before,
.tree.vertical.cascade-1>li li:before,
.tree.vertical .cascade li:before {
    border-left: 2px solid #010101;
    height: 100%;
    width: 0;
    top: 0;
    left: -12px;
}

.tree.vertical.cascade-4>li>ul>li>ul>li>ul>li li:after,
.tree.vertical.cascade-3>li>ul>li>ul>li li:after,
.tree.vertical.cascade-2>li>ul>li>ul>li li:after,
.tree.vertical.cascade-1>li>ul>li>li:after {
    border-top: 2px solid #010101;
    width: 12px;
    height: 0;
    left: -12px;
    top: 24px;
}

.ew-team-section {
    border: 1px solid #fcbf098a;
    padding: 15px;
    background-color: #fff;
    position: relative;
    z-index: 99;
}

.ew-img {
    margin-bottom: 10px;
}

.ew-team-section img {
    height: 100%;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.title-ewt {
    font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.ewt-content.text-center a {
  color: #2b088b;
}
.ewt-content.text-center p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

/* Engineering Wing Tree Team css End */

.table.table-striped.table-bordered.text-nowrap.bg123.dataTable.no-footer {
    border: 1px solid #ccc !important;
}

.bg123 tbody tr td {
    color: #000;
}

.bg123 thead tr th {
    color: #333;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 15px;
}

.bg_blue tr th {
    color: #333 !important;
}

.table-bordered>thead>tr>th {
    border: 1px solid #ddd;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(221, 221, 221);
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
    border-bottom-width: 2px;
}

.table.table-striped.table-bordered.text-nowrap.bg123.dataTable.no-footer tbody tr td {
    font-size: 15px;
}

.card.new_card {
    border-radius: 3px;
    box-shadow: -1px 4px 14px rgba(0, 0, 0, 0.26);
}


/* Engineer Profiles css Start   */
/* Profile container */
.profile-container {
    margin: 20px 0;
}

/* Profile sidebar */
.profile-sidebar {
    border-radius: 5px;
    padding: 20px 0 10px 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.profile-userpic img {
    width: 150px;
    display: block;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;

}

.profile-usertitle {
    text-align: center;
    margin-top: 20px;
}

.profile-usertitle-name {
    color: #5a7391;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 7px;
}

.profile-usertitle-job {
    text-transform: uppercase;
    color: #5b9bd1;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Profile Content */
.profile-content {
    border-radius: 5px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.profile-details ul li {
    list-style: none;
}

.profile-details h5 {
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.235;
    color: #11142d;
    font-size: 1.125rem;
    color: #530986;
}

.profile-details p {
    font-size: clamp(0.9rem, 0.8750rem + 0.1250vw, 1rem);
    padding-left: 20px;
}

.education-list li {
    margin-bottom: 5px;
    font-size: clamp(0.9rem, 0.8750rem + 0.1250vw, 1rem);
    line-height: 1.4;
}

.emails-text h6 {
    font-size: .875rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.235;
    color: #11142d;
}

.uppercase {
    text-transform: uppercase !important;
}

.profile-content .progress {
    display: flex;
    height: 5px;
    overflow: hidden;
    font-size: .70313rem;
    background-color: #ecf0f2;
    border-radius: 4px;
    box-shadow: none;
}

.profile-content .projects {
    font-size: 1rem;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.235;
    color: #11142d;
}

.profile-box {
    padding-left: 15px;
    padding-right: 15px;
}

.profile-content .nav-tabs {
    background-color: #f8f9fa;
}

.profile-content .nav-link {
    color: #5a7391;
    background-color: #fff;
    border: 1px solid #ddd;
}

.profile-content .nav-link:hover {
    color: #fff;
    background-color: #5a7391;
    border-color: #5a7391;
}

.profile-content .nav-link.active {
    color: #fff;
    background-color: #530986;
    border-color: #530986;
}

/* Engineer Profiles css Start   */

/* Training Branch CSS Start */
.tb-timeline {
    padding-top: 30px;
}

ul.timeline {
    position: relative;
    list-style-type: none;
    padding-left: 180px;
}

ul.timeline:before {
    position: absolute;
    display: block;
    left: 136px;
    width: 8px;
    height: 100%;
    border-radius: 4px;
    background-color: #07b;
    content: ' ';
}

ul.timeline .event {
    position: relative;
    padding: 16px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
    padding: 16px;
    margin-bottom: 30px;
}

ul.timeline .event:before {
    display: block;
    position: absolute;
    top: 30px;
    left: -55px;
    width: 30px;
    height: 30px;
    border: 6px solid #07b;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 0 4px -1px rgba(0, 0, 0, 0.6);
    content: ' ';
}

ul.timeline h4 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

ul.timeline .time {
    position: absolute;
    display: block;
    width: 120px;
    top: 35px;
    left: -179px;
    font-size: 0.9em;
    text-align: right;
    font-weight: 600;
    text-transform: uppercase;
}

ul.timeline .time>.glyphicon-time {
    top: 2px;
}

ul.timeline .left-arrow:before {
    position: absolute;
    top: 30px;
    left: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-right: 15px solid #ddd;
    border-left: 0 solid #ddd;
    border-bottom: 15px solid transparent;
    content: ' ';
}

ul.timeline .left-arrow:after {
    position: absolute;
    top: 30px;
    left: -14px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-right: 15px solid #fff;
    border-left: 0 solid #fff;
    border-bottom: 15px solid transparent;
    content: ' ';
}

/* tree csss start */
.training-team-tree {
    display: flex;
    flex-wrap: wrap;
    font-family: Arial;
    justify-content: center;
    margin-top: 30px;
}

.tb-tree {
    padding: 0;
}

.tb-tree:not(:empty):before,
.tb-tree:not(:empty):after,
.tb-tree ul:not(:empty):before,
.tb-tree ul:not(:empty):after,
.tb-tree li:not(:empty):before,
.tb-tree li:not(:empty):after {
    display: block;
    position: absolute;
    content: "";
}

.tb-tree ul,
.tb-tree li {
    position: relative;
    margin: 0;
    padding: 0;
}

.tb-tree li {
    list-style: none;
}

.tb-tree li>.tb-node {
    background-color: #eee;
    color: #222;
    padding: 5px;
    display: inline-block;
    /* height: 200px;
    width: 200px; */
}

.tb-tree.cascade li {
    margin-left: 24px;
}

.tb-tree.cascade li .tb-node {
    margin-top: 12px;
}

.tb-tree.cascade li:before {
    border-left: 2px solid #010101;
    height: 100%;
    width: 0;
    top: 0;
    left: -12px;
}

.tb-tree.cascade li:after {
    border-top: 1px solid #010101;
    width: 12px;
    left: -12px;
    top: 24px;
}

.tb-tree.cascade li:last-child:before {
    height: 24px;
    top: 0;
}

.tb-tree.cascade>li:first-child:before {
    top: 24px;
}

.tb-tree.cascade>li:only-child {
    margin-left: 0;
}

.tb-tree.cascade>li:only-child:before,
.tb-tree.cascade>li:only-child:after {
    content: none;
}

.tb-tree.horizontal li {
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.tb-tree.horizontal li .tb-node {
    margin: 6px 0;
}

.tb-tree.horizontal li:before {
    border-left: 2px solid #010101;
    height: 100%;
    width: 0;
    top: 0;
    left: -12px;
}

.tb-tree.horizontal li:first-child:before {
    height: 50%;
    top: 50%;
}

.tb-tree.horizontal li:last-child:before {
    height: 50%;
    bottom: 50%;
    top: auto;
}

.tb-tree.horizontal li:after,
.tb-tree.horizontal li ul:after {
    border-top: 1px solid #010101;
    height: 0;
    width: 12px;
    top: 50%;
    left: -12px;
}

.tb-tree.horizontal li:only-child:before {
    content: none;
}

.tb-tree.horizontal li ul:after {
    left: 0;
}

.tb-tree.horizontal>li:only-child {
    margin-left: 0;
}

.tb-tree.horizontal>li:only-child:before,
.tb-tree.horizontal>li:only-child:after {
    content: none;
}

.tb-tree.tb-vertical {
    display: flex;
}

.tb-tree.tb-vertical ul {
    display: flex;
    justify-content: center;
}

.tb-tree.tb-vertical li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tb-tree.tb-vertical li .tb-node {
    margin: 12px 6px;
}

.tb-tree.tb-vertical li:before {
    border-left: 2px solid #010101;
    height: 12px;
    width: 0;
    top: 0;
}

.tb-tree.tb-vertical li:after {
    border-top: 1px solid #010101;
    height: 0;
    width: 100%;
}

.tb-tree.tb-vertical li:first-child:after {
    border-top: 1px solid #010101;
    height: 0;
    width: 50%;
    left: 50%;
}

.tb-tree.tb-vertical .tb-joint:first-child:after {
    border-top: 1px solid #010101;
    height: 0;
    width: 156%;
    left: -56%;
}

.tb-tree.tb-vertical li:last-child:after {
    border-top: 1px solid #010101;
    height: 0;
    width: 50%;
    right: 50%;
}

.tb-tree.tb-vertical li:only-child:after {
    content: none;
}

.tb-tree.tb-vertical li ul:before {
    border-left: 2px solid #010101;
    height: 12px;
    width: 0;
    top: -12px;
}

.tb-tree.tb-vertical>li:only-child:before,
.tb-tree.tb-vertical>li:only-child:after {
    content: none;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li,
.tb-tree.tb-vertical.cascade-2>li>ul>li,
.tb-tree.tb-vertical.cascade-1>li,
.tb-tree.tb-vertical .cascade {
    flex-direction: column;
    align-items: start;
    padding: 0 12px;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li:before,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li:before,
.tb-tree.tb-vertical.cascade-2>li>ul>li:before,
.tb-tree.tb-vertical.cascade-1>li>before,
.tb-tree.tb-vertical .cascade:before {
    left: 24px;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li:after,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li:after,
.tb-tree.tb-vertical.cascade-2>li>ul>li:after,
.tb-tree.tb-vertical.cascade-1>li>after,
.tb-tree.tb-vertical .cascade:after {
    left: 0;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li:first-child:after,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li:first-child:after,
.tb-tree.tb-vertical.cascade-2>li>ul>li:first-child:after,
.tb-tree.tb-vertical.cascade-1>li:first-child:after,
.tb-tree.tb-vertical .cascade:first-child:after {
    left: 24px;
    width: 100%;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li:last-child:after,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li:last-child:after,
.tb-tree.tb-vertical.cascade-2>li>ul>li:last-child:after,
.tb-tree.tb-vertical.cascade-1>li:last-child:after,
.tb-tree.tb-vertical .cascade:last-child:after {
    left: 0;
    width: 24px;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li ul,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li ul,
.tb-tree.tb-vertical.cascade-2>li>ul>li ul,
.tb-tree.tb-vertical.cascade-1>li ul,
.tb-tree.tb-vertical .cascade ul,
.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li li,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li li,
.tb-tree.tb-vertical.cascade-2>li>ul>li li,
.tb-tree.tb-vertical.cascade-1>li li,
.tb-tree.tb-vertical .cascade li {
    display: block;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li ul:before,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li ul:before,
.tb-tree.tb-vertical.cascade-2>li>ul>li ul:before,
.tb-tree.tb-vertical.cascade-1>li ul:before,
.tb-tree.tb-vertical .cascade ul:before,
.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li ul:after,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li ul:after,
.tb-tree.tb-vertical.cascade-2>li>ul>li ul:after,
.tb-tree.tb-vertical.cascade-1>li ul:after,
.tb-tree.tb-vertical .cascade ul:after,
.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li li:before,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li li:before,
.tb-tree.tb-vertical.cascade-2>li>ul>li li:before,
.tb-tree.tb-vertical.cascade-1>li li:before,
.tb-tree.tb-vertical .cascade li:before,
.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li li:after,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li li:after,
.tb-tree.tb-vertical.cascade-2>li>ul>li li:after,
.tb-tree.tb-vertical.cascade-1>li li:after,
.tb-tree.tb-vertical .cascade li:after {
    border: none;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li .tb-node,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li .tb-node,
.tb-tree.tb-vertical.cascade-2>li>ul>li .tb-node,
.tb-tree.tb-vertical.cascade-1>li .tb-node,
.tb-tree.tb-vertical .cascade .tb-node {
    margin: 0;
    margin-top: 12px;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li li,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li li,
.tb-tree.tb-vertical.cascade-2>li>ul>li li,
.tb-tree.tb-vertical.cascade-1>li li,
.tb-tree.tb-vertical .cascade li {
    margin-left: 24px;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li li:before,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li li:before,
.tb-tree.tb-vertical.cascade-2>li>ul>li li:before,
.tb-tree.tb-vertical.cascade-1>li li:before,
.tb-tree.tb-vertical .cascade li:before {
    border-left: 2px solid #010101;
    height: 100%;
    width: 0;
    top: 0;
    left: -12px;
}

.tb-tree.tb-vertical.cascade-4>li>ul>li>ul>li>ul>li li:after,
.tb-tree.tb-vertical.cascade-3>li>ul>li>ul>li li:after,
.tb-tree.tb-vertical.cascade-2>li>ul>li>ul>li li:after,
.tb-tree.tb-vertical.cascade-1>li>ul>li>li:after {
    border-top: 1px solid #010101;
    width: 12px;
    height: 0;
    left: -12px;
    top: 24px;
}

.tb-team-section {
    border: 1px solid #fcbf098a;
    padding: 15px;
    background-color: #fff;
    position: relative;
    z-index: 99;
}

.tb-img {
    margin-bottom: 10px;
    height: 180px;
}

.tb-team-section img {
    height: 100%;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.title-tb {
    font-size: 16px;
    font-weight: 800;
    color: #010101;
}

.tb-content.text-center p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

/* tree css end  */
.list-inline.sm-text-center.mt-5 li:first-child {
  border-right: 1px solid #c2c0c1;
}
@media screen and (min-width: 1215px) and (max-width: 1442px) {
  .text-white.pre_list {
  display: block;
  /* font-size: 10px;
  font-weight: 600; */
  padding: 0 5px;
  line-height: 42px;
  color: #000;
  margin: 0;
}
.loginlinks {
  border-right: 1px solid #ddd;
  /* float: left; */
  line-height: 42px;
  padding: 0 7px;
  color: rgb(27, 27, 27);
  /* font-size: 12px;
  font-weight: 600; */
}
}
.breadcrumb-bg.breadcrumb.newpt li:not(:last-child)::after {
content: "";
  margin: 0 8px;
  color: #666666;
  font-size: 20px;
  display: none;
}
/* Training Branch CSS End */
.news-content {
  /* text-align: justify;
  margin-left: 15px;
  margin-right: 15px;*/
  padding-top: 6px; 
  font-size: 15px;
}
.news-content a {
  color: #337ab7;
}
.carousel-caption.news1 {
  bottom: 7.25rem;
}
.carousel-caption.news1 h3 {
  color: #fff;
}
.pt_12 {
  margin-top: 0px;
}
.news-content i {
  color: black;
  padding-right: 6px;
  font-size: 16px;
}

@keyframes blinkero{ 
   0%{color:#ef6d1a;}
  20%{color:#ef6d1a;}
  50%{color:white;}
  70%{color:#ef6d1a;}
  100%{color:#ef6d1a;}
}
.news-content i::before {
  text-decoration: blink;
  -webkit-animation-name: blinkero;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
}
.carousel-inner.current-news {
  height: 181px !important;
}
.namestyle h5 {
  font-size: 15px;
}
.namestyle h5 {
  font-size: 16px;
}
.header.text th {
  font-size: 14px;
}

.table.table-bordered.table-striped tbody tr td {
  vertical-align: middle;
  color: #000;
}
.table.table-bordered.table-striped tbody tr td a:hover {
  color: blue;
}
.official_contact {
  background-color: #F5F5F5;
  padding: 21px;
  border: 1px solid #33333329;
  border-radius: 0.75rem;
}
.breadcrumb__list {
  display: flex;
  margin: 0 -10px;
  padding: 0px;
}
.pdf-download-link:hover {
  color: #9e6b22;
}
table a:hover {
  text-decoration: underline;
}
.pdf-download-link {
  color: #0042bf;
  font-size: 15px;
}
.pdf-download-link span i {
  vertical-align: middle;
  color: red;
}
.pdf-download {
  color: #333;
  vertical-align: middle;
  transition: 0.2s ease-in;
  font-size: 14px !important;
  margin-left: 5px;
}

.acts-org {
  font-size: 20px;
  font-weight: 500;
  color: #fff !important;
  background: #333;
  padding-left: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
.table.table-bordered.thlight thead tr th {
  background-color: #002a5c;
  color: #fff;
  font-size: 14px;
}
form label {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 15px;
}
.sr-width {
  width: 76px !important;
}
.down-width {
  width: 186px !important;
}
.archive-text a {
  color: #2447ad;
  font-weight: bolder;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 24px;
  text-decoration: underline;
}
.table.table-bordered.thlight.table-striped tr td {
  font-size: 15px;
}
.issue-date.sorting {
  width: 94px !important;
}
#zero_config_filter label input {
  border: 1px solid #333333ad;
}
.page-header.rr::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0,0,0,0.4);*/
}
.our-service-title.officers h2 {
  font-size: 17px;
  font-weight: 600;
}
.carousel-caption.breadtext {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.carousel-caption.breadtext {
  position: absolute;
  bottom: 15.25rem;
  left: 5%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  right: 0 !important;
  text-align: unset !important;
}
.carousel-caption.breadtext h2 {
  position: relative;
  z-index: 2;
  font-size: 35px;
  font-weight: 700;
  color: var(--white-color);
}
/* Engineers at MMD's with Their Responsibilities Tree CSS start */
.EMMD:not(:empty):before,
        .EMMD:not(:empty):after,
        .EMMD-main-box ul:not(:empty):before,
        .EMMD-main-box ul:not(:empty):after,
        .EMMD-main-box li:not(:empty):before,
        .EMMD-main-box li:not(:empty):after {
            display: block;
            position: absolute;
            content: "";
        }

        .EMMD-main-box ul,
        .EMMD-main-box li {
            position: relative;
            margin: 0;
            padding: 0;
        }

        .EMMD-main-box li {
            list-style: none;
        }

        .EMMD-main-box li .EMMD-internal,
        .EMMD-main {
            background-color: #eee;
            color: #222;
            display: inline-block;
        }

        .EMMD.horizontal-EMMD li {
            display: flex;
            align-items: center;
            margin-left: 60px;
        }

        .EMMD.horizontal-EMMD li div.EMMD-internal {
            margin: 12px 0;
        }

        .EMMD.horizontal-EMMD li:before {
            border-left: 1px solid #010101;
            height: 100%;
            width: 0;
            top: 0;
            left: -12px;
        }

        .EMMD.horizontal-EMMD li:first-child:before {
            height: 50%;
            top: 50%;
        }

        .EMMD.horizontal-EMMD li:last-child:before {
            height: 50%;
            bottom: 50%;
            top: auto;
        }

        .EMMD.horizontal-EMMD li:after,
        .EMMD.horizontal-EMMD ul:after {
            border-top: 1px solid #010101;
            height: 0;
            width: 48px;
            top: 50%;
            left: -12px;
        }

        .EMMD.horizontal-EMMD li:only-child:before {
            content: none;
        }

        .EMMD.horizontal-EMMD ul:after {
            left: 0;
        }

        /* mycss  */
        .ew-team-EMMD {
            border: 1px solid #444;
            background-color: #fff;
            position: relative;
            z-index: 99;
        }

        .ew-img-EMMD {
            margin-bottom: 10px;
        }

        .officer-list {
            border: 1px solid #4f0599;
            background-color: #4f0599;
            padding: 5px 15px 5px 15px;
            text-align: center;
            color: #fff;
            border-radius: 10px;
            text-decoration: none;
        }

        .officer-list:hover {
            border: 1px solid #4f0599;
            background-color: #ffffff;
            color: #4f0599;
        }

        .main-box {
            border-bottom: 1px solid black;
            padding: 10px;
        }
.card.borders {
  border-radius: 20px;
}

.title-profile {
  font-size: 1.125rem;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.235;
  color: #11142d;
}
.card-subtitle {
  margin-bottom: 10px;
  font-weight: 400;
  color: #777e89;
}
.card-subtitle {
  margin-top: -.25rem;
  margin-bottom: 0;
}
.text-muted {
  color: #777e89 !important;
}

.nav-pills .nav-item .nav-link {
  color: #11142d;
  padding: 10px 18px;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.5;
}
.nav-pills .nav-item .nav-link.active {
  color: #fff;
}
.b-r strong {
  font-weight: 500;
  line-height: 1.5;
}
.font-weight-medium {
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: .5rem;
  line-height: 1.235;
  color: #11142d;
}

.profile-details.ptleft p {
  padding-left: 0px;
}
.education-list {
  margin: 0;
  padding-left: 4px;
  list-style: none;
}
.education-list li {
  margin-bottom: 5px;
  font-size: clamp(0.9rem, 0.8750rem + 0.1250vw, 1rem);
  line-height: 1.4;
}
.education-list li i {
  font-size: 13px;
  padding-right: 3px;
  position: relative;
  top: -1px;
}
.nav-link.profiles:hover {
  color: #333 !important;
}

.projects {
  font-size: 1rem;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.235;
  color: #11142d;
}
.progress {
  display: flex;
  height: 5px;
  overflow: hidden;
  font-size: .70313rem;
  background-color: #ecf0f2;
  border-radius: 4px;
  box-shadow: none;
}
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #1e4db7;
  transition: width .6s ease;
}
.sr-only {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.mt-4.projects .pull-right {
  color: #333;
}
.btn-circle {
  border-radius: 100%;
  width: 35px;
  height: 35px;
  padding: 5px;
  line-height: 30px;
}
.profile-details h5 {
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.235;
  color: #11142d;
  font-size: 1.125rem;
  color: #530986;
}
.education-list {
  margin: 0;
  padding-left: 4px;
  list-style: none;
}
.education-list li {
  margin-bottom: 5px;
  font-size: clamp(0.9rem, 0.8750rem + 0.1250vw, 1rem);
  line-height: 1.4;
}
.education-list li i {
  font-size: 13px;
  padding-right: 3px;
  position: relative;
  top: -1px;
}
.bgvideo {
  background-color: #eee9e9;
  padding: 6px;
}
.video-caption {
  background-color: #fff;
  padding: 6px 10px;
  border: 1px solid #3333333b;
}
.video-caption ul {
  padding-left: 10px;
  margin: 0;
}
.video-caption ul li {
  margin-bottom: 2px;
}
.table.table-bordered.tblight thead tr th {
  background-color: #82EEFD;
  color: #333;
  font-size: 14px;
}
.breadcrumb-headers h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 9px;
}
.video-caption {
  background-color: #fff;
  padding: 6px 10px;
  border: 1px solid #3333333b;
}
.video-caption ul {
  padding-left: 10px;
  margin: 0;
}
.video-caption ul li {
  margin-bottom: 2px;
}


.accordion-header.btr-accordion {
  border: 1px solid #3333;
}
.accordion-body.btr-body {
  border: 1px solid #3333;
}
.dataTables_filter input {
  border: 1px solid #333333ad;
}
.accordion-button.collapsed.archive-text {
  font-weight: 600;
  color: #2447ad;
}
.zero_config.table.table-bordered.thlight.table-striped.bg123.table-hover.dataTable.no-footer th.sorting {
  padding-right: 0px;
}
.zero_config.table.table-bordered.thlight.table-striped.bg123.table-hover.dataTable.no-footer thead > tr > th.sorting_asc {
  padding-right: 0px;
}
.zero_config.table.table-bordered.thlight.table-striped.bg123.table-hover.dataTable.no-footer.table-operating thead tr th {
  width: auto !important;
}

.zero_config.table.table-bordered.thlight.table-striped.bg123.table-hover.dataTable.no-footer.table-operating thead tr .sr-width {
  width: 76px !important;
}
.zero_config.table.table-bordered.thlight.table-striped.bg123.table-hover.dataTable.no-footer.table-operating thead tr .down-width {
  width: 186px !important;
}
.mto-list {
  margin: 0;
  padding-left: 14px;
}
.mto-list li {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.6em;
}
.latest-newsinheader li {
  display: block;
  margin-bottom: 11px;
}
.latest-newsinheader {
  list-style: none;
  margin: 0;
  padding: 0;
}
.latest-newsinheader li a {
  font-weight: 600;
  font-size: 16px;
}
.latest-newsinheader li a:hover {
  color: #1717a9;
}
.latest-newsinheader li:last-child a {
  animation: blink 1s infinite;
}
@keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0; }
            100% { opacity: 1; }
        }

 .team-body {
  border: 1px solid #fcbf098a;
  padding: 15px;
  background-color: #fff;
  position: relative;
  z-index: 99;
  min-height: 314px;
}
.team-member {
  background-color: #eee;
  color: #222;
  padding: 5px;
  text-align: center;
}
.box-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.box-content {
  margin-top: 12px;
}
.box-content p a {
  font-size: 14px;
  font-weight: 400;
  color: #2b088b;
  text-decoration: none;
}
.box-content p {
  line-height: 0px;
}
.training-start {
  padding-left: 30px;
}
.pt6 {
  padding-right: 0px;
  padding-left: 10px;
}
.team-body img {
  background-color: #f6f6f6;
  padding: 6px;
}
.title-pb {
  font-size: 13px;
  font-weight: 800;
  color: #010101;
}
.pb-content.text-center p {
  font-size: 12px;
  font-weight: 400;
  color: #333;
}
.carousel-caption h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 600;
}
.carousel-caption h3 {
            opacity: 0;
            transform: translateY(-50px);
            transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
        }

        /* Subtitle (Sub Text) Animation */
        .carousel-caption p {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
            font-size: 17px;
        }

        /* Activate Animations When Slide Becomes Active */
        .carousel-item.active .carousel-caption h3 {
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-item.active .carousel-caption p {
            opacity: 1;
            transform: translateY(0);
        }
/* Gallery Image Hover Effect */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .gallery-item img {
            width: 100%;
            transition: transform 0.3s ease-in-out;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.gallery-text {
  font-size: 25px;
}
.celebration-text {
  font-size: 24px;
  font-weight: 500;
}
.news-content li {
  margin-bottom: 12px;
  border-bottom: 1px solid #3333334d;
  padding-bottom: 4px;
}
.news-stop {
  background-color: #923F07;
  border: 1px solid #923F07;
  color: #fff;
  padding: 4px 7px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.news-content li a {
 line-height: 21px;
  color: #333;
  transition: 0.4s all linear;
}
.news-content li a:hover {
  color: #256bb2;
}

 .gallery-media {
            columns: 3;
            column-gap: 1.5rem;
            width: 100%;
        }

        @media (max-width: 768px) {
            .gallery-media {
                columns: 2;
            }
        }

        @media (max-width: 480px) {
            .gallery-media {
                columns: 1;
            }
        }

        .gallery-media-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease forwards;
            animation-delay: calc(var(--delay) * 0.2s);
        }

        .gallery-media-item:hover .overlay-title {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-media-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-media-item:hover img {
            transform: scale(1.05);
        }

        .overlay-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(37, 107, 178, 0.67), transparent);
            padding: 2rem 1.5rem;
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .overlay-title h2 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .overlay-title p {
            font-size: 0.9rem;
            line-height: 1.4;
            opacity: 0.9;
        }

        .photo-credit {
            position: absolute;
            bottom: 10px;
            right: 10px;
            color: white;
            font-size: 0.8rem;
            opacity: 0.8;
            text-decoration: none;
        }

        .photo-credit:hover {
            opacity: 1;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: #00A89D;
            z-index: 1000;
            transition: width 0.3s ease;
        }
        .overlay-title h2 {
  color: #fff;
  font-size: 19px;
}
.view-gallery a {
  color: blue;
  font-size: 17px;
  font-weight: bold;
}
.old_news {
  border: 1px solid #33333340;
  padding-bottom: 11px;
  transition: transform .8s;
  padding: 15px;
  box-shadow: 0 0 24px -15px #030380ab;
}
.pb45 {
  padding: 12px;
    padding-top: 12px;
  padding-top: 12px;
  padding-top: 12px;
}
.pt-20 {
  padding-top: 20px !important;
}
.desc.mb-11 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
}
.mb-11 {
  margin-bottom: 21px !important;
}
.adipisicing_button {
  font-size: 14px;
  padding: 7px 9px;
  border-radius: 4px;
  background: #fff;
  color: #256BB2;
  text-transform: capitalize;
  font-weight: 400;
  transition: 0.4s all linear;
  border: 1px solid #256BB2;
}
.adipisicing_button:hover {
  background: #256BB2;
  color: #fff;
}
.old_news:hover {
  transform: scale(1.02);
  box-shadow: 0px 16px 16px 0px #848c90 !important;
}
.image-box-details h5 {
  font-size: 15px;
  padding-bottom: 2px;
}
.image-box-details p {
  padding-bottom: 24px;
}
.news-content li:last-child {
  border-bottom: none;
}

.fc .fc-toolbar-title {
  font-size: 18px;
  margin: 0px;
  font-weight: 500;
}

.scrolling-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.scrolling-text ul li span i {
  color: #ffa905;
  font-size: 21px;
  line-height: 1rem;
  border-radius: 100%;
}
.scrolling-text ul li a {
  font-size: 16px;
  color: #333;
  display: block;
  padding: 0.5rem 0.5rem;
  text-align: left;
}
.scrolling-text ul li {
  background-color: #eff7ff;
  margin-bottom: 0.5rem;
  color: #414141;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.scrolling-text:hover {
  animation-play-state: paused;
}

.sdb-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
.sdb-table th, .sdb-table td {
    border: 1px solid #000;
    padding: 8px;
}
.main-th {
    background-color: #ffeb99;
}
.overseas-header {
    background-color: #f4cccc;
}
.coastal-header {
    background-color: #c9daf8;
}
.highlight {
    background-color: #ffffcc;
}
.total-row {
    font-weight: bold;
    background-color: #e6f9e6;
}

/* Shipping Development Team tree  */
.sdb-tree {
    margin: 18px;
    padding: 0;
}

.sdb-tree:not(:empty):before,
.sdb-tree:not(:empty):after,
.sdb-tree ul:not(:empty):before,
.sdb-tree ul:not(:empty):after,
.sdb-tree li:not(:empty):before,
.sdb-tree li:not(:empty):after {
    display: block;
    position: absolute;
    content: "";
}

.sdb-tree ul,
.sdb-tree li {
    position: relative;
    margin: 0;
    padding: 0;
    left: 50px;
}

.sdb-tree li {
    list-style: none;
}

.sdb-tree-node {
    background-color: #eee;
    color: #222;
    padding: 5px;
    display: inline-block;
}

.sdb-tree.sdb-cascade li {
    margin-left: 24px;
}

.sdb-tree.sdb-cascade li .sdb-tree-node {
    margin-top: 12px;
}

.sdb-tree.sdb-cascade li:before {
    border-left: 1px solid #010101;
    height: 100%;
    width: 0;
    top: 0;
    left: -12px;
}

.sdb-tree.sdb-cascade li:after {
    border-top: 1px solid #010101;
    width: 12px;
    left: -12px;
    top: 24px;
}

.sdb-tree.sdb-cascade li:last-child:before {
    height: 24px;
    top: 0;
}

.sdb-tree.sdb-cascade>li:first-child:before {
    top: 24px;
}

.sdb-tree.sdb-cascade>li:only-child {
    margin-left: 0;
}

.sdb-tree.sdb-cascade>li:only-child:before,
.sdb-tree.sdb-cascade>li:only-child:after {
    content: none;
}

.sdb-team-section {
    border: 1px solid #fcbf098a;
    padding: 15px;
    background-color: #fff;
    position: relative;
    z-index: 99;
}

.sdb-img {
    margin-bottom: 10px;
}

.sdb-team-section img {
    height: 100%;
    border-radius: 8px;
    border: 1px solid #010101;
}

.sdb-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.sdb-content.text-center a {
    color: #2b088b;
}
.scrolling-text ul li:hover {
  border-color: #0771b1;
}
.bgcolors{
 background-color: #3333335e;   
}
.scroll-text.afterdivider a {
  position: relative;
}
.scroll-text.afterdivider a::after {
  position: absolute;
  content: "";
  top: 4px;
  right: -7px;
  width: 1px;
  height: 17px;
  color: #fff;
  background-color: #000;
}
.accordion-body ul li {
  margin-bottom: 11px;
}
.title_news a:hover {
  color: #FB6818;
}
.title_news a:focus {
  color: #000;
}
.carousel-caption {
  position: absolute;
  right: 5%;
  bottom: 0.25rem;
  left: 5%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}
#contact_formdesign {
  background: #f4f6f9;
  padding: 30px 30px;
  border: 1px solid #d2cccc;
  border-radius: 4px;
  box-shadow: 0 0 22px -8px #dfdfdf;
  transition: transform .8s;
  background-clip: border-box;
}
.feedback_sec {
  background: #fff;
  padding: 60px 0px;
}
.form-control.feedback-form {
  border: 1px solid #33333347 !important;
  padding: 8px 12px;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #54667a;
  background-color: #fff;
  border-radius: 5px;
}
small {
  color: red;
}
.submitbtn {
  background-color: #256bb2;
  border: 1px solid #256bb2;
}
.result_sec {
  padding: 60px 0px;
}
.result-header {
  border: 1px solid #33333357;
}
.result-body ul {
  margin: 0;
  padding-left: 16px;
  color: blue;
  font-size: 16px;
}
.result-title h4 {
 background-color: #ef6d1a;
  color: #fff;
  padding: 5px 18px;
  font-size: 21px;
}
.result-body {
  padding: 7px 18px;
}
.result-body ul li {
  margin-bottom: 10px;
}
.result-body ul li a {
  color: #00E;
  text-decoration: none;
  font-size: 17px;
}
.result-body ul li a:hover {
  text-decoration: underline;
}
.exteral-img {
  padding: 6px 0px 0px 0px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center !important;
  margin-left: 8px;
  margin-right: 8px;
  border: 1px solid #33333312;
  min-height: 121px;
}
.external-sec{
  position: relative;
  background-color: #f7f7f7;
}


.slick-slide img{
    display: unset !important;
}
.exteral-img p {
  line-height: 19px;
  font-size: 14px;
  color: #333333a6;
  margin-top: 6px;
}



.form-loader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}




/* ===== End of common.css ===== */


/* ===== Start of news.css ===== */
.news-section {
    max-width: 100%;
    height: 300px;
    margin: 20px auto;
    overflow-y: auto;
    padding: 15px;
    /* background-color: #fff; */
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.Examination-section {
    max-width: 100%;
    height: 300px;
    margin: 20px auto;
    overflow-y: auto;
    padding: 15px;
    /* background-color: #0000003b; */
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.Examination-section::-webkit-scrollbar {
    width: 0px;
    /* Set the scrollbar width to 0 to hide it */
}

.news-item {
    /* margin-bottom: 15px; */
    /* padding: 10px; */
    /* background-color: #f9f9f9; */
    /* border: 1px solid #ddd; */
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.Examination-item {
    margin-bottom: 15px;
    padding: 10px;
    /* background-color: #f9f9f9; */
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.news-item a {
    display: inline-block;
    margin-top: 10px;
    color: #003440 !important;
    text-decoration: none;

}

.news-item a:hover {
    text-decoration: underline;
    color: #1c60a5 !important;
}

/* Custom scrollbar */
.news-section::-webkit-scrollbar {
    width: 10px;
}


.scrollable-menu ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.scrollable-menu li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #fff;
    /* border-bottom: 1px solid #eee; */
}

.scrollable-menu li:hover {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #FF7D44;
    /* border-bottom: 1px solid #eee; */
}

.scrollable-menu li:hover a {
    color: #FF7D44 !important;

}

.scrollable-menu li:last-child {
    border-bottom: none;
}

.scrollable-menu li .icon {
    margin-right: 10px;
}

.scrollable-menu li .icon::before {
    content: '\2192';
    /* Unicode for right arrow (Ã¢â€ â€™) */
    font-size: 18px;
    color: #DC5425;
    /* Icon color (same as your website theme) */
}

.Examination-link {
    max-width: 100%;
    height: 300px;
    margin: 20px auto;
    overflow-y: auto;
    padding: 15px;
    /* background-color: #0000003b; */
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.Examination-link::-webkit-scrollbar {
    width: 0px;
    /* Set the scrollbar width to 0 to hide it */
}

.scrollable-link ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.scrollable-link li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #fff;
}

.scrollable-link li:hover {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #FF7D44;
    /* border-bottom: 1px solid #eee; */
}

.scrollable-link li:hover a {
    color: #FF7D44 !important;

}

.scrollable-link li:last-child {
    border-bottom: none;
}

.scrollable-link li .icon {
    margin-right: 10px;
}

.scrollable-link li .icon::before {
    content: '\2192';
    font-size: 18px;
    color: #DC5425;
}


/* table css  */

#searchText {
    background-image: url('https://www.w3schools.com/css/searchicon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    width: 100%;
    font-size: 16px;
    padding: 12px 20px 12px 40px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
}




.field-mmd {
    height: auto;
    width: 235px;
}

.custom-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 100%;
}

.custom-box {
    /* Changed class name here */

    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 150px; */
    border-radius: 8px;
    font-size: 18px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .custom-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .custom-box {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .custom-container {
        grid-template-columns: 1fr;
    }

    .custom-box {
        font-size: 14px;
    }
}



.cargo-shipment-item:hover {
    background-color: #fff;
    color: black;
}

.image-gallery {
    display: grid;
    grid-template-columns: 25% 30% 25% 15%;
    gap: 15px;
    place-content: center;
    grid-template-rows: 50% 50%;
    height: 80vh;
    min-height: 460px;
    padding: max(2vh, 1.5rem);
}

@media screen and (max-width: 690px) {
    .image-gallery {
        height: 65vh;
    }
}

@media screen and (max-width: 470px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 35%);
    }
}

.card {
    border-radius: 8px;
    box-shadow: -2px 4px 15px rgb(0 0 0 / 26%);
    position: relative;
    /* Added to position overlay */
}

.card img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.card:nth-child(2) {
    grid-column: 2/3;
    grid-row: span 2;
}

.card:nth-child(3) {
    grid-column: span 2;
}

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

    .card:nth-child(2),
    .card:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .card:nth-child(6) {
        grid-column: 2/4;
        grid-row: 2/3;
    }
}

@media screen and (max-width: 470px) {
    .card:nth-child(5) {
        grid-column: span 2;
    }
}

.card p {
    font-size: clamp(0.9rem, 0.8750rem + 0.1250vw, 1rem);
    line-height: 1.4;
}

.card__img {
    position: relative;
    height: 100%;
}

.card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: clamp(0.938rem, 5vw, 1.563rem);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.57) 0%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 100%;
    border-radius: 25px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    opacity: 0;
    /* Start with hidden overlay */
    transition: opacity 0.3s ease;
    /* Smooth transition */
}

.card:hover .card__overlay {
    opacity: 1;
    /* Show overlay on hover */
}

.card__overlay span {
    position: absolute;
    top: 25px;
    left: min(2vmax, 1.563rem);
    color: #ff7b29;
    background: #fff;
    border-radius: 50px;
    padding: 2px 8px 2px 6px;
    display: flex;
    box-shadow: 0px 1px 20px #0000002b;
}

@media screen and (max-width: 690px) {
    .card__overlay span {
        top: 20px;
    }
}

@media screen and (max-width: 470px) {
    .card__overlay span {
        top: 15px;
    }
}


/* Social Media Css  */
.social-content {
    position: relative;
    display: block;
    background-color: #f7f7f7;
}

.social-frame {
    width: 88.5%;
    position: relative;
    height: 480px;
    /* background-color: #000000; */
    margin: 1.5rem auto;
    display: block;
    margin-bottom: 30px;
}

.social-frame::after,
.social-frame::before {
    position: absolute;
    content: "";
    background-color: #e4d107;
    bottom: -10px;
    width: 185px;
    height: 385px;
    right: -10px;
    display: block;
}

.content-frame {
    position: absolute;
    z-index: 9;
    width: 100%;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    background-color: #f5f5f5;
    overflow: hidden;
    border-radius: 1rem;
    border: 3px solid #f2f3fb;
}

.social-frame::after {
    background-color: #05315e;
    bottom: auto;
    top: -10px;
    left: -10px;
    right: auto;
    display: block;
}



.title.login_text {
    color: #333 !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    margin-bottom: 0px;
    margin-top: 0px;
}

.animate-charcter {
    text-transform: capitalize;
    background-image: linear-gradient(-225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 8s linear infinite;
    display: inline-block;
    font-size: 190px;
}




/* quick links css  */

.Minister-section {
    position: relative;
    background-position: center;
    background-color: #f7f7f7;
}

.quicklink-sec {
    position: relative;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(../assets/img/bg-branch.jpg);
}


.quicklink-sec:before {
    content: '';
    position: absolute;
    background: #0e171b;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.quicklink-sec .head-title {
    color: #fff;
}

.head-title {
    font-size: 1.75em;
    margin-bottom: 10px;
}

.about-text h4,
.head-title,
.year-bg .date,
.current-president-text h4 {
    font-family: 'robotobold';
}


.quick-link-sec ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    width: 100%;
    margin-top: 15px !important;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}

.quick-link-sec ul li {
    width: calc(25% - 1%);
    margin-bottom: 15px;
    background: #fff;
    margin-right: 1%;
    padding: 15px;
    height: 85px;
    position: relative;
    z-index: 9;
    border-radius: 15px;
    border-bottom: 6px solid;
}


/* Ensure icons are styled */
.quick-link-sec ul li a i {
    margin-right: 10px;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.quick-link-sec ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
    font-size: 16px;
}



.quick-link-sec ul li a:hover {
    color: #256bb2;
    font-weight: 600;
    /* text-decoration: underline; */
}




/* Responsive Styles */
@media (max-width: 1200px) {
    .quick-link-sec ul li {
        width: calc(33.33% - 1%);
    }
}

@media (max-width: 768px) {
    .quick-link-sec ul li {
        width: calc(50% - 1%);
    }
}

@media (max-width: 576px) {
    .quick-link-sec ul li {
        width: 100%;
        margin-right: 0;
        /* Remove right margin on small screens */
    }
}

.quick-link-sec ul li:nth-child(1) a:before {
    background-position: -5px -210px;
}

.wgl-services_media-wrap {
    border: 1 px solid black;
    height: 300px;
}

/* vision mission css  */


/* .vision_rbrd {
    border-right: 2px solid #f3f3f3;
    padding-right: 15px;
    text-align: justify;
} */



.minister-img {
    border: 2px solid #1c60a5;
    border-radius: 8px;
}

.quicklink-sec:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.dg-section {
    border: 1px solid #fcbf098a;
    padding: 15px;
    background-color: #fff;
    position: relative;
    z-index: 99;
}

.dg-img {
    margin-bottom: 10px;
}

.dg-section img {
    height: 100%;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.title-new {
    font-size: 15px;
    font-weight: 800;
    color: #010101;
}

.dg-content.text-center p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.profile-link {
    margin-top: 5px;
}

.profile-link a {
    color: #007bff;
    font-size: 15px;
}

.profile-link a i {
    font-size: 11px;
    padding-top: 8px;
}

.social-media {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
    position: relative;
    z-index: 6;
}

.social-media ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-media ul li {
    display: inline-block;
    border: 1px solid #e5e5e5;
    color: #3b5998;
    text-align: center;
    width: 32px;
    height: 32px;
    justify-content: center;
    font-size: 20px !important;
    align-items: center;
    margin: 0 3px;
    margin-bottom: 0px;
    text-decoration: none;
    color: #0a0a0a;
    border-radius: 2px;
    transition: .3s linear;
}

.social-media ul li:hover {
    background-color: #007bff;
    color: #fff;
}

/* .social-media ul li i:hover {
    color: #fff;
} */

.state-min {
    border: 1px solid #fcbf098a;
    padding: 21px;
    background-color: #fff;
    position: relative;
    z-index: 99;
    display: flex;
    margin-bottom: 10px;
}

.state-min.dd1 {
    border-top: 5px solid #8B70DB;
  border-radius: 20px;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  background-color: #fff;
  margin-bottom: 30px;
  position: relative;
    margin-bottom: 10px;
}

.side-new {
    margin-right: 89px;
    width: 80px;
    flex-shrink: 0;
}

.side-new img {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    max-width: 140px !important;
}

.state-title {
    padding-top: 15px;
}

.state-title h3 {
    font-size: 15px;
    font-weight: 800;
    color: #010101;
}

.state-title b {
    font-size: 14px;
}

.state-title p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.social-media ul li .fa-facebook {
    color: #3b5998;
}
.social-media ul li .fa-x-twitter {
    color: #010101;
}
.social-media ul li .fa-instagram {
    color: #d9317a;
}
.social-media ul li .fa-youtube {
    color: #FF0000;
}


/* external link item  */


/* Flexbox for logos section */
.customer-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.customer-logos a {
    text-decoration: none;
}

.client-logo {
    text-align: center;
    margin: 10px;
    padding: 10px;
    border-bottom: 6px solid #003B49;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 230px;
    height: 200px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Client logo image styling */
.client-logo img {
    width: 100%;
    height: auto;
    max-width: 120px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo-footer {
    margin-top: 10px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
}

.client-logo p {
    margin-top: 5px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Hover effect for logos */
.client-logo:hover {
    background: #f9f9f9;
}

.client-logo:hover img {
    transform: scale(1.1);
}

/* Add a cool pulse effect */
.client-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .customer-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .customer-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .customer-logos {
        grid-template-columns: 1fr;
    }
}


/* module css start  */
.our-modules {
    background-color: #fff;
}



.modules-boxes:hover {
    transform: scale(1.01);
}



/* Responsive design */
@media (max-width: 1024px) {
    .modules-boxes {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .modules-boxes {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modules-boxes {
        font-size: 14px;
    }
}


.item {
    padding-top: 20px;
}

.item .module-item {
    background-color: #fff;
    border-bottom: 6px solid #003B49;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    text-align: center;
    padding: 20px 8px; 
    min-height: 170px;
}

.item .modules-icon {
    margin-bottom: 8px;
    height: 65px;
    width: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.our-module-counter.text-center h5 a {
    font-size: 16px;
    font-weight: 500;
    color: #003B49;
}

/* .item .our-module-counter h3 {
    font-size: 50px;
    font-weight: 700;
    color: #003B49;
} */

.item .our-module-counter h3 span {
    color: inherit;
}

/* module css end  */

/* international website css  */
.international-website {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 100%;
}

.inter-box {
    display: flex;
    justify-content: flex-start;
    /* Align content to the left */
    align-items: flex-start;
    /* Align content to the top */
    border-radius: 8px;
    font-size: 18px;
    border: 2px solid black;
    position: relative;
}

.field-website {
    height: 186px;
    width: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribute space between content and footer */
}

.website-item {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    /* Make sure it fills the container */
    position: relative;
}

.our-goals-counter {
    text-align: center;
    flex-grow: 1;
}
.our-goals-counter h5 a {
    font-size: 17px;
    font-weight: 500;
  }

/* Footer section */
.field-website .read-more-footer {
    display: flex;
    justify-content: flex-end;
    /* Align the "Read More" button to the right */
    padding: 10px;
}

.field-website .read-more-footer a {
    color: #1c60a5;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
}

.field-website .read-more-footer a:hover {
    text-decoration: underline;
    color: #1c60a5;
}

/* Responsive design */
@media (max-width: 1024px) {
    .international-website {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inter-box {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .international-website {
        grid-template-columns: 1fr;
    }

    .inter-box {
        font-size: 14px;
    }
}



.subscribe {
    text-align: center;
    width: 500px;
}

.subscribe .input-group {
    margin-top: 20px;
    justify-content: center;
}

.subscribe .form-control {
    border-radius: 8px 0 0 8px;
}

.subscribe .btn {
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    background-color: rgb(218, 2, 2);
}

.subscribe .input-group .form-control,
.subscribe .input-group .btn {
    height: 40px;
}

input[type="email"]:focus {
    box-shadow: none;
    border-color: #007bff;
}


/* Youtube section css  */

.video-section {
    position: relative;
    padding: 80px 0 90px;
    overflow: hidden;
}

.video-section .overlay-2 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: auto;
    background-size: cover;
}

.overlay-2 {
    width: 860px;
    height: 621px;
    background-image: url(https://html.kodesolution.com/2023/transtex-html/images/icons/overlay-2.);
}


.video-section .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.video-section .bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0e171b;
    opacity: .7;
}

.video-section .outer-box .title-box {
    position: relative;
    padding-left: 35px;
    border-left: 12px solid #1c60a5;
}

.video-section .outer-box .title-box .title {
    color: #fff;
    font-size: 46px;
    line-height: 1.2em;
    margin-bottom: 0;
}

.video-section .outer-box .video-box {
    position: relative;
}

.video-section .outer-box .video-box .icon-box {
    position: absolute;
    top: 0;
    right: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.video-section .outer-box .video-box .icon-box .title {
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    margin-right: 15px;
}

.video-section .outer-box .video-box .icon-box img {
    position: relative;
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 3;
}

.icon-box img {
    position: relative;
    z-index: 3;
    width: 102px;
    height: 100%;
}

.video-section .outer-box .video-box .play-now-two {
    position: relative;
    display: inline-block;
    height: 113px;
    width: 113px;
    line-height: 113px;
    font-size: 20px;
    border-radius: 50%;
    color: red;
    background-color: #fff;
    text-align: center;
    animation: zoom-one 3s infinite linear, color-change 3s infinite linear;
}

@keyframes zoom-one {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes color-change {
    0% {
        background-color: #fff;
        color: red;
    }

    50% {
        background-color: #ff5733;
        /* change to some other color */
        color: white;
    }

    100% {
        background-color: #fff;
        color: red;
    }
}


.video-section .outer-box .video-box .play-now-two::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.video-section .outer-box .video-box .play-now-two:hover {
    background-color: #1c60a5;
    border-color: #1c60a5;
    color: #fff;
}


/* Top Bar css Start */
.bg-theme-colored_news {
    background-color: #f6f3ee !important;
    border-bottom: 1px solid #c2c0c1;
}

.no-border {
    border: none !important;
}

.m-0 {
    margin: 0px !important;
}



.widget.no-border ul li {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.text-white.pre_list {
    color: rgb(27, 27, 27) !important;
}

.text-white.pre_list {
    display: block;
  /* font-size: 11px;
  font-weight: 600; */
  padding: 0 5px;
  line-height: 42px;
  color: #000;
  margin: 0;
}


.list-inline.sm-text-center.mt-5 li {
    display: inline-block;
}

.widget.no-border ul li {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}


.header-top {
    padding: 1px 0;
}

.tophead_right {
    width: auto;
    /* float: right; */
    margin: 0px;
    padding: 0px;
    text-align: right;
}

.header-search-wrapper {
    /* float: left; */
    position: relative;
}

.search-main {
    display: block;
    line-height: 29px;
    padding: 0 14px;
    cursor: pointer;
    color: #333;
    border-right: 1px solid #ddd;
}

.loginlinks {
  border-right: 1px solid #ddd;
  /* float: left; */
  line-height: 42px;
  padding: 0 7px;
  color: rgb(27, 27, 27);
  /* font-size: 15px;
  font-weight: 500; */
}

.tophead_right .sizechanger,
.colorchanger {
    /* float: left; */
}

.tophead_right a.alink {
    background: #004274;
    color: white;
    line-height: 29px;
    margin: 0 0 0 1px;
    padding: 8px 5px 6px;
    font-size: 15px;
}

.header-search-wrapper .search-form-main {
    border-top-color: #4ca377;
}

.header-search-wrapper .search-form-main {
    background: #fff none repeat scroll 0 0;
    -webkit-box-shadow: 1px 1px 7px rgba(0, 0, 0, .15);
    box-shadow: 1px 1px 7px rgba(0, 0, 0, .15);
    border-top: 2px solid #4ca377;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 124%;
    width: 400px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

.header-search-wrapper .search-form-main:before {
    border-bottom-color: #408c40;
}

.header-search-wrapper .search-form-main:before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #408c40;
    content: "";
    position: absolute;
    right: 15px;
    top: -10px;
}

.search-form {
    margin-bottom: 0px;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

/* Top Bar css End */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    /* Safari 4.0 - 8.0 */
    animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 90%;
    top: 50px;
    left: 5%;
    padding-top: 25px;
    padding-bottom: 25px;
}







.header-logo-text *{
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.dropdown-mega .nav-link:hover::after{
    opacity: 1;
}

.nav-link a:hover {
    color: #fff !important;
}

.nav-link:focus,
.nav-link:hover {
    color: #fff !important;
}

.welcome-title {
    padding-bottom: 5px;
  font-size: 17px;
  color: #333;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.sub-menu {
    margin: 0;
    padding-left: 30px;
    /* list-style: none; */
}

.sub-menu li a i {
    font-size: 10px;
    position: relative;
    top: -2px;
    padding-right: 8px;
}

.sub-menu li a {
    font-size: 16px !important;
    color: #000;
    font-weight: normal;
    line-height: 1.7;
    transition: 0.4s all linear;
}

.btr1 {
    padding-bottom: 21px;
}

.footer-social-link ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-link ol li {
    display: inline-block;
    margin-right: 5px;
}

.footer-social-link ol li:last-child {
    margin-right: 0;
}

.footer-social-link ol li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    border-radius: 100%;
    text-align: center;
    color: #333;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.footer-social-link ol li a:hover {
    border: 1px solid #fff;
    background-color: #256bb2;
    color: var(--white-color);
}

.footer-social-link ol li a i {
    font-size: 18px;
    color: inherit
}

.footer-links {
    margin: 0 auto;
}

.footer-info-heading {
    position: relative;
    margin-bottom: 20px;
}

.sub-menu li a:hover {
    color: #0878bb !important;
    /* padding-left: 5px; */
}

.parallaxie1 {
    background-image: url('../assets/img/logo/_MG_6359.JPG');
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: unset !important;
    background-attachment: unset !important;
    padding: 120px 0 131px;
    position: relative;
}

.parallaxie1::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.03);
}

.bgabout {
    background-color: #f7f7f7;
}

.about-wing.pt5 {
    padding: 51px 0px;
}

.section-title.order p {
    width: 100%;
    max-width: 1055px;
    margin: 0 auto;
    padding-bottom: 34px;
}

.btr3 {
    border-radius: 5px;
    border: 6px solid #ddd3d3;
}

.divider-new {
    margin: 10px 0px;
}
/*16-01-2025 updated css start*/

.carousel-inner {
  /* height:441px; */
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-container {
  height:441px;
  width: 100%;
  position: relative;
}



.video-container video {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}


.video-container:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.upperbutton {
  position: relative;
}
#playPauseButton {
  background: white;
  color: black;
  border: none;
  border-radius: 15px;
  position: absolute;
  padding: 2px 8px 2px;
  min-width: 60px;
  top: -64px;
  z-index: 1;
  right: 62px;
  border-color: #ccc;
}
.carousel-caption.shipping-text {
  position: absolute;
  z-index: 99;
}
.carousel-caption.shipping-text h3 {
  color: #fff;
  font-size: 38px;
}
.section-title1 h2 {
  font-size: 42px;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.quick-link-sec ul .nmdc-branch{
    border-bottom: 6px solid #94FAFF;
    border-radius: 15px;
}
.table.table-bordered.faapp-light thead tr th {
    background-color: #7ed348;
    color: #fff;
    font-size: 14px;
}

/* Mercantile Marine Law Team Css Start  */
.table.table-bordered.mml-light thead tr th {
    background-color: #ff0000;
    color: #fff;
    font-size: 14px;
}

/*----------------mml-tree----------*/
.mml-body {
    white-space: nowrap;
    overflow-y: hidden;
    padding: 50px;
    min-height: 500px;
    padding-top: 10px;
    text-align: center;
}

.mml-tree {
    display: inline-block;
}

.mml-tree ul {
    padding-top: 20px;
    position: relative;
    padding-left: 0px;
    display: flex;
    justify-content: center;
}

.mml-tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
}

.mml-tree li::before,
.mml-tree li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 2px solid #ccc;
    width: 50%;
    height: 18px;
}

.mml-tree li::after {
    right: auto;
    left: 50%;
    border-left: 2px solid #ccc;
}

.mml-tree li:only-child::after,
.mml-tree li:only-child::before {
    display: none;
}

.mml-tree li:only-child {
    padding-top: 0;
}

.mml-tree li:first-child::before,
.mml-tree li:last-child::after {
    border: 0 none;
}

.mml-tree li:last-child::before {
    border-right: 2px solid #ccc;
    border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
}

.mml-tree li:first-child::after {
    border-radius: 5px 0 0 0;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
}

.mml-tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 2px solid #ccc;
    width: 0;
    height: 20px;
}

.mml-tree li a {
    text-decoration: none;
    color: #666;
    font-family: verdana, tahoma;
    font-size: 11px;
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

/*--------------memeber-card-design----------*/

.mml-member-box {
    text-align: center;
    border-radius: 4px;
    position: relative;
    border: 1px;
    border-color: #345;
    border-style: solid;
}

.mml-member-image {
    padding: 10px;
    position: relative;
}

.mml-member-image img {
    width: 200px;
    height: 260px;
    border: #ccc 1px solid;
    border-radius: 6px;
    background-color: #fff;
    z-index: 1;
}

.mml-member-header {
    padding: 10px;
    text-align: center;
    background: #345;
    color: #fff;
    font-size: 14px;
    border-radius: 0 0 4px 4px;
}

.mml-member-header h6 {
    font-size: 16px;
    color: #fff;
}

.listline.romans li {
  list-style: disclosure-closed !important;
}
.home-transportation.about-transportation.pt55 {
  padding: 31px 0px;
}
.accordion-button.indosbutton {
  background-color: #fff;
  color: #333;
  font-weight: 500;
  font-size: 17px;
}
.sagar-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.sidebar-nav ul li a{
    border-top: 1px dotted #333;
    font-size: 14px !important;
    font-weight: 500;
}

.sidebar-nav .sidebar-sub-menu{
    padding-left: 20px;
}


/* ===== End of news.css ===== */


/* ===== Start of custom.css ===== */
/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : AeroLogix - Logistics & Transportation HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables.faq-accordion .accordion-item .accordion-button
02. General css
03. Header css
04. Hero css
05. Intro Services css
06. About us css
07. Services css
08. CTA css
09. Recent Project css
10. Our Goals css
11. Features css
12. Latest Posts css
13. Footer css
14. About us Page css
15. Services Page css
16. Service Single css
17. Blog Archive css
18. Blog Single css
19. Contact us Page css
20. Projects Page css
21. Project Single css
22. FAQs css
23. 404 Page css --ui-gradient-0: linear-gradient(130deg, #003b5c 20%, rgba(18, 245, 214, .89));
24. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/***     01. Global Variables     ***/
/************************************/

:root {
    --primary-color: #003B49;
    --secondary-color: #F7F7F7;
    --text-color: #333333;
    --accent-color: #256bb2;
    --white-color: #ffffff;
    --divider-color: #E2E2E2;
    --error-color: rgb(230, 87, 87);
    --default-font: "Verdana", sans-serif;
}


/************************************/
/***       02. General css        ***/
/************************************/

body {
    font-size: 16px;
    font-weight: 400;
    background: var(--white-color);
    font-family: var(--default-font);
    color: var(--text-color);
    line-height: 1.6em;
}

p {
    line-height: 1.6em;
    margin-bottom: 0;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--primary-color);
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    line-height: 1.3em;
    color: var(--accent-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    line-height: 1.3em;
    color: inherit;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
    color: inherit;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}
.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: unset;
    overflow: unset;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.btn-default {
    display: inline-block;
    background-color: #005982;
    color: var(--white-color);
    font-family: var(--default-font);
    text-transform: capitalize;
    line-height: 1.3em;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    border: none;
    outline: 0;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.btn-default:before {
    content: '';
    position: absolute;
    width: 0;
    height: 104%;
    top: 50%;
    left: 50%;
    background: #FB6818;
    opacity: 0;
    z-index: -1;
    transform: translateX(-51%) translateY(-51%);
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}

.btn-default:hover::before {
    width: 106%;
    opacity: 1;
}

#magic-cursor {
    position: absolute;
    width: 14px !important;
    height: 14px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1 !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--accent-color) transparent var(--accent-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 50px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-title {
    position: relative;
    text-align: center;
    /* margin-bottom: 10px; */
}

.section-title h1,
.section-title h2 {
    font-size: 32px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.section-title p {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

/************************************/
/***       03. Header css         ***/
/************************************/

.topbar {
    background-color: var(--white-color);
}

.topbar-contact-info {
    padding: 10px 0;
}

.topbar-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar-contact-info ul li {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
}

.topbar-contact-info ul li a {
    color: var(--text-color);
}

.topbar-contact-info ul li i {
    font-size: 16px;
    margin-right: 5px;
    color: var(--primary-color);
}

.topbar-social-links {
    background-color: var(--white-color);
    padding: 10px 15px;
}

.topbar-social-links ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.topbar-social-links ul li {
    display: inline-block;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    border-radius: 100%;
    text-align: center;
    color: var(--primary-color);
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.topbar-social-links ul li:last-child {
    margin-right: 0;
}

.topbar-social-links ul li a i {
    font-size: 18px;
    color: inherit
}

.main-header {
    background-color: var(--accent-color);
    position: relative;
    z-index: 100;
    /* border-bottom: 1px solid rgba(255, 255, 255, .3); */

}


header.main-header .header-sticky {
    position: relative;
    top: 0;
    /* border-bottom: 1px solid #ffffff; */
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--secondary-color);
    transform: translateY(0);
    background: var(--accent-color);
}













.main-menu ul li a {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: var(--white-color);
    padding: 20px 0;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li a:hover {
    color: var(--white-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    /* margin: 0; */
    margin-top: 9px;
    list-style: none;
    width: 250px;
    border-radius: 0;
    position: absolute;
    left: -58px;
    top: 100%;
    /* overflow: hidden; */
    /* border-radius: 0 0 10px 10px; */
    background-color: var(--white-color);
    transition: all .3s ease-in-out;
}











.main-menu ul ul li a:hover {
    color: var(--accent-color);
}

.header-contact-us a {
    display: flex;
    align-items: center;
}

.header-contact-us a img {
    margin-right: 10px;
}

.header-contact-us a h3 {
    width: 100%;
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.header-contact-us a h3 span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6em;
    color: var(--accent-color);
}




.slicknav_btn {
    background: var(--primary-color);
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 5px;
    border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    margin: 4px auto !important;
}

.slicknav_menu {
    padding: 0;
    background: var(--accent-color);
    position: absolute;
    width: 100%;
    z-index: 1;
    margin-top: 10px;
}

.slicknav_nav ul {
    margin: 0;
}

.slicknav_nav li a {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    margin: 0;
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav li a:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 0;
    margin: 0;
}

.slicknav_nav .sub-menu li a {
    padding: 10px 30px;
}

.slicknav_nav .slicknav_row {
    padding: 10px 20px;
    margin: 0;
    background-color: transparent !important;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    width: 20px;
    height: 20px;
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    text-align: center;
    position: absolute;
    right: 15px;
    top: 10px;
    transition: all 0.3s ease-in-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: rotate(-180deg);
}



/************************************/
/***        04. hero css          ***/
/************************************/


.hero {
    position: relative;
    padding: 160px 0 220px;
    background-image: url(../images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
}

.hero::before {
    content: '';
    position: absolute;
    /* background-image: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%); */
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
}

.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider {
    text-align: center;
    background: none;
    padding: 0;
}

.hero-slider-layout .hero-slide {
    position: relative;
    padding: 120px 0 220px;
}

.hero.hero-slider:before {
    display: none;
}

.hero.hero-slider .hero-slider-layout {
    position: relative;
    z-index: 2;
}

.hero-slider-layout .hero-slide::before {
    content: '';
    position: absolute;
    background-image: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.hero-slider-layout .swiper-pagination {
    bottom: 150px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--white-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 180px;
    left: 16rem;
}

.hero-content-title {
    margin-bottom: 20px;
}

.hero-content-title h1,
.hero-content-title h2 {
    width: 100%;
    font-size: 50px;
    color: rgb(255 204 41);
}

.hero-content-body {
    margin-bottom: 40px;
}

.hero-content-body p {
    color: var(--white-color);
}

.hero-content-footer .btn-default::before {
    background-color: var(--white-color);
}

.hero-content-footer .btn-default:hover {
    color: var(--primary-color);
}

.video-play-button {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 66px;
    margin: 0 auto;
}

.video-play-button::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 3px solid #FF7D44;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1s infinite linear;
}

.video-play-button a:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 3px solid #FF7D44;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1s infinite linear;
    animation-delay: .3s;
}

@-webkit-keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button img {
    width: 65px;
    border: 2px solid #FF7D44;
    border-radius: 50%;
}

/* 
.main-slider::before {
    content: '';
    position: absolute;
    background-image: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
    background-repeat: no-repeat;
    background-position: center center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
} */


/************************************/
/***    05. Intro Services css    ***/
/************************************/

.cargo-shipment {
    position: relative;
    z-index: 4;
    margin-top: 35px;
    margin-bottom: 35px;
}

.cargo-shipment-item {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    height: 100%;
    background: var(--white-color);
    box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.10);
    transition: all 0.4s ease-in-out;
}

.cargo-shipment-item::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white-color);
    color: var(--primary-color);
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active {
    transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active::before {
    z-index: -1;
}

.cargo-shipment-item:hover:before {
    transform: translate(100%, -100%);
}

.cargo-shipment-item.active::before {
    transform: translate(100%, -100%);
}

.cargo-shipment-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active .cargo-shipment-image {
    opacity: 1;
}

.cargo-shipment-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--accent-color);
    opacity: 0.9;
}

.cargo-shipment-item:hover .cargo-shipment-image {
    opacity: 1;
}

.cargo-shipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.cargo-shipment-content {
    position: relative;
    z-index: 2;
}

.cargo-shipment-icon {
    margin-bottom: 20px;
}

.cargo-shipment-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active .cargo-shipment-content h3 {
    color: var(--white-color);
}

.cargo-shipment-item:hover .cargo-shipment-content .current-news {
    color: var(--white-color);
}

.cargo-shipment-readmore a {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
    padding-right: 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cargo-shipment-readmore a::before {
    content: '\f061';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    font-family: 'FontAwesome';
    font-size: 16px;
    font-weight: 900;
    transition: 0.3s ease-in-out;
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cargo-shipment-item:hover .cargo-shipment-content a {
    transition: all 0.4s ease-in-out;
    color: var(--white-color);
}

.cargo-shipment-item:hover .cargo-shipment-readmore a::before {
    color: var(--white-color);
}

.cargo-shipment-item.active .cargo-shipment-readmore a {
    color: var(--white-color);
}

.cargo-shipment-item.active .cargo-shipment-readmore a::before {
    color: var(--white-color);
}

/************************************/
/***      06. About us css        ***/
/************************************/

.home-transportation {
    padding: 50px 0;
}

.home-transportation .section-title {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
    text-align: left;
}

.home-transportation .section-title::before {
    display: none;
}

.home-transportation-content {
    margin-right: 15px;
}

.home-transportation-body {
    margin-bottom: 30px;
    text-align: justify;
}

.home-transportation-body p {
    margin-bottom: 15px;
}

.home-transportation-body p:last-child {
    margin-bottom: 0;
}

.home-transportation-footer {
    display: flex;
    align-items: center;
}



.home-transportation-footer a:last-child {
    margin-right: 0;
}

.home-transportation-content .header-contact-us {
    display: flex;
    align-items: center;
}

.home-transportation-right {
    position: relative;
    background-size: auto;
    padding-bottom: 150px;
}

.transportation-img-2 img,
.transportation-img-1 img {
    border-radius: 10px;
}

.transportation-img-1 {
    position: relative;
}

.transportation-img-2 {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 280px;
}

.transportation-counter-box {
    position: absolute;
    left: 47%;
    bottom: 29%;
    display: inline-block;
    background-color: var(--white-color);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.199);
    border-radius: 10px;
  padding: 11px;
  text-align: center;
  width: 213px;
}

.transportation-counter-box h3 {
    font-size: 46px;
    font-weight: 700;
    color: var(--accent-color);
}

.transportation-counter-box p {
    font-weight: 700;
    /* text-transform: capitalize; */
}

/************************************/
/***       07. Services css       ***/
/************************************/

.our-service {
    background-color: var(--white-color);
    padding: 60px 0;
}

.our-service-item {
    margin-bottom: 30px;
}

.our-service-image {
    border-radius: 10px;
    overflow: hidden;
}

.our-service-image img {
    width: 100%;
    aspect-ratio: 1 / 0.65;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.5s ease-out;
}

.our-service-item:hover .our-service-image img {
    transform: scale(1.1);
}

.our-service-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: -10%;
}

.service-content-box {
    display: flex;
    align-items: center;
    width: 75%;
    background-color: var(--white-color);
    box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.10);
    padding: 20px;
}

.service-content {
    /* display: ; */
    /* align-items: center; */
    text-align: center;
    width: 75%;
    background-color: var(--white-color);
    box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.10);
    padding: 20px;
}

.our-service-icon {
    margin-right: 10px;
}

.our-service-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: capitalize;
}

.our-service-title-ew h2 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: capitalize;
}

.our-service-content-button {
    width: 15%;
    background-color: var(--primary-color);
    padding: 13px 11px;
    margin-left: -30px;
    text-align: center;
}

.our-service-content-button a i {
    font-size: 26px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.our-service-content-button a i:hover {
    color: var(--white-color);
}

.our-service-footer {
    margin-top: 20px;
    text-align: center;
}

.our-operating {
    background-color: #e9ecf5;
    border: 2px solid #33333369;
    padding: 8px 8px;
    transition: 0.6s all;
}

.our-operating:hover {
    box-shadow: 0px 25px 25px 0px #848c90;
}

.align-text {
    margin-top: 8px;
}

.align-text p:first-child {
    float: left;
    display: inline-block;
}

.align-text p {
    font-size: 14px;
}

/************************************/
/***         08. CTA css          ***/
/************************************/

.our-contract {
    position: relative;
    background-image: url(../images/contact-bg-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    padding: 50px 0;
}

.our-contract::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.our-cta-box {
    background-color: var(--primary-color);
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.our-contract-title {
    margin-bottom: 20px;
}

.our-contract-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white-color);
}

.our-contract-body p {
    color: var(--white-color);
    margin-bottom: 20px;
}

.our-contract-body .btn-default::before {
    background-color: var(--white-color);
}

.our-contract-body .btn-default:hover {
    color: var(--primary-color);
}

/************************************/
/***    09. Recent Project css    ***/
/************************************/

.recent-project-1 {
    background-color: var(--secondary-color);
}

.project-slider {
    position: relative;
    width: 1180px;
    margin: 0 auto;
}

.project-item {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.project-image img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    text-align: center;
    transition: all 0.5s ease-out;
}

.project-item:hover .project-image figure img {
    transform: scale(1.1);
}

.project-content {
    content: "";
    position: absolute;
    transition: .5s;
    bottom: 30px;
    left: 30px;
    right: 30px;
    transform: translateY(100%);
    opacity: 0;
    display: flex;
    z-index: 1;
    align-items: flex-end;
    justify-content: flex-end;
}

.project-item:hover .project-content {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.project-content-title {
    background-color: var(--white-color);
    box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
}

.project-content-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
}

.project-content-title h3 a {
    color: inherit;
}

.project-content-title i {
    font-size: 20px;
    color: var(--accent-color);
}

.client-button-prev {
    left: -4%;
}

.client-button-next {
    right: -4%;
}

.client-button-prev,
.client-button-next {
    color: var(--accent-color);
    font-size: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.client-button-next:hover,
.client-button-prev:hover {
    color: var(--primary-color);
    opacity: 1;
}

/************************************/
/***      10. Our Goals css       ***/
/************************************/

.our-goals {
    background-color: var(--white-color);
}

.our-goals-item {
    background-color: var(--white-color);
    box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.10);
    border-radius: 10px;
    text-align: center;
    padding: 14px 0px;
    border-bottom: 6px solid #003B49;
    min-height: 184px;
}

.counter-icon {
    margin-bottom: 20px;
}

.our-goals-counter h3 {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
}

.our-goals-counter h3 span {
    color: inherit;
}

/************************************/
/***       11. Features css       ***/
/************************************/

.providing-service {
    padding: 22px 0 50px;
}

.Featured-Content-Box img {
    width: 100%;
    border-radius: 10px;
}

.providing-content {
    margin-left: 10px;
}

.providing-content .section-title {
    width: 100%;
    max-width: 450px;
    text-align: left;
    margin-bottom: 30px;
}

.providing-content .section-title h2 {
    padding-bottom: 0;
}

.providing-content .section-title::before {
    display: none;
}

.providing-content-body p {
    margin-bottom: 30px;
}

.providing-item-box {
    display: flex;
    align-items: center;
}

.providing-item {
    width: 33.33%;
}

.providing-item .icon-box {
    margin-bottom: 10px;
}

.providing-item span {
    font-weight: 700;
}

/************************************/
/***    12. Latest Posts css      ***/
/************************************/

.latest-posts {
    padding: 30px 0 5px;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.post-featured-image img {
    aspect-ratio: 1 / 0.70;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.post-meta {
    margin-bottom: 20px;
}

.post-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-meta ul li {
    position: relative;
    display: inline-block;
}

.post-meta ul li a {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: capitalize;
}

.post-readmore a {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    padding-right: 20px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.post-readmore a::before {
    content: '\f061';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    font-family: 'FontAwesome';
    font-size: 16px;
    font-weight: 900;
    transition: 0.3s ease-in-out;
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-readmore:hover a {
    color: var(--primary-color);
}

.post-readmore:hover a::before {
    color: var(--primary-color);
}

/************************************/
/***      13. Footer css          ***/
/************************************/

.mega-footer {
   background-color: #012758;
  padding: 21px 0 0 0;
    padding-top: 21px;
    padding-bottom: 0px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left 20px bottom 0px;
  background-image: url(../assets/img/footer-bg-1.png);

}

.footer-heading {
    margin-bottom: 20px;
}

.footer-heading h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
}

.footer-content {
    margin-bottom: 21px;
}

.footer-content p {
    max-width: 300px;
    color: var(--white-color);
}

.footer-social-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-link ul li {
    display: inline-block;
    margin-right: 5px;
}

.footer-social-link ul li:last-child {
    margin-right: 0;
}

.footer-social-link ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-color);
    border-radius: 100%;
    text-align: center;
    color: var(--white-color);
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.footer-social-link ul li a:hover {
    border: 1px solid var(--white-color);
    background-color: transparent;
    color: var(--white-color);
}

.footer-social-link ul li a i {
    font-size: 18px;
    color: inherit
}

.footer-links {
    margin: 0 auto;
}

.footer-info-heading {
    position: relative;
    margin-bottom: 20px;
}

.footer-info-heading h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    text-transform: capitalize;
}

.footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li {
    color: var(--white-color);
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li:last-child {
    margin-bottom: 0px;
}

.footer-links ul li:hover {
    color: var(--white-color);
}

.footer-links ul li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.footer-info-box {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.footer-info-box:last-child {
    margin-bottom: 0;
}

.footer-info-box .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}

.footer-info-box .icon-box i {
    font-size: 20px;
    color: var(--accent-color);
}

.footer-info-box p {
    font-size: 16px;
    color: var(--white-color);
}

.newsletters-content {
    margin-bottom: 20px;
}

.newsletters-content p {
    color: var(--white-color);
}

.newsletters-form .mail-box {
    background-color: transparent;
    border-bottom: 2px solid var(--white-color);
}

.newsletters-form .mail-box button {
    background: transparent;
    border: none;
    margin-top: 11px;
}

.newsletters-form .mail-box .form-control {
    background-color: transparent;
    border: none;
    color: var(--white-color);
    padding: 10px 2px;
    box-shadow: none;
}

.form-group .help-block.with-errors {
    color: var(--error-color);
}

.newsletters-form .mail-box .form-control::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
    opacity: 0.5;
}

.newsletters-form .mail-box i {
    font-size: 20px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.newsletters-form .mail-box i:hover {
    color: var(--white-color);
}

.footer-copyright h3 b {
    color: var(--button-secondary-color);
}

.footer-copyright-links {
    background-color: #1c60a5;
    color: var(--white-color);
    padding: 11px 0;
}

.footer-copyright p {
    font-weight: 600;
    text-align: left;
}

.footer-copyright p {
    color: var(--white-color);
}

.footer-policy-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.footer-policy-links ul li {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    margin-left: 10px;
}

.footer-policy-links ul li:before {
    content: '';
    display: block;
    width: 1px;
    height: 15px;
    background: var(--white-color);
    position: absolute;
    top: 5px;
    left: 0;
}

.footer-policy-links ul li:first-child {
    padding-left: 0;
}

.footer-policy-links ul li:first-child:before {
    display: none;
}

.footer-policy-links ul li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
}

/************************************/
/***    14. About us Page css     ***/
/************************************/

.page-header {
    position: relative;
    background-color: #C2C2C2;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: cover;
    padding: 56px 0;
}

.page-header:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(268deg, transparent 0%, #010101 0%); */
    opacity: 0.6;
}


.page-header-box {
    position: relative;
    z-index: 1;
    /* top: 70px; */
}

.page-header-box h2 {
    font-size: 21px !important;
    font-weight: 700;
    color: #162F6A;
    margin-bottom: 9px;
}

.page-header-box .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.page-header-box ol.breadcrumb li {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    margin-right: 12px;
    text-transform: capitalize;
}

.page-header-box ol.breadcrumb li:last-child {
    margin-right: 0;
}

.page-header-box ol.breadcrumb li a {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.page-header-box ol.breadcrumb li:after {
    content: '\f061';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 20px;
    color: var(--white-color);
    margin-left: 12px;
}

.page-header-box ol.breadcrumb li:last-child:after {
    display: none;
}

.home-transportation.about-transportation {
    padding: 41px 0px;
}

.about-transport {
    padding: 50px 0 100px;
}

.transport-item {
    /* border-right: 3px solid var(--divider-color); */
    padding: 12px 14px;
    height: 100%;
    border: 1px solid var(--divider-color);
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    min-height: 213px;
    position: relative;
    background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-position: right top;
  border-top: 5px solid #256bb2;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 0%), 0 6px 20px 0 rgb(0 0 0 / 13%);
}

.about-transport .col-md-4:last-child .transport-item {
    border: none;
}

.transport-item .icon-box {
    margin-bottom: 20px;
}

.transport-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #3A2284;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.our-indurstry {
    background-color: var(--secondary-color);
    padding: 100px 0;
}

.our-indurstry .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.our-indurstry .section-title::before {
    display: none;
}

.indurstry-image figure {
    width: 100%;
}

.indurstry-image figure img {
    width: 100%;
    border-radius: 10px;
}

.our-indurstry-content {
    margin-left: 20px;
}

.indurstry-content p {
    margin-bottom: 25px;
}

.indurstry-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.indurstry-content ul li {
    width: 50%;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.indurstry-content ul li:last-child {
    margin-bottom: 0;
}

.indurstry-content ul li i {
    font-size: 16px;
    margin-right: 10px;
    color: var(--accent-color);
}

.export-team {
    padding: 20px 0 0px;
}

.team-item {
    background-color: var(--primary-color);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.team-image img {
    transition: all 0.5s ease-in-out;
    border-radius: 10px 10px 0 0;
}

.team-item:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 15px 20px;
}

.team-content p {
    font-size: 14px;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: capitalize;
}

.team-content h4 a {
    font-size: 15px;
    font-weight: 700;
    color: var(--white-color);
    text-transform: capitalize;
}

.team-content h5 {
    font-size: 13px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-weight: 700;
    color: var(--white-color);
    text-transform: capitalize;
}

.our-contract.about-us {
    padding: 0 0 80px;
    margin: 0;
}

/************************************/
/***    15. Services Page css     ***/
/************************************/

.service-page {
    padding: 40px 0 30px;
    background-color: #f7f7f7;
}

/************************************/
/***    16. Service Single css    ***/
/************************************/

.service-details {
    padding: 100px 0;
}

.service-details-content {
    margin-right: 40px;
}

.service-details-body p {
    margin-bottom: 20px;
}

.service-details-featured-image {
    margin-bottom: 20px;
}

.service-details-featured-image img {
    border-radius: 10px;
}

.service-details-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: capitalize;
}

.service-details-body {
    margin-bottom: 40px;
}

.service-info-box {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.service-info-box:last-child {
    margin-bottom: 0;
}

.service-info-box .icon-box {
    position: absolute;
    top: 0px;
    left: 0;
}

.service-info-box .icon-box i {
    font-size: 16px;
    color: var(--accent-color);
}

.service-info-box p {
    font-weight: 600;
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.service-info-box p:last-child {
    margin-bottom: 0;
}

.service-details-footer {
    display: flex;
    justify-content: space-between;
}

.service-details-image-box {
    width: 49%;
}

.service-details-image-box img {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 1/0.6;
    object-fit: cover;
}

.post-Category-list {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.post-Category-list .footer-info-heading {
    margin-bottom: 40px;
}

.post-Category-list .footer-info-heading h2 {
    font-size: 26px;
    font-weight: 700;
}

.post-Category-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-Category-list ul li {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.post-Category-list ul li:last-child {
    margin-bottom: 0;
}

.post-Category-list ul li a {
    color: var(--white-color);
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.post-Category-list ul li a:hover {
    color: var(--accent-color);
}

.post-Category-list ul li a i {
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 20px;
}

.service-logistics-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    text-align: left;
    padding: 20px;
}

.logistics-card-image {
    margin-bottom: 30px;
}

.logistics-card-title {
    position: relative;
    margin-bottom: 30px;
}

.logistics-card-title h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.logistics-card-body {
    display: flex;
    align-items: right;
    text-align: center;
    justify-content: right;
}

/************************************/
/***     17. Blog Archive css     ***/
/************************************/

.latest-posts.blog-page {
    padding: 100px 0;
}

.post-pagination {
    margin-top: 30px;
    text-align: center;
}

.post-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    margin: 0 4px;
    border-radius: 10px;
    font-family: var(--accent-font);
    font-weight: 700;
    color: var(--white-color);
    transition: all 0.3s ease-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
    background: var(--primary-color);
}

/************************************/
/***    18. Blog Single css       ***/
/************************************/

.post-single-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-single-meta ul li {
    position: relative;
    display: inline-block;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 0 20px 0 5px;
}

.post-single-meta ul li::after {
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.post-single-meta ul li:last-child:after {
    display: none;
}

.page-single-post {
    padding: 100px 0;
}

.blog-detail-content {
    margin-right: 40px;
    margin-bottom: 40px;
}

.blog-detail-post-content {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.blog-detail-post-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.blog-detail-featured-image {
    margin-bottom: 50px;
}

.blog-detail-featured-image img {
    border-radius: 10px;
}

.blog-detail-post-content p {
    margin-bottom: 20px;
}

.blog-detail-post-content p:last-child {
    margin-bottom: 0;
}

.post-tags a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 5px;
    padding: 12px 20px;
    margin-right: 15px;
    margin-bottom: 10px;
}

.post-tags a:last-child {
    margin-right: 0;
}

.post-social-links {
    text-align: right;
}

.post-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-links ul li {
    display: inline-block;
    margin-right: 5px;
}

.post-social-links ul li:last-child {
    margin-right: 0;
}

.post-social-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    border-radius: 100%;
    text-align: center;
    color: var(--accent-color);
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-links ul li:hover a {
    border-color: var(--primary-color);
}

.post-social-links ul li a i {
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.post-social-links ul li:hover a i {
    color: var(--primary-color);
}

.post-Category-list.blog-details-list {
    margin-bottom: 30px;
    padding: 30px;
}

.blog-details-post-Category {
    margin-left: 50px;
}

.post-widget-body .recent-post-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.post-widget-body .recent-post-item:last-child {
    margin-bottom: 0;
}

.blog-details-post-widget {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
}

.blog-details-post-widget .footer-info-heading {
    margin-bottom: 40px;
}

.recent-post-feature-img {
    width: 40%;
}

.recent-post-feature-img img {
    border-radius: 10px;
    aspect-ratio: 1/0.6;
    object-fit: contain;
}

.recent-post-content {
    width: 55%;
}

.recent-post-content h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.recent-post-content h3 a {
    color: var(--white-color);
}

.recent-post-content p {
    border-color: var(--accent-color);
}

.recent-post-content .post-readmore:hover {
    border-color: var(--white-color);
}

.recent-post-content .post-readmore a {
    font-size: 16px;
}

.recent-post-content .post-readmore a:hover {
    color: var(--white-color);
}

/************************************/
/***    19. Contact us Page css   ***/
/************************************/

.get-in-touch {
    padding: 100px 0;
}

.get-quote {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 40px;
}

.get-quote h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.get-quote-content {
    margin-bottom: 30px;
}

.get-quote-form form .row .col-md-12,
.get-quote-form form .row {
    padding: 0;
    margin: 0;
}

.get-quote-form .form-control {
    /* background-color: transparent; */
    color: var(--text-color);
    border: 1px solid var(--divider-color);
    box-shadow: none;
    border-radius: 8px;
    outline: 0;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    /* padding: 15px 20px 15px 0; */
}

.contact-us {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 40px;
    height: 100%;
}

.contact-us h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-us-info .footer-info-box {
    margin-bottom: 30px;
}

.contact-us-info {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
}

.contact-us-info p {
    font-size: 17px;
    font-weight: 500;
    color: var(--primary-color);
}

.contact-us-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-social-links.contact-details {
    background-color: transparent;
    padding: 0;
}

.container-fluid,
.google-map .row .col-md-12,
.google-map .row {
    padding: 0;
    margin: 0;
}

.google-map-iframe {
    height: 600px;
}

.google-map-iframe iframe {
    width: 100%;
    height: 600px;
}

/************************************/
/***    20. Projects Page css     ***/
/************************************/

.our-project {
    padding: 100px 0 70px;
}

.our-project .project-box {
    position: relative;
    transition: all 0.3s ease-out;
}

.project-box .project-item .project-content {
    transform: translateY(0);
    opacity: 1;
    bottom: 30px;
}

.project-box:hover .project-item .project-content {
    bottom: 40px;
}

/************************************/
/***    21. Project Single css    ***/
/************************************/

.project-details {
    padding-top: 40px;
}

.project-feature-image {
    margin-bottom: 40px;
}

.project-feature-image img {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 1/0.4;
    object-fit: cover;
}

.project-details-box {
    margin-bottom: 40px;
}

.project-details-content {
    background-color: var(--primary-color);
    border-radius: 10px;
    text-align: center;
    height: 100%;
    padding: 30px;
}

.project-details-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.project-details-content p {
    font-weight: 600;
    color: var(--white-color);
    text-transform: capitalize;
}

.project-details-entry {
    margin-bottom: 40px;
}

.project-details-entry p {
    margin-bottom: 20px;
}

.project-details-title {
    margin-bottom: 30px;
}

.project-details-title h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
}

.project-gallary-items {
    display: flex;
    flex-wrap: wrap;
}

.project-gallery-item {
    width: calc(25% - 15px);
    margin-right: 20px;
}

.project-gallery-item:last-child {
    margin-right: 0;
}

.project-gallery-item figure {
    border-radius: 10px;
}

.project-gallery-item img {
    transition: all 0.5s ease-out;
}

.project-gallery-item:hover img {
    transform: scale(1.1);
}

/************************************/
/***        22. FAQs css          ***/
/************************************/

.page-faqs {
    padding: 100px 0;
}

.faq-accordion .accordion-item {
    background: none;
    border: none;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-button {
    font-size: 16px;
    font-weight: 600;
    background-color: var(--secondary-color);
    color: var(--accent-color);
    border-radius: 5px !important;
    border: none;
    box-shadow: none;
    padding: 15px 40px 15px 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--divider-color);
    margin-bottom: 20px;
}

.faq-accordion .accordion-item .accordion-button.collapsed {
    color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f068';
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    transform: translate(-20px, -8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    font-weight: 900;
    color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.faq-accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 15px 20px;
}

.accordion-body p {
    margin-bottom: 15px;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

/************************************/
/***       23. 404 Page css       ***/
/************************************/

.page-not-found {
    text-align: center;
    padding: 100px 0;
}

.page-not-found-image {
    margin-bottom: 40px;
}

.page-not-found-box h2 {
    width: 560px;
    margin: 0 auto;
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/****************************************/
/***       24. Responsive css         ***/
/****************************************/

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

    .main-menu ul li {
        margin: 0 10px;
    }

    .hero-content {
        padding: 0;
    }

    .project-slider {
        position: relative;
        width: 900px;
        margin: 0 auto;
    }
}

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

    #magic-cursor {
        display: none !important;
    }

    .btn-default {
        font-size: 16px;
    }

    .section-title {
        margin-bottom: 18px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    header.main-header .header-sticky {
        padding: 15px 0;
    }

    header.main-header .header-sticky.active .slicknav_menu {
        border-radius: 0;
    }


    



    .header-contact-us {
        display: none;
    }

    .responsive-menu {
        display: block;
        position: relative;
        width: 100%;
        z-index: 100;
    }

    .hero {
        padding: 50px 0 150px;
    }

    .hero.hero-slider .hero-slider-layout .hero-slide {
        padding: 80px 0 180px;
    }

    .hero-content-title h1,
    .hero-content-title h2 {
        font-size: 36px;
    }

    .cargo-shipment {
        margin-top: -120px;
    }

    .cargo-shipment-item {
        padding: 20px;
    }

    .cargo-shipment-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .home-transportation {
        padding: 50px 0;
    }

    .home-transportation .section-title {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        text-align: left;
    }

    .home-transportation-content {
        margin-right: 0px;
    }

    .home-transportation-right {
        max-width: 100%;
        width: 75%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .transportation-counter-box {
        position: absolute;
        left: 40%;
        bottom: 9%;
    }

    .transportation-counter-box h3 {
        font-size: 30px;
    }

    .our-service {
        padding: 50px 0;
    }

    .service-content-box {
        padding: 15px;
    }

    .our-service-title h2 {
        font-size: 18px;
    }

    .our-service-content-button a i {
        font-size: 24px;
    }

    .our-contract {
        padding: 50px 0;
        background-size: cover;
    }

    .our-cta-box {
        max-width: 530px;
    }

    .our-contract-title h2 {
        font-size: 26px;
    }

    .recent-project {
        padding: 50px 0 20px;
    }

    .project-slider {
        width: 660px;
        margin: 0 auto;
    }

    .client-button-prev {
        left: -6%;
    }

    .client-button-next {
        right: -6%;
    }

    .our-goals {
        padding: 50px 0 20px;
    }

    .our-goals-item {
        padding: 30px;
        margin-bottom: 30px;
    }

    .our-goals-counter h3 {
        font-size: 36px;
    }

    .providing-service {
        padding: 50px 0 25px;
    }

    .providing-content {
        margin-left: 0px;
    }

    .providing-content .section-title {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .Featured-Content-Box {
        text-align: center;
        margin-bottom: 30px;
    }

    .providing-content-body p {
        margin-bottom: 20px;
    }

    .latest-posts {
        padding: 25px 0 20px;
    }

    .post-body-meta ul li {
        margin-right: 20px;
    }

    .post-body h3 a {
        font-size: 18px;
    }

    .mega-footer {
        padding: 40px 0;
    }

    .mega-footer .row .col-md-6 {
        padding-left: 15px;
    }

    .footer-about {
        margin-bottom: 30px;
    }

    .footer-links {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-heading h2 {
        font-size: 18px;
    }

    .footer-social-link ul li {
        margin-right: 15px;
    }

    .footer-info-heading h2 {
        font-size: 18px;
    }

    .page-header {
        padding: 100px 0;
    }

    .page-header-box h2 {
        font-size: 36px;
        margin-bottom: 10px;
        letter-spacing: -0.02em;
    }

    .page-header-box ol.breadcrumb li {
        font-size: 18px;
    }

    .page-header-box ol.breadcrumb li:after {
        font-size: 18px;
    }

    .home-transportation.about-transportation {
        padding: 50px 0 25px;
    }

    .about-transport {
        padding: 25px 0 50px;
    }

    .transport-item {
        text-align: center;
        padding: 20px 10px;
    }

    .transport-content h3 {
        font-size: 18px;
    }

    .our-indurstry {
        padding: 50px 0;
    }

    .indurstry-image {
        text-align: center;
        margin-bottom: 30px;
    }

    .our-indurstry-content {
        margin-left: 0px;
    }

    .indurstry-content {
        margin-left: 0;
    }

    .export-team {
        padding: 50px 0 20px;
    }

    .team-content h3 a {
        font-size: 18px;
    }

    .our-contract.about-us {
        padding: 0 0 40px;
        margin: 0;
    }

    .service-page {
        padding: 50px 0 20px;
    }

    .service-details {
        padding: 50px 0;
    }

    .service-details-content {
        margin-bottom: 30px;
        margin-right: 0px;
    }

    .service-details-body {
        margin-bottom: 30px;
    }

    .service-details-body h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .service-details-body p {
        margin-bottom: 20px;
    }

    .post-widget-body .recent-post-item {
        margin-bottom: 20px;
    }

    .post-Category-list {
        margin-bottom: 30px;
    }

    .post-Category-list .footer-info-heading {
        margin-bottom: 20px;
    }

    .post-Category-list .footer-info-heading h2 {
        font-size: 24px;
    }

    .post-Category-list ul li {
        font-size: 14px;
    }

    .logistics-card-title h2 {
        font-size: 24px;
    }

    .logistics-card-body {
        display: flex;
        align-items: center;
        text-align: left;
        justify-content: center;
    }

    .logistics-card-body .header-contact-us {
        display: block;
    }

    .logistics-card-body a {
        margin-right: 20px;
    }

    .latest-posts.blog-page {
        padding: 50px 0;
    }

    .post-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .blog-detail-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .blog-detail-featured-image {
        margin-bottom: 30px;
    }

    .blog-detail-post-content h3 {
        font-size: 20px;
    }

    .post-social-links {
        text-align: left;
        margin-top: 10px;
    }

    /* .blog-details{
        padding: 40px 0;
    } */

    .service-details-content .latest-posts-content-meta {
        margin-bottom: 20px;
    }

    .service-details-content .latest-posts-content-meta ul li h3 {
        font-size: 14px;
        font-weight: 500;
    }

    .blog-details-post-widget {
        margin-bottom: 30px;
        padding: 30px;
    }

    .recent-post-feature-img {
        width: 20%;
    }

    .recent-post-feature-img img {
        border-radius: 10px;
        aspect-ratio: 1/0.7;
        object-fit: cover;
    }

    .recent-post-content {
        width: 75%;
    }

    .get-in-touch {
        padding: 50px 0;
    }

    .get-quote {
        padding: 30px;
    }

    .get-quote .footer-info-heading h2 {
        font-size: 24px;
    }

    .get-quote-content {
        margin-bottom: 20px;
    }

    .contact-us {
        padding: 30px;
    }

    .contact-us .footer-info-heading {
        margin-bottom: 30px;
    }

    .contact-us .footer-info-heading h2 {
        font-size: 24px;
    }

    .contact-us-footer {
        display: block;
    }

    .topbar-social-links.contact-details {
        margin-bottom: 20px;
        text-align: left;
    }

    .contact-us-footer .header-contact-us {
        display: block;
    }

    .topbar-social-links ul {
        text-align: left;
    }

    .google-map-iframe {
        height: 450px;
    }

    .google-map-iframe iframe {
        height: 450px;
    }

    .google-map iframe {
        height: 450px;
    }

    .our-project {
        padding: 50px 0 20px;
    }

    .project-details {
        padding: 50px 0 30px;
    }

    .project-feature-image {
        margin-bottom: 30px;
    }

    .project-details-box {
        margin-bottom: 30px;
    }

    .project-details-content {
        padding: 20px;
    }

    .project-details-content h2 {
        font-size: 14px;
    }

    .project-details-content p {
        font-size: 14px;
    }

    .project-details-entry {
        margin-bottom: 30px;
    }

    .project-details-title {
        margin-bottom: 30px;
    }

    .project-details-title h2 {
        font-size: 36px;
    }

    .project-gallery-item {
        width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .project-gallery-item:nth-child(2n + 2) {
        margin-right: 0;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .page-faqs .section-title {
        width: 100%;
    }

    .faq-accordion .accordion-item .accordion-button {
        font-size: 20px;
    }

    .faq-accordion .accordion-item .accordion-collapse .accordion-body p {
        font-size: 14px;
    }

    .page-not-found {
        padding: 50px 0;
    }

    .page-not-found-box h2 {
        width: 360px;
        margin: 0 auto;
        font-size: 36px;
        margin-bottom: 20px;
    }
}

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

    .btn-default {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        max-width: 100%;
    }

    .topbar {
        display: none;
    }

    header.main-header .header-sticky {
        padding: 0px 0;
    }

    header.main-header .header-sticky.active {
        padding: 10px 0;
    }

    .header-contact-us .btn-default {
        display: none;
    }

    body {
        font-size: 16px;
    }

    .hero.hero-slider .hero-slider-layout .hero-slide {
        padding: 50px 0 150px;
    }

    .hero-slider-layout .hero-slide .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-slider-layout .swiper-pagination {
        bottom: 0px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-content-title h1,
    .hero-content-title h2 {
        width: 100%;
        font-size: 30px;
    }

    .cargo-shipment {
        padding: 0 10px;
        margin-top: 35px;
    }

    .cargo-shipment-content h3 {
        font-size: 16px;
    }

    .home-transportation-right {
        width: 100%;
        padding-bottom: 130px;
    }

    .transportation-img-1 {
        width: 80%;
    }

    .transportation-img-2 {
        width: 55%;
    }

    .home-transportation-footer a {
        margin-right: 20px;
    }

    .transportation-counter-box {
        position: absolute;
        left: 24%;
        bottom: 18%;
        padding: 20px;
    }

    .transportation-counter-box h3 {
        font-size: 24px;
    }

    .our-service .section-title::before {
        max-width: 80px;
    }

    .our-service-item {
        margin-bottom: 30px;
    }

    .our-service .col-md-4:nth-child(3n + 3) .our-service-item {
        margin-bottom: 0px;
    }

    .our-service-title h2 {
        font-size: 18px;
    }

    .our-contract {
        padding: 40px 0;
    }

    .our-contract .contract-video {
        display: none;
    }

    .our-contract .video-play-button {
        display: none;
    }

    .our-cta-box {
        max-width: 100%;
        padding: 30px;
    }

    .our-contract-title h2 {
        font-size: 22px;
    }

    .recent-project {
        padding: 40px 0 10px;
    }

    .project-slider {
        width: 270px;
    }

    .project-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .project-content-title {
        padding: 15px;
    }

    .project-content-title h3 {
        font-size: 16px;
    }

    .project-content-title i {
        font-size: 18px;
    }

    .client-button-prev {
        left: -14%;
    }

    .client-button-next {
        right: -14%;
    }

    .our-goals-item {
        padding: 30px;
        margin-bottom: 20px;
    }

    .our-goals-counter h3 {
        font-size: 30px;
    }

    .providing-service {
        padding: 50px 0 25px;
    }

    .providing-item-box {
        display: block;
    }

    .providing-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .post-body h3 a {
        font-size: 16px;
    }

    .post-meta ul li a {
        font-size: 14px;
    }

    .mega-footer {
        padding: 40px 0;
    }

    .footer-heading h2 {
        font-size: 16px;
    }

    .footer-info-heading h2 {
        font-size: 16px;
    }

    .footer-contact-info {
        margin-bottom: 30px;
    }

    .newsletters-content {
        margin-bottom: 20px;
    }

    .footer-copyright p {
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-policy-links ul {
        text-align: center;
    }

    .page-header-box {
        text-align: center;
    }

    .page-header-box h2 {
        font-size: 28px;
    }

    .page-header-box .breadcrumb {
        justify-content: center;
    }

    .page-header-box ol.breadcrumb li {
        font-size: 16px;
    }

    .page-header-box ol.breadcrumb li:after {
        font-size: 16px;
    }

    .about-transport .col-md-4 {
        margin-bottom: 20px;
    }

    .about-transport .col-md-4:last-child {
        margin-bottom: 0;
    }

    .transport-item {
        padding: 0;
        border: none;
    }

    .transport-content h3 {
        font-size: 16px;
    }

    .indurstry-content {
        display: block;
        margin: 20px 0 0;
    }

    .indurstry-content ul {
        margin-bottom: 20px;
        margin-right: 0px;
    }

    .indurstry-content ul li {
        width: 100%;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .indurstry-content ul li i {
        font-size: 14px;
    }

    .team-item {
        margin-bottom: 20px;
    }

    .export-team .col-md-4:last-child .team-item {
        margin-bottom: 0;
    }

    .team-content h3 a {
        font-size: 16px;
    }

    .blog-detail-post-content h3 {
        font-size: 18px;
    }

    .blog-detail-post-content {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .service-details-content {
        margin-bottom: 20px;
    }

    .service-details-body {
        margin-bottom: 20px;
    }

    .service-details-body h2 {
        font-size: 18px;
    }

    .service-info-box .icon-box {
        position: absolute;
        top: 5px;
        left: 0;
    }

    .service-details-footer {
        display: block;
        justify-content: space-between;
    }

    .service-details-image-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .service-details-image-box:last-child {
        margin-bottom: 0;
    }

    .post-Category-list.blog-details-list {
        margin-bottom: 20px;
        padding: 20px;
    }

    .service-logistics-card {
        padding: 25px;
    }

    .post-Category-list .footer-info-heading h2 {
        font-size: 22px;
    }

    .post-Category-list ul li a i {
        font-size: 18px;
    }

    .logistics-card-title h2 {
        font-size: 22px;
    }

    .logistics-card-body {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .logistics-card-body a {
        margin-right: 0px;
    }

    .get-quote {
        margin-bottom: 20px;
    }

    .get-quote .footer-info-heading h2 {
        font-size: 22px;
    }

    .contact-us .footer-info-heading h2 {
        font-size: 22px;
    }

    .google-map-iframe {
        height: 350px;
    }

    .google-map-iframe iframe {
        height: 350px;
    }

    .google-map iframe {
        height: 350px;
    }

    .blog-details-content-meta {
        margin-bottom: 20px;
    }

    .blog-details-content-meta ul li {
        margin-right: 15px;
    }

    .blog-details-post-widget {
        padding: 20px;
    }

    .recent-post-feature-img {
        width: 35%;
    }

    .recent-post-content {
        width: 60%;
    }

    .recent-post-content .post-readmore a {
        font-size: 14px;
    }

    .project-feature-image {
        margin-bottom: 30px;
    }

    .project-feature-image img {
        height: 150px;
    }

    .project-details-box {
        margin-bottom: 0px;
    }

    .project-details-content {
        height: calc(100% - 30px);
        margin-bottom: 30px;
        padding: 20px;
    }

    .project-details-entry {
        margin-bottom: 20px;
    }

    .project-details-title {
        margin-bottom: 20px;
    }

    .project-details-title h2 {
        font-size: 28px;
    }

    .project-gallary-items {
        display: block;
    }

    .project-gallery-item {
        width: 100%;
        margin-right: 0px;
    }

    .page-faqs .section-title {
        width: 100%;
    }

    .faq-accordion .accordion-item .accordion-button {
        font-size: 18px;
        padding: 10px 30px 10px 10px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        transform: translate(-10px, -11px);
        font-size: 18px;
    }

    .faq-accordion .accordion-item .accordion-collapse .accordion-body {
        padding: 10px 30px 10px 10px;
    }

    .page-not-found-image {
        margin-bottom: 30px;
    }

    .page-not-found-box h2 {
        width: 280px;
        margin: 0 auto;
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.search-button {
    padding: 51px 0px;
}

.btn.btn-light.active-result {
    background-color: #d8d8d8;
    padding: 9px 31px;
    font-size: 18px;
    border: 1px solid #333;
}

.btn.btn-light.acts {
    font-size: 18px;
    padding: 9px 31px;
}

.notification-detaisl {
    border: 1px solid #333;
    padding: 13px 28px;
    border-radius: 4px;
}

.notification-detaisl i {
    font-size: 19px;
    padding-right: 7px;
    position: relative;
    top: 2px;
}

.alert-title h3 {
    color: #707683;
    font-size: 21px;
    font-weight: 600;
}

.alert-title h2 {
    color: #333;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 20px;
}

.alert-title b {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.alert-title h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 31px;
    display: block;
}

.download-bglight {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    font-weight: 400;
    line-height: 1.5;
    color: #67757c;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: #fff;
}

.viwe-bglight {
    font-weight: 400;
    line-height: 1.5;
    color: #67757c;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: #fff;
}

/* .btn.btn-dark.view-btn {
    padding: 8px 30px;
} */

.file-size H4 {
    margin-bottom: 4px;
    font-size: 19px;
}

.pdf-size {
    padding-top: 28px;
}

.fa-regular.fa-file-pdf {
    font-size: 13px;
    padding-left: 4px;
    color: red;
}

.product-widget {
    padding: 24px 32px;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.product-widget h4.widget-title {
    padding-bottom: 12px;
    border-bottom: 1px dashed #AEB0B6;
    margin-bottom: 25px;
}

.categories-list {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 14px;
}

.form-check-input[type="checkbox"] {
    position: relative;
    border-radius: 2px;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.product-widget.product-categories-widget .widget-content label {
    display: flex;
}

.form-check-label {
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
}

.product-widget.product-categories-widget .widget-content label span {
    margin-left: auto;
}

.form-check-input {
    background-color: transparent;
    border-color: var(--primary-dark-color);
}

.section-title.order h2 {
    padding-bottom: 6px;
}
.listline {
    list-style: decimal;
  margin: 0;
  padding-left: 14px;
}
.listline li {
  font-size: 16px;
  margin-bottom: 11px;
  line-height: 1.6em;
}
.central h2 {
  font-size: 28px;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  margin-bottom: 11px;
}
.listline li ol {
  list-style: disclosure-closed;
  margin: 11px 0px;
}
.rounded-text b {
  font-size: 14px;
  padding-bottom: 5px;
  display: block;
}
@media only screen and (max-width: 800px) {
 header.main-header .header-sticky.active {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--secondary-color);
    transform: translateY(0);
    background: var(--accent-color);
}
}
.video-caption li {
  list-style: none;
}
.resize {
  position: absolute;
  bottom: 11px;
}
.view-more {
  text-transform: capitalize;
  line-height: 1.3em;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 5px;
  background: #EEEBFA;
  color: #29136C;
}
.view-more:hover {
  color: #fff;
}

.bold-dir {
  font-weight: 500;
  font-size: 21px;
  display: block;
  padding-bottom: 8px;
}
.mandate-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}
.mandate-list li {
  padding-bottom: 15px;
  font-weight: 400;
  padding-left: 0px;
}
.intro-list {
  list-style-type: none;
  padding-left: 0px;
  margin: 0;
}
.intro-list li {
  padding-bottom: 15px;
  padding-left: 0px;
}
.intro-list li i {
  font-size: 14px;
  padding-right: 5px;
}
.vision-text {
  font-weight: 600;
  color: #333;
  font-size: 21px;
  padding-bottom: 9px;
}
.mission-list {
  padding-left: 20px;
  margin: 0;
}
.mission-list li {
  padding-bottom: 12px;
  padding-left: 0px;
}
.achieve li {
  padding-bottom: 8px;
  padding-left: 0px;
}
.achieve {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}
.text-anime-style-3.fontsize {
  font-weight: 500;
  font-size: 22px;
}
.home-transportation-body.titlebold b {
  display: block;
  margin-bottom: 10px;
}
.roman-list {
    padding-left: 15px;
  }
.table.table-bordered.table-striped.profile-img tbody tr td img {
  width: 91px;
  height: 91px;
  object-fit: cover;
  border-radius: 5px;
}
.ext-width {
  width: 80px;
}
.contact-width {
  width: 110px;
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1304px;
  }
}











/* ===== End of custom.css ===== */
/* home allied office */
.gallery-block .inner-box .lower-content h5 a:hover i {
    padding-left: 6px;
  }
  .gallery-block .inner-box .lower-content h5 a i {
    transition: 0.4s all linear;
  }
  .gallery-block.mt-1 {
    margin-bottom: 14px !important;
  }
  .gallery-block{
    /*! position:relative; */
    margin-bottom:30px;
  }
  
  .gallery-block .inner-box{
    position:relative;
    margin-right: 12px;
    margin-left: 12px;
  }
  
  .gallery-block .inner-box .image-box{
    position:relative;
    margin-bottom:0px;
  }
  
  .gallery-block .inner-box .image-box img{
    position:relative;
    width:100%;
    display:block;
  }
  
  .gallery-block .inner-box .image-box .overlay-box{
    position:absolute;
    left:20px;
    top:20px;
    right:20px;
    bottom:20px;
    color:#ffffff;
    text-align:center;
    background-color:#54c9f075;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease,-webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
  
  .gallery-block .inner-box:hover .overlay-box{
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
  
  .gallery-block .inner-box .overlay-inner{
    position:absolute;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
    display:table;
    vertical-align:middle;
    padding:10px 0px;
  }
  
  .gallery-block .inner-box .overlay-inner .content{
    position:relative;
    display:table-cell;
    vertical-align:middle;
  }
  
  .gallery-block .inner-box .image-box .overlay-box .icon{
    position:relative;
    width:31px;
    height:31px;
    color:#ffffff;
    line-height:31px;
    font-size:16px;
    text-align:center;
    border-radius:0px;
    font-weight:700;
    margin:0px 4px;
    display:inline-block;
    background-color:#222222;
    -webkit-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    -moz-transition:all 300ms ease;
    transition:all 300ms ease;
  }
  
  .gallery-block .inner-box .image-box .overlay-box .icon:hover{
    background-color:#ffffff;
    color:#54c9f0;
  }
  
  .gallery-block .inner-box .lower-content{
   position: relative;
  margin-right: 30px;
  margin-top: -40px;
  background-color: #ffffff;
  padding: 16px 17px 16px 17px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
  z-index: 1;
  }
  figure.image-box.faq_img.img-dpdp {
    margin-top: 0px;
    margin-left: 0px;
  }
  
  .gallery-block .inner-box .lower-content .title{
   position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #3A2284;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  }
  
  .gallery-block .inner-box .lower-content h5{
    margin-top:8px;
    text-transform:uppercase;
  }
  
  .gallery-block .inner-box .lower-content h5 a{
    position:relative;
    color:#6c4ea7;
    -webkit-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    -moz-transition:all 300ms ease;
    transition:all 300ms ease;
    font-weight: 700;
      font-size: 15PX;
      text-transform: capitalize;
  }
  
  .gallery-block .inner-box .lower-content h5 a:hover{
    color:#6c4ea7cc;
  }
  
  .gallery-block.style-two .inner-box .lower-content{
    margin:0px;
    background-color:#f5f5f5;
    box-shadow:inherit;
  }
  .faq_img {
    padding: 15px;
    z-index: 1;
    position: relative;
    margin-top: 25px;
    height: auto;
    margin-left: 25px;
  }
  .faq_img::after {
    position: absolute;
    content: "";
    background: #256bb2;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    border-radius: 10px;
    z-index: -1;
  }
  .faq_img::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 150px;
    bottom: 0;
    right: 0;
    z-index: -1;
    border-bottom: 4px solid #f05523;
    border-right: 4px solid #f05523;
    border-radius: 0px 0px 10px 0px;
  }
  .faq_img img {
    border-radius: 10px;
  }

  .info-text h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .chief-title h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #101010;
    padding: 0;
    margin-bottom: 6px;
  }
  .chief-title b {
    font-size: 20px;
    font-weight: 600;
  }
  .roman-list li {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.6em;
    list-style: lower-roman;
  }
  .lower-alpha li {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.6em;
    list-style: lower-alpha;
  }
  .lower-alpha {
    margin: 0;
    padding-left: 15px;
  }

  .info-text h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .chief-title h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #101010;
    padding: 0;
    margin-bottom: 6px;
  }
  .chief-title b {
    font-size: 20px;
    font-weight: 600;
  }
  .roman-list li {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.6em;
    list-style: lower-roman;
  }
  .lower-alpha li {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.6em;
    list-style: lower-alpha;
  }
  .lower-alpha {
    margin: 0;
    padding-left: 15px;
  }

  /* MMD Side Navbar css  */
.mmd-sidebar {
    background-color: #f4f4f4;
    border-radius: 0.375rem;
    border-left: 10px solid #0080d7;
    position: relative;
}


.mmd-sidebar h5 {
    font-weight: 700;
}

.important-links ul {
    list-style: none;
}

.important-links i {
    color: #0080d7;

}

.important-links ul li a {
    width: 100%;
    display: inline-block;
    padding: 6px 15px;
    font-size: 16px;
}

.important-links ul li a:hover {
    background: #f2f8fb;
    width: 100%;
    display: inline-block;
    padding: 6px 15px;
}

.feedback-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feedback-header {
    background: #003366;
    color: white;
    padding: 11px 6px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    text-align: center;
}



/* gallery timeline */
.timeline {
    margin-top: 20px;
    position: relative;

}

.timeline:before {
     position: absolute;
    content: '';
    width: 4px;
    height: calc(100% + 36px);
    background: rgb(138, 145, 150);
    background: -moz-linear-gradient(left, rgba(138, 145, 150, 1) 0%, rgba(122, 130, 136, 1) 60%, rgba(98, 105, 109, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(138, 145, 150, 1) 0%, rgba(122, 130, 136, 1) 60%, rgba(98, 105, 109, 1) 100%);
    background: linear-gradient(to right, rgba(138, 145, 150, 1) 0%, rgba(122, 130, 136, 1) 60%, rgba(98, 105, 109, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8a9196', endColorstr='#62696d', GradientType=1);
    left: 29px;
    top: 5px;
    border-radius: 4px;
}

.timeline-month {
    position: relative;
    padding: 4px 15px 4px 35px;
    background-color: #256bb2;
    display: inline-block;
    width: auto;
    border-radius: 40px;
    border: 1px solid #17191B;
    border-right-color: black;
    margin-bottom: 30px;
    color: #fff;
}

.timeline-month span {
    position: absolute;
    top: -1px;
    left: calc(100% - 10px);
    z-index: -1;
    white-space: nowrap;
    display: inline-block;
    background-color: #111;
    padding: 4px 10px 4px 20px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border: 1px solid black;
    box-sizing: border-box;
}

.timeline-month:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: rgb(138, 145, 150);
    background: -moz-linear-gradient(top, rgba(37, 107, 178) 0%, rgba(37, 107, 178) 60%, rgba(37, 107, 178) 100%);
    background: -webkit-linear-gradient(top, rgba(37, 107, 178) 0%, rgba(37, 107, 178) 60%, rgba(37, 107, 178) 100%);
    background: linear-gradient(to bottom, rgba(37, 107, 178) 0%, rgba(37, 107, 178) 60%, rgba(37, 107, 178) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8a9196', endColorstr='#70787d', GradientType=0);
    border-radius: 100%;
    border: 1px solid #17191B;
    left: 5px;
}

.timeline-section {
    padding-left: 35px;
    display: block;
    position: relative;
    margin-bottom: 30px;
}

.timeline-date {
    margin-bottom: 15px;
    padding: 2px 15px;
    background: linear-gradient(#74cae3, #5bc0de 60%, #4ab9db);
    position: relative;
    display: inline-block;
    border-radius: 20px;
    border: 1px solid #17191B;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.timeline-section:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #256bb2;
    top: 12px;
    left: 20px;
}

.timeline-section:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(to bottom, rgba(138, 145, 150, 1) 0%, rgba(122, 130, 136, 1) 60%, rgba(112, 120, 125, 1) 100%);
    top: 7px;
    left: 11px;
    border: 1px solid #17191B;
    border-radius: 100%;
}

.timeline-section .col-sm-4 {
    margin-bottom: 15px;
}

.timeline-box {
    position: relative;
    background-color: #f6f6f6;
    border-radius: 15px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border: 1px solid #17191B;
    transition: all 0.3s ease;
    overflow: hidden;
}
.timeline-box h5, .timeline-box p {
    color: #333;
}
.timeline-box h5 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/* hod css  */
.mmd-hod {
    padding: 34px;
    background: #fff;
    border-radius: 15px;
    border: 3px solid #8B70DB;
}
.mmd-hod-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.mmd-hod-details .first-td-mmd h2 {
    font-size: 16px;
    color: #656565;
}

.mmd-hod-details .second-td-mmd h3 {
    font-size: 16px;
}


.feedback-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feedback-header {
    background: #003366;
    color: white;
    padding: 1.5rem;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    text-align: center;
}

.feedback-section h5 {
    margin-top: 2rem;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 0.5rem;
    color: #003366;
}

/* MMD Side Navbar css  */
.mmd-sidebar {
    background-color: #f4f4f4;
    border-radius: 0.375rem;
    border-left: 10px solid #0080d7;
    position: relative;
}


.mmd-sidebar h5 {
    font-weight: 700;
}

.important-links ul {
    list-style: none;
}

.important-links i {
    color: #0080d7;

}

.important-links ul li a {
    width: 100%;
    display: inline-block;
    padding: 6px 15px;
}

.important-links ul li a:hover {
    background: #f2f8fb;
    width: 100%;
    display: inline-block;
    padding: 6px 15px;
}

.marquee-list li {
  position: relative;
  border-bottom: 1px solid #33333369;
  padding: 11px 8px;
}
.marquee-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.marquee-list li::before {
  content: '';
  display: inline-block;
  background: url("../assets/img/logo/icon1.png");
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: bottom;
}
.marquee-list li a {
  margin-left: 11px;
}

.news-ticker {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border: 1px solid #ccc;
  background: #fff;
  position: relative;
  border-radius: 5px;
}

.ticker-content {
  display: flex;
  flex-direction: column;
  animation: scroll-up 6s linear infinite;
}

.ticker-item {
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

/* Scroll animation */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Pause on hover */
.news-ticker.paused .ticker-content {
  animation-play-state: paused;
}
.news-ticker p {
  font-size: 13px;
  border-radius: 5px;
  background-color: #eeeeee;
  font-weight: 600;
  padding: 10px;
  position: relative;
  z-index: 2;
}
.marquee-list li a:hover {
  color: #0800ff;
}

.our-goals-item .counter-icon img {
  transition: transform 0.6s ease-in-out;
}
.our-goals-item:hover .counter-icon img {
  transform: scale(1.1);
}

/*New css add 30-05-2025*/
.social-left ul li span {
  text-align: right;
}
.nav-link.rulesbtn.active {
  background-color: #256bb2;
}
.nav-link.rulesbtn {
  border: 1px solid #256bb2;
  font-size: 1.1rem !important;
  letter-spacing: -0.5px;
  border-radius: 0.375rem;
  transition: 0.4s all linear;
}
.nav-link.rulesbtn:hover {
  background-color: #2f87e0;
  color: #fff;
}
.nav-link.rulesbtn:hover {
  background-color: #2f87e0;
  color: #fff;
  border: 1px solid #2f87e0;
}
.tab-content.rulesbg {
  background-color: #fff;
  box-shadow: 1px 1px 3px #e9e9e9;
  padding: 1rem;
}

.pt1 {
  padding: 40px 0px !important;
}
.title.watch-video {
  display: none;
}
.section-titles.line h2 {
  font-size: 26px;
}
.loginlinks.search-engine {
  text-transform: capitalize;
  background-image: linear-gradient( -225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100% );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
 font-size: 16px;
  font-weight: 600;
}
.loginlinks.search-engine i {
  font-size: 18px;
}
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.loginlinks.search-engine i {
  font-size: 15px;
}
/*05-06-2026 css today*/
.image-text {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
    }

    .image-text img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .image-text:hover img {
      transform: scale(1.05);
    }

    .hover-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(37, 107, 178, 0.67), transparent);
  padding: 2rem 1.5rem;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
   display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
       padding: 6px 6px;
    }

    .image-text:hover .hover-image {
      opacity: 1;
      transform: translateY(0);
    }
   .image-text:hover p {
  color: #fff;
}
.help-title {
  border: 1px solid #ca0404;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgb(239, 109, 26);
  border-left: 6px solid #ca0404;
  font-size: 21px !important;
  padding-left: 9px;
  padding: 5px 0px 5px 10px;
  margin: 0;
  border-radius: 4px;
}
.disclaimer-bg {
  background-color: #f6f6f6;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 15px 15px;
}
.disclaimer-title h3 {
  font-size: 22px;
  font-weight: 500;
}
.disclaimer-title h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 31px;
}
.disclaimer-address ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.disclaimer-address.mt-4 {
  max-width: 722px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.disclaimer-address ul li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6em;
}
.disclaimer-address ul li a {
  color: blue;
}
.list-dist {
  list-style: square;
}
.unwind-wrapper {
  overflow: hidden;
  display: block;
  width: 100%;
}

.unwind-img {
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.unwind-img.animate {
  transform: scaleX(1) !important;
  opacity: 1 !important;
}




@media screen and (max-width: 768px) {
 .section-titles.line h2 {
  font-size: 25px;
}
.news-content {
  text-align: unset;
  margin-left: 0px;
  margin-right: 2px;
  padding-top: 38px;
  font-size: 15px;
  padding-left: 6px;
}
 .state-min {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .state-title {
    padding: 10px 0;
  }
  .social-left {
  display: none;
}
.social-right {
  display: none;
}
.tophead_right {
  text-align: unset;
}
.title3 {
  font-size: 16px;
}
.field-mmd {
  height: auto;
  width: 100%;
}

#event-details #event-title {
  font-size: 16px !important;
  font-weight: 600;
  color: #e26b0a;
}
  .loginlinks.sitemap {
    display: none;
  }
}
.card-text.sails-text {
  text-align: justify;
  color: #000;
}
.card-title.mb-3 {
  position: relative;
}
.card-title.mb-3::before {
  position: absolute;
  content: "";
  bottom: -7px;
  left: 0;
  width: 102px;
  height: 2px;
  background-color: #ef6d1a;
}
.section-titles.line.mb-3.regional {
  font-size: 26px;
}
.table.table-bordered.table-hover.border-primary thead tr th {
  border-color: rgba(var(--bs-primary-rgb),var(--bs-border-opacity)) !important;
}
.table.table-bordered.table-hover.border-primary thead tr th {
  font-size: 15px;
}
.textbody-img img {
  width: 100%;
}
 .hover-scale {
    transition: transform 0.3s ease;
  }

  .hover-scale:hover {
    transform: scale(1.05);
  }
  .lowercase-list li {
  list-style: lower-alpha;
}
.justify-text {
  text-align: justify;
}
.hover-image.text-white p {
  font-size: 14px;
}

/*03-07-2025 latest backup*/
.minister-card {
  border-top: 5px solid #3f2878 !important;
  border-radius: 20px !important;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1) !important;
  padding: 21px !important;
}
.minister-details h2 {
  margin-top: 0px;
  color: #4729a3;
  margin-bottom: 10px;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 4px;
}
.minister-emailaddress b i {
  color: #B15416;
  margin-right: 6px;
  font-size: 18px;
}
.minister-emailaddress p {
  margin-left: 27px;
  margin-bottom: 0px;
  font-size: 17px;
}
.minister-details a {
  color: blue;
  font-size: 16px;
}
.minister-details a:hover {
  color: #b15416;
}
.modal-body.minister-text {
  text-align: justify;
}
.minister-img img {
  width: 100%;
}
.minister-details p {
  font-size: 17px;
}
.list-details {
  list-style: none;
}
.list-group.list-details li {
  margin-bottom: 18px;
}
.list-group.list-details li a {
  font-size: 15px;
  color: #000;
}
.phone-icon {
  color: #2788d5;
  animation: emailanimate 0.5s infinite;
}
.fa-solid.fa-phone.phone-icon {
    color:#2788d5;
    animation: emailanimate 0.5s infinite;
    border-radius: 50%;
  border: 1px solid #fff;
  padding: 10px;
  color: #fff;
}
@keyframes emailanimate {
    0%  {
        background-color:#2788d5;
    }
  50%   {background-color: #256bb2;}
  100% {background-color: red;}
}
.ringing-icon {
  animation: vibrate 1s infinite;
  color: #000;
  border-radius: 50%;
  border: 1px solid #333;
  padding: 9px 11px;
  font-size: 17px;
}

@keyframes vibrate {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(5deg); }
  40%  { transform: rotate(-5deg); }
  60%  { transform: rotate(4deg); }
  80%  { transform: rotate(-4deg); }
  100% { transform: rotate(0deg); }
}
.fax-icon {
  color: #000;
  border-radius: 50%;
  border: 1px solid #333;
  padding: 10px;
  font-size: 17px;
}
.appointment-form {
  background-color: #f7f7f7;
  padding: 51px 0px;
}
.official_contact.form-org {
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
.form-header {
  background-color: #6246ea;
  color: var(--light);
  padding: 25px;
  text-align: center;
  position: relative;
}
.decoration-1 {
  top: -60px;
  left: -60px;
}
.decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
.decoration-2 {
  bottom: -60px;
  right: -60px;
}
.decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
.form-header h1 {
  font-size: 32px;
}
.form-header p {
  font-size: 16px;
  opacity: 0.9;
}
.form-header {
  color: #fff;
  text-align: center;
}
.customize-form {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #c6c7c8;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s ease;
}
.form-control.customize-form:focus{
    border-color: #6246ea;
  outline: none;
  box-shadow: 0 0 0 3px rgba(98, 70, 234, 0.2);
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #626060;
}
.animated_button {
      position: relative;
      display: inline-block;
      overflow: hidden;
      letter-spacing: 2px;
      font-weight: 500;
      font-size: 18px;
      background: linear-gradient(90deg, #ba3428, #256bb2);
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
    }

    .animated_button span {
      position: absolute;
      display: block;
    }

    .animated_button span:nth-child(1) {
      top: 0;
      left: -100%;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, #fff);
      animation: btn-anim1 1s linear infinite;
    }

    .animated_button span:nth-child(2) {
      top: -100%;
      right: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(180deg, transparent, #fff);
      animation: btn-anim2 1s linear infinite;
      animation-delay: .25s;
    }

    .animated_button span:nth-child(3) {
      bottom: 0;
      right: -100%;
      width: 100%;
      height: 2px;
      background: linear-gradient(270deg, transparent, #fff);
      animation: btn-anim3 1s linear infinite;
      animation-delay: .5s;
    }

    .animated_button span:nth-child(4) {
      bottom: -100%;
      left: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(360deg, transparent, #fff);
      animation: btn-anim4 1s linear infinite;
      animation-delay: .75s;
    }

    @keyframes btn-anim1 {
      0% { left: -100%; } 50%, 100% { left: 100%; }
    }

    @keyframes btn-anim2 {
      0% { top: -100%; } 50%, 100% { top: 100%; }
    }

    @keyframes btn-anim3 {
      0% { right: -100%; } 50%, 100% { right: 100%; }
    }

    @keyframes btn-anim4 {
      0% { bottom: -100%; } 50%, 100% { bottom: 100%; }
    }
    .animated_button:hover{
        color: #fff;
    }
    
    .section-heading {
  border-bottom: 4px solid #109af7;
  border-top: 4px solid #000;
  display: inline-block;
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
  margin-top: 0;
  padding: 5px 0;
}
h3.section-subheading {
  margin-bottom: 51px;
  margin-top: 10px;
  text-transform: none;
  font-size: 18px;
  font-weight: 400;
}
.profile-details.textjustify {
  text-align: justify;
}
.view-details {
  list-style: none;
  margin: 0;
  padding: 0;
}
.view-details li i {
  background-color: #fff;
  color: #333;
  padding: 8px;
  border-radius: 50%;
  border: 1px solid #33333396;
}
.view-details li {
  margin-bottom: 10px;
  border-bottom: 1px solid #33333338;
  padding-bottom: 6px;
}
.view-details li:last-child {
  border-bottom: none;
}
.button.link-about {
  overflow: hidden;
  display: inline-block;
  line-height: 1.4;
  border-radius: 35px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  user-select: none;
  transition: 250ms all ease-in-out;
  text-transform: uppercase;
  text-decoration: none !important;
  position: relative;
  z-index: 1;
  padding: 16px 70px 16px 35px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: transparent;
  outline: none !important;
  border: 1px solid #256bb2;
}

.button.link-about .button-text {
  position: relative;
  z-index: 2;
  color: #000;
  transition: .3s ease-out all;
}

.button.link-about:before {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(100%);
  transition: .3s ease-out all;
}

.button.link-about:hover .button-text {
  color: #ffffff;
}

.button.link-about:hover:before {
  transform: translateX(0);
}

.button-icon {
  position: absolute;
  right: -1px;
  top: -1px;
  bottom: 0;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  color: #ffffff;
  border-radius: 50%;
  background-color: #256bb2;
}
.button.link-about::before, .button-icon {
  background-color: #256bb2;
}


/*--------------------textile csss -----------------*/
.dropdown-menu li .dropdown-item {
  color: red;
  padding: 15px 15px 13px 25px;
  line-height: 1.4;
  font-weight: 500;
  color: #5d5d5d;
  background: var(--thm-white);
  text-transform: capitalize;
  transition: all .3s ease-in-out;
}
.dropdown-menu li{
  border-bottom: 1px solid rgba(0,0,0,.06);
}
 .sidebar {
        width: 100%;
    }
    .sidebar .nav-link {
        color: #fff;
        padding: 11px 4px 11px 6px;
        font-weight: 500;
    }
    .sidebar .nav-link:hover {
        background-color: #FB6818;
        color: #fff;
    }
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
    .submenu {
        background-color: #191970;
    }
    .submenu .nav-link {
        padding-left: 6px;
        border-bottom: 1px solid #ffffff29;
    }
    .submenu .submenu {
        background-color: #1919704d;
    }
    .submenu .submenu .nav-link {
        padding-left: 51px;
    }
    /* Mobile/Tablet */
    @media (max-width: 991px) {
        .sidebar {
            position: fixed;
            top: 0;
            left: -260px;
            width: 250px;
            height: 100%;
            transition: all 0.3s ease-in-out;
            z-index: 1050;
        }
        .sidebar.active {
            left: 0;
        }
        .sidebar .btn-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: white;
            border-radius: 50%;
            padding: 5px;
        }
    }
.bg-background {
  background-color: #2f72a7;
}
.sidebar .nav-item {
  border-bottom: 1px solid #ffffff6e;
  background-image: linear-gradient(to bottom, #465968, #445766);
}
.sidebar .nav-link i {
  font-size: 14px;
  margin-right: 4px;
}
.card.tenders {
  border-bottom-left-radius: 27px;
  border-bottom-right-radius: 27px;
  border-top: 4px solid #0878bb;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  min-height: 412px;
}
.card-title.headings:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 4px;
  background: #3bc053;
  top: 47px;
  left: calc(50% - 20px);
}
.card-title.headings:before {
 content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  top: 49px;
  left: calc(50% - 60px);
}
.card-title.headings {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #124265;
  text-align: center;
  padding-bottom: 11px;
}
.news-content {
  list-style: none;
  padding: 0;
  margin: 0;
}
.more_class {
  color: #992600;
  font-size: 14px;
  padding-right: -22px;
  margin-top: 6px;
  font-weight: 800;
  margin: 0px;
}

.modules-boxes {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
}
.event-meta {
  display: flex;
  gap: 15px;
  margin: 0;
}
.event-meta i {
  color: #191970;
  margin-right: 5px;
  font-size: 14px;
}
.event-meta span {
  color: #333333c7;
}
.events-more {
  color: #191970;
  transition: all 300ms ease;
  font-weight: 700;
  font-size: 15PX;
  text-transform: capitalize;
}
.events-more:hover i {
 padding-left: 6px;
}
.events-more i {
 transition: 0.4s all linear;
}
.social-sec {
  background-color: #254260;;
  padding: 50px 0px;
}
.social-body {
  background-color: #fff;
  padding: 15px;
}
.social-heading h3 {
  font-size: 21px;
  font-weight: 500;
}
.card.text-bg-light.mb-3.mt2 {
  margin-left: 6px;
  margin-right: 6px;
}
 .director-section {
      background: linear-gradient(to right, #f9fbfd, #eef4ff);
      padding: 70px 20px;
    }
    
    
    
     .director-img {
      border-radius: 15px;
      background-color: #fff;
  padding: 11px;
    }
    
    .director-img img {
      max-width: 100%;
      height: auto;
      box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
      transition: 0.3s;
      object-fit: cover;
}
    }
    
    .btn-custom {
      background: #0d6efd;
      color: #fff;
      border-radius: 10px;
      padding: 10px 20px;
      transition: 0.3s;
    }
    .btn-custom:hover {
      background: #0b5ed7;
      transform: translateX(5px);
    }
    .section-title {
      font-size: 28px;
      font-weight: 700;
      color: #0d3559;
    }
    .highlight {
      color: #0d6efd;
    }
    .text-justify {
      text-align: justify;
      line-height: 1.7;
    }

.hover-image h2 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.iframe-border {
  border-radius: 5px;
  border: 1px solid #ffffff8a !important;
  padding: 4px;
}
.contact-details {
  list-style: none;
  padding: 0;
}
.who-heading {
  color: midnightblue;
}
.nautical-card {
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.75rem;
  color: #000;
  background-color: #ffffff;
}
.nautical-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.mobile-no {
  width: 208px;
}
.skip-menu li:first-child {
  border-right: 1px solid #c2c0c1;
}
.skip-menu li a {
  font-size: 0.68em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0px 10px;
  height: 35px;
  line-height: 15px;
  display: flex;
  align-items: center;
}
.skip-menu li a:hover{
    background-color: #d8d8d8;
}
.skip-right li {
  border-right: 1px solid #c2c0c1;
}
.skip-right li a {
  padding: 0px 11px;
  height: 35px;
  line-height: 15px;
  display: flex;
  align-items: center;
}
.skip-right li a:hover{
    background-color: #d8d8d8;
}
.profile-wrapper {
      margin:0px auto;
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0px 6px 25px rgba(0,0,0,0.12);
      border: 1px solid #3333330f;
    }

 .profile-left {
  position: relative;
  overflow: hidden;
  background: #002a5c;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.profile-left::before, .profile-left::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: floatBubbles 12s linear infinite;
}

.profile-left::before {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -50px;
}

.profile-left::after {
  width: 200px;
  height: 200px;
  top: -80px;
  right: -80px;
  animation-delay: 6s;
}

@keyframes floatBubbles {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.1); }
  100% { transform: translateY(0) scale(1); }
}


    .profile-left img {
    width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border: 6px solid #fff;
  display: block;
  margin: 0 auto 25px auto;
    }

    .profile-left h3 {
      margin-bottom: 15px;
      font-weight: 700;
      color: #fff;
      font-size: 1.2rem;
    }

    .profile-left p {
      margin-bottom: 12px;
      font-size: 0.95rem;
      color: #fff;
    }

    .profile-left a {
      color: #c1c1c1;
      
    }

    .quick-facts {
      background: #ffffffcc;
      padding: 20px;
      border-radius: 15px;
      margin-top: 71px; /* Moved further down */
      text-align: left;
    }

    .quick-facts h6 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 25px;
      border-bottom: 2px solid #000;
      display: inline-block;
      padding-bottom: 4px;
      color: #000;
    }

    .quick-facts ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .quick-facts ul li {
      margin-bottom: 14px;
      font-size: 0.9rem;
    }

    .profile-right {
      padding: 40px 50px;
    }

    .section-titles.line {
   font-size: 1.1rem;
  font-weight: 600;
  color: #530986;
  margin-top: 25px;
  border-bottom: 1px solid #5309862e;
  padding-bottom: 7px;
    }

    .profile-right ul {
      padding-left: 20px;
    }

    .profile-right p, .profile-right li {
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .profile-right p {
      text-align: justify;
    }

    /* === Social Media Buttons === */
    .social-icons {
      margin-top: 30px;
      text-align: center;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      margin: 0 6px;
      border-radius: 50%;
      color: #fff;
      font-size: 1.2rem;
      transition: all 0.4s ease;
    }

    .social-icons a.facebook { background: #3b5998; }
    .social-icons a.twitter { background: #000000; }
    .social-icons a.linkedin { background: #0077b5; }
    .social-icons a.youtube { background: #ff0000; }

    .social-icons a:hover {
      transform: translateY(-6px) scale(1.1);
      box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    }

  

    .dg-title{
      font-family: 'Playfair Display', serif;
      letter-spacing:1px;
      color:#111;
      margin-bottom:0.75rem;
      font-size:1.05rem;
      text-transform:uppercase;
    }

    .dg-heading{
      font-family: 'Playfair Display', serif;
      font-size:1.6rem;
      margin-bottom:1.5rem;
      color:#0b2540;
    }

    .dg-content p{
      line-height:1.7;
      margin-bottom:1rem;
      font-size:1rem;
      text-align: justify;
    }

    .dg-sign{
      margin-top:1.5rem;
    }

    .dg-sign .name{
      font-weight:700;
      color:#0b2540;
      font-size:1.05rem;
    }

    .dg-sign .title{
      font-size:0.92rem;
      color:#555;
    }

    .badge-accent{
      background:linear-gradient(90deg,#ffd700, #ffdf5a);
      color:#000;
      font-weight:600;
      padding:0.4rem 0.75rem;
      border-radius:999px;
      font-size:0.8rem;
      margin-bottom:1rem;
      display:inline-block;
    }

    .fade-up{
      transform:translateY(10px);
      opacity:0;
      animation:fadeUp 700ms ease forwards;
    }
    .fade-up.delay-1{ animation-delay:100ms; }
    .fade-up.delay-2{ animation-delay:200ms; }

    @keyframes fadeUp{
      to{ transform:none; opacity:1; }
    }
.education-list {
  margin: 0;
  padding-left: 4px !important;
  list-style: none;
}
.badge-custom {
  background: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
}
.more-me {
  color: blue;
  text-decoration: underline;
}
.profile-down {
  padding: 11px 12px;
  border-radius: 8px;
}
.profile-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.profile-card:hover {
  transform: translateY(-5px);
}
.signature {
  margin-top: 25px;
  text-align: right;
  font-family: 'Georgia',serif;
  font-style: italic;
  color: #004080;
}
.signature small {
  color: #004080;
}
.dg-card {
  background: rgba(255,255,255,0.95);
  border-radius: 1rem;
  box-shadow: 0 6px 28px rgba(34,34,34,0.08);
  padding: 2.5rem;
  border-top: 6px solid #191970;
}
.card-plain {
     border:0;
     border-radius:12px;
     box-shadow:0 6px 20px rgba(0,0,0,0.06);
   }
   .section-titles h3 {
  font-weight: 600;
}
.small-muted {
  color: #6c757d;
  font-size: .95rem;
}
.division-card {
  border-radius: 15px;
  background: #fff;
  transition: all 0.4s ease;
}
.division-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.icon-circle {
  width: 100px;
  height: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.card.h-100.text-bg-light.mb-3.mt2 {
  box-shadow: unset;
}
.csrti-card {
  border-top: 5px solid #3f2878 !important;
  border-radius: 20px !important;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1) !important;
  padding: 22px !important;
}
 .sitemap-section {
      padding: 60px 0;
    }
    .sitemap-section h2 {
      font-weight: 600;
      color: #003366;
      margin-bottom: 30px;
      border-bottom: 3px solid #003366;
      display: inline-block;
      padding-bottom: 8px;
    }
    .sitemap-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      padding: 25px;
      transition: 0.3s;
    }
    .sitemap-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }
    .sitemap-list ul {
      list-style: none;
      padding-left: 20px;
    }
    .sitemap-list li {
      margin-bottom: 8px;
      position: relative;
    }
    .sitemap-list li::before {
      content: "›";
      position: absolute;
      left: -15px;
      color: #003366;
      font-weight: bold;
    }
    .sitemap-list a {
      text-decoration: none;
      color: #333;
      transition: color 0.2s;
    }
    .sitemap-list a:hover {
      color: #0056b3;
      text-decoration: underline;
    }
    .sub-list {
      margin-left: 25px;
    }





    /* Equal card height */
.card.tenders {
  height: 412px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Scrollable content container */
.marquee-container {
  height: 305px; /* Adjust for title + footer space */
  overflow: hidden;
  position: relative;
}

/* Marquee animation */
.marquee {
  list-style: none;
  margin: 0;
  padding: 0;
  animation: scroll-up 15s linear infinite;
}

.marquee li {
  margin-bottom: 10px;
}

/* Keyframes for upward scroll */
@keyframes scroll-up {
  0% { transform: translateY(20%); }
  100% { transform: translateY(-20%); }
}

/* Pause on hover */
.marquee-container:hover .marquee {
  animation-play-state: paused;
}

/* Basic typography */
.headings {
  text-align: center;
  font-weight: 700;
  color: #003366;
  padding-bottom: 5px;
}
.more_class {
  color: #b03a00;
  font-weight: 600;
  text-decoration: none;
}
.program-date {
  width: 104px !important;
}


/*Todat css 11-11-2025*/
.card.tenders.news-events {
  height: 411px;
  border-radius: unset;
  border-top: unset;
}
.card-body.news-body {
  border: 1px solid #fcbf098a;
}
.card-title.headings.news-bg {
  background-color: #284B63;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 6px 0px;
}
.card-title.headings.news-bg::after {
  background-color: unset;
  width: 120px;
  height: 1px;
  background: unset;
  top: 0;
  left: 0;
}
.director-details h4 {
  margin: 0px 0px 4px 0px;
  padding: 0px 0px;
  font-size: 19px;
  font-weight: 600;
  color: #000000;
  line-height: 20px;
}
.director-details b {
 font-size: 15px;
}
.director-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-unstyled.mb-0.director-details li {
  color: #000;
}
.scientist-profile h5 {
 color: #992600;
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
}
.scientist-profile ul li strong {
  line-height: 13px;
  font-size: 14px;
}
.Minister-section.pt1.bg-research {
  background-image: url('../assets/img/logo/reaserch-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.nav-link.photo-btn {
  -webkit-clip-path: polygon(6% 1%,100% 0,90% 100%,0% 100%);
  background-color: #fff !important;
  color: #333 !important;
  border: 1px solid transparent !important;
  font-size: 1rem !important;
  font-weight: bold;
}
.nav-link.photo-btn.active {
  background-color: #FB6818 !important;
  color: #fff !important;
}
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #003c50;
}

.title-line {
  width: 70px;
  height: 3px;
  background: #003c50;
}

.wwa-box {
  border-radius: 12px;
  overflow: hidden;
  background: #eaf6fb;
  height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 10px;
  box-shadow: 0 4px 0px rgb(0 0 0 / 32%) !important;
}

.wwa-top {
  padding: 22px 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.count {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 3px;
  color: #333;
}



/* Colors same as screenshot */
.bg-teal { background: #0c8a8b; }
.bg-blue-1 { background: #3f88e0; }
.bg-blue-2 { background: #162a6e; }
.bg-teal-2 { background: #0092a1; }
.bg-blue-3 { background: #0c5f9e; }
.wwa-bottom {
  padding-top: 17px;
}




/* SAME HEIGHT FOR BOTH BOXES */
.card-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  height: 500px;  /* SET SAME HEIGHT FOR BOTH */
  display: flex;
  flex-direction: column;
}

.bg-main {
  background: #0d2d6c !important;
}

/* SCROLL AREA INSIDE BOX */
.inner-scroll {
  overflow-y: auto;
  flex: 1;            /* Fills all remaining space */
  padding-right: 5px;
}

/* CUSTOM SCROLLBAR */
.inner-scroll::-webkit-scrollbar {
  width: 6px;
}
.inner-scroll::-webkit-scrollbar-thumb {
  background: #c6d4e6;
  border-radius: 10px;
}

/* LIST ITEMS */
.list-item,
.whats-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 12px 0;
}

.list-item:hover {
  color: #0a58ca;
}

/* TABS */
.nav-pills .nav-link.tenders {
  color: #0d2d6c;
  background-color: #ebeaea;
}
.nav-pills .nav-link.tenders.active {
 background: #0d2d6c !important;
  color: #fff !important;
  border-radius: 6px;
}
/* Same height for both columns */
.equal-box {
    height: 451px;          /* you can change height */
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Scrollable area inside the box */
.equal-box .scroll-area {
    flex: 1;                /* takes remaining height */
    overflow-y: auto;
    padding-right: 6px;
}

/* Optional scrollbar styling */
.equal-box .scroll-area::-webkit-scrollbar {
    width: 6px;
}
.equal-box .scroll-area::-webkit-scrollbar-thumb {
    background: #c6d4e6;
    border-radius: 10px;
}


/* Scientist Card Hover */
.scientist-card {
    transition: 0.3s ease-in-out;
  border-radius: unset;
  box-shadow: unset;
}

.scientist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
}

/* Desktop name font decrease */
.scientist-card h5 {
    font-size: 1.05rem;
}

/* Desktop image */
.scientist-img {
    width: 115px;
    height: 115px;
    object-fit: cover;
    border-radius: 8px;
}

/* Mobile view adjustments */
@media (max-width: 767px) {

    /* Mobile image -> full width */
    .scientist-img {
        width: 100%;
        height: auto;
        max-height: 260px;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Mobile name font smaller */
    .scientist-card h5 {
        font-size: 0.95rem;  /* reduced more for mobile */
    }
}


.former-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.former-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* Image box */
.former-img-box {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
}

/* Image settings */
.former-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* Zoom animation on hover */
.former-card:hover img {
    transform: scale(1.08);
}

/* Name styling */
.former-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #002147;
    margin-bottom: 5px;
}

/* Duration text */
.director-duration {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .former-img-box {
        height: auto;
    }
    .former-name {
        font-size: 0.95rem;
    }
}

.scroll-area.text-white.hide-scrollba {
  scrollbar-width: none !important;
}
@media (min-width: 992px) {
  .navbar-nav > li:last-child.dropdown:hover > .dropdown-menu {
    display: block;
    right: 0;
    left: auto; /* important */
  }
}
.reach-card{
    border-radius:12px;
    overflow:hidden;
    transition:0.3s;
    border:1px solid #e6e6e6;
}

.reach-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.reach-img{
    height:170px !important;
    width:100% !important;
    object-fit:cover;
}

.reach-title{
    font-weight:600;
    color:#0c3b47;
}

.reach-card p{
    font-size:15px;
    color:#555;
}
@media (max-width: 768px) {
    .director-img img {
        width: 100%;
        height: auto;
    }
}
/* Make image fully responsive */
.director-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile view: image full width on top */
@media (max-width: 767px) {
    .director-img {
        width: 100%;
    }
}


