/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #666666;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    /*font-style: italic;*/
    color: #121518;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #1877F2;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #096ced;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 100px;
    transition: background 1s;
    z-index: 9;
}

.back-to-top:hover {
    color: #fff;
    background: #f5e131;
}

.back-to-top i {
    padding-top: 10px;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 90px;
    background: #fcfafa;
}

.top-bar .logo {
    padding-top: 15px;
    text-align: right;
    overflow: hidden;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 55px;
}

.top-bar .logo-text {
    padding-top: 17px;
    text-align: left;
    overflow: hidden;
}

.top-bar .logo-text h1 {
    margin: 0;
    color: #1877F2;
    font-family: "Roboto";
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
}

.top-bar .logo-text h2 {
    margin: 0;
    color: #1877F2;
    font-family: "Roboto";
    font-style: normal;
    font-size: 15px;
    font-weight: 500;
}

.top-bar .logo-text h3 {
    margin: 0;
    color: #1877F2;
    font-family: "Roboto";
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
}


.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 90px;
    padding: 0 20px;
    text-align: center;
    border-left: 1px solid #f52b2b;
}

.top-bar .text h2 {
    color: #111;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 25px;
    margin: 0;
}

.top-bar .text p {
    color: #111;
    font-size: 13px;
    margin: 0;
}

.top-bar .social .btn-group {
    display: flex;
    height: 90px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social .btn-group a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    font-size: 22px;
    color: #111;
    border-right: 1px solid #f52b2b;
}

.top-bar .social .btn-group a:first-child {
    border-left: 1px solid #f52b2b;
}

.top-bar .social .btn-group a:hover {
    color: #1877F2;
    background: #fff;
}



@media (max-width: 991.98px) {
    .top-bar{
        height: 150px;
        align-items: center;
        text-align: center;
    }
    .top-bar .logo {
        text-align: center;
    }

    .top-bar .logo-text a h1,h2,h3{
        text-align: center;
    }
    
    .top-bar .top-bar-right {
        display: none;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    padding: 20px 0;
    transition: .3s;
    background-color: #1877F2;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    height: 100%;
    padding: 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    transition: none;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .dropdown-menu a:hover {
    color: #1877F2;
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #fff;
    border-radius: 0;
}

.nav-bar .btn:hover {
    background: #fff;
    color: #1877F2;
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 15px 60px;
    }
    
    .nav-bar.nav-sticky {
        padding: 10px 60px;
    }
    
    .nav-bar,
    .nav-bar .navbar {
        background: #1877F2 !important;
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 18px;
        text-transform: none;
    }
}

@media (max-width: 991.98px) {   
    .nav-bar,
    .nav-bar .navbar {
        padding: 3px 0;
        background: #1877F2 !important;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/**************************
    Slider section start
**************************/

.slider .owl-carousel .item {
  height: 500px;
}
.slider .owl-carousel .item img {
  height: 100%;
}

.image-slider .item {
  height: 125px;
}
.image-slider .item img {
  height: 100%;
}

@media (max-width: 767px) {
  .slider .owl-carousel .item {
    height: 250px;
  }
  .slider .owl-carousel .item img {
    height: 100%;
  }
}
.owl-prev, .owl-next {
  height: 60px;
  line-height: 60px;
  width: 20px;
  background: rgba(0, 0, 0, 0.3) !important;
  position: absolute;
  top: 50%;
  margin-top: -50px;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.owl-prev:focus,
.owl-next:focus {
  outline: none;
}

.owl-prev i,
.owl-next i {
  color: #fff;
  font-size: 16px;
}

.owl-prev {
  left: 0;
}

.owl-next {
  right: 0;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #1877F2;
}

.page-header h2 {
    position: relative;
    color: #121518;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #121518;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #121518;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #121518;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 1;
}

.section-header h2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    left: 0;
    top: 21px;
    background: transparent;
    z-index: -1;
}

.section-header h2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    left: 0;
    bottom: 20px;
    background: transparent;
    z-index: -1;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}

/*******************************/
/******** Top Feature CSS ******/
/*******************************/
.container .feature-top {
    position: relative;
    background: #a2bedb;
    margin-bottom: 45px;
    margin-top: 45px;
}

.feature-top .col-md-3 {
    border-right: 1px solid rgb(43,143,245);
    border-bottom: 1px solid rgb(43,143,245);
}

@media (max-width: 575.98px) {
    .feature-top .col-md-3:nth-child(1n) {
        border-right: none;
    }
    
    .feature-top .col-md-3:last-child {
        border-bottom: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .feature-top .col-md-3:nth-child(2n) {
        border-right: none;
    }
    
    .feature-top .col-md-3:nth-child(3n),
    .feature-top .col-md-3:nth-child(4n) {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    .feature-top .col-md-3 {
        border-bottom: none;
    }
    
    .feature-top .col-md-3:nth-child(4n) {
        border-right: none;
    }
}

.feature-top .feature-item {
    padding: 30px 0;
    text-align: center;
}

.feature-top .feature-item i {
    color: #1877F2;
    font-size: 35px;
    margin-bottom: 10px;
}

.feature-top .feature-item h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}

.feature-top .feature-item p {
    color: #fff;
    margin: 0;
    font-size: 18px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #1877F2;
}

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

.about .about-text p {
    font-size: 16px;
    text-align: justify;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid #1877F2;
    border-radius: 0;
    background: #1877F2;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #121518;
    background: #1877F2;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    background: #1877F2;
    margin-bottom: 30px;
}

.service .service-icon {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2aaaa;
}

.service .service-icon img {
    height: 200px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.service .service-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    color: #fff;
    background: #f2aaaa;
    transition: .5s;
}

.service .service-item:hover .service-icon i {
    margin-top: -15px;
}

.service .service-item h3 {
    margin: 0;
    padding: 25px 15px 15px 15px;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.service .service-item p {
    margin: 0;
    color: #fff;
    padding: 0 25px 25px 25px;
    font-size: 18px;
}

.service .service-item a.btn {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0;
    background: #1877F2;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #fff;
    background: #f2aaaa;
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature .feature-item {
    margin-bottom: 30px;
}

.feature .feature-icon {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1877F2;
}

.feature .feature-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    color: #fff;
    background: #83baf2;
    transition: .5s;
}

.feature .feature-item:hover .feature-icon i {
    margin-right: -15px;
}

.feature .feature-item h3 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
}

.feature .feature-item h3::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #1877F2;
}

.feature .feature-item p {
    margin: 0;
    font-size: 16px;
}

.feature .feature-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #1877F2;
}

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



/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .faqs-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #1877F2;
}

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

@media(max-width: 767.98px) {
    .faqs .faqs-img {
        margin-bottom: 30px;
        height: auto;
    }
}

.faqs .card {
    margin-bottom: 15px;
    padding-top: 15px;
    border: none;
    border-radius: 0;
    border-top: 1px solid #1877F2;
}

.faqs .card:last-child {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #1877F2;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    width: 100%;
    color: #121518;
    font-size: 18px;
    line-height: 40px;
}

.faqs .card-header a span {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    background: #1877F2;
    color: #fff;
    font-weight: 700;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #121518;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #121518;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-body {
    padding: 15px 0 0 0;
    font-size: 16px;
    border: none;
    background: #ffffff;
}

.faqs a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid #1877F2;
    border-radius: 0;
    background: #1877F2;
    transition: .3s;
}

.faqs a.btn:hover {
    color: #1877F2;
    background: #fff;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    padding: 30px;
    background: #1877F2;
    overflow: hidden;
}

.testimonial .testimonial-item i {
    position: absolute;
    top: 0;
    right: 0;
    color: #333333;
    font-size: 60px;
    transform: rotate(45deg);
    z-index: 1;
}

.testimonial .testimonial-item .col-12 {
    margin-top: 20px;
}

.testimonial .testimonial-item img {
    width: 100%;
}

.testimonial .testimonial-item h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial .testimonial-item p {
    color: #999999;
    font-size: 16px;
    margin: 0;
}

.testimonial .owl-nav,
.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1877F2;
}

.testimonial .owl-dot.active {
    background: #121518;
}



/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
    background: #ffffff;
    overflow: hidden;
}

.blog .blog-page .blog-item {
    margin: 0 0 30px 0;
}

.blog .blog-item img {
    width: 100%;
    margin-bottom: 25px;
}

.blog .blog-item h3 {
    font-size: 25px;
    font-weight: 600;
}

.blog .blog-item .meta {
    padding: 0 0 15px 0;
}

.blog .blog-item .meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #999999;
}

.blog .blog-item .meta i {
    margin: 0 2px 0 10px;
}

.blog .blog-item .meta i:first-child {
    margin-left: 0;
}

.blog .blog-item p {
    font-size: 16px;
}

.blog .blog-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1877F2;
    transition: .3s;
}

.blog .blog-item a.btn i {
    margin-left: 10px;
}

.blog .blog-item a.btn:hover {
    color: #121518;
}

.blog .owl-nav,
.blog .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.blog .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1877F2;
}

.blog .owl-dot.active {
    background: #121518;
}

.blog .pagination .page-link {
    color: #121518;
    border-radius: 0;
    border-color: #1877F2;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #121518;
    background: #1877F2;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/*********** Gallery CSS **********/
/*******************************/
.gallery {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.gallery .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.gallery .blog-item {
    position: relative;
    margin: 0 15px;
    background: #ffffff;
    overflow: hidden;
}

.gallery .blog-page .blog-item {
    margin: 0 0 30px 0;
}

.gallery .blog-item img {
    width: 100%;
    margin-bottom: 25px;
}


.gallery .blog-item .meta {
    padding: 0 0 15px 0;
}

.gallery .blog-item .meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #999999;
}

.gallery .blog-item .meta i {
    margin: 0 2px 0 10px;
}

.gallery .blog-item .meta i:first-child {
    margin-left: 0;
}

.gallery .blog-item p {
    font-size: 16px;
}

.gallery .blog-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1877F2;
    transition: .3s;
}

.gallery .blog-item a.btn i {
    margin-left: 10px;
}

.gallery .blog-item a.btn:hover {
    color: #121518;
}

.gallery .owl-nav,
.gallery .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.gallery .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1877F2;
}

.gallery .owl-dot.active {
    background: #121518;
}

.gallery .pagination .page-link {
    color: #121518;
    border-radius: 0;
    border-color: #1877F2;
}

.gallery .pagination .page-link:hover,
.gallery .pagination .page-item.active .page-link {
    color: #121518;
    background: #1877F2;
}

.gallery .pagination .disabled .page-link {
    color: #999999;
}

/*******************************/
/********* Timeline CSS ********/
/*******************************/
.timeline {
    position: relative;
    padding: 45px 0;
}

.timeline .timeline-start {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.timeline .timeline-container {
    padding: 0 15px;
    position: relative;
    background: inherit;
    width: 50%;
    margin-top: -5px;
}

.timeline .timeline-container.left {
    left: 0;
}

.timeline .timeline-container.right {
    left: 50%;
}

.timeline .timeline-container::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    background: #1877F2;
    z-index: 1;
}

.timeline .timeline-container.left::before {
    top: 0;
    right: 0;
}

.timeline .timeline-container.right::before {
    bottom: 0;
    left: 0;
}

.timeline .timeline-container::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    background: #1877F2;
    z-index: 1;
}

.timeline .timeline-container.left::after {
    bottom: 0;
    right: 0;
}

.timeline .timeline-container.right::after {
    top: 0;
    left: 0;
}

.timeline .timeline-container:first-child::before,
.timeline .timeline-container:last-child::before {
    display: none;
}

.timeline .timeline-container .timeline-content {
    padding: 30px;
    background: #121518;
    position: relative;
    border-right: 5px solid #1877F2;
}

.timeline .timeline-container.right .timeline-content {
    border-left: 5px solid #1877F2;
}

.timeline .timeline-container .timeline-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #1877F2;
}

.timeline .timeline-container .timeline-content h2 span {
    display: inline-block;
    margin-right: 15px;
    padding: 5px 10px;
    color: #121518;
    background: #1877F2;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}

.timeline .timeline-container .timeline-content p {
    margin: 0;
    font-size: 16px;
    color: #999999;
}

@media (max-width: 767.98px) {
    .timeline .timeline-container {
        width: 100%;
        margin-top: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 30px;
    }
    
    .timeline .timeline-container:last-child {
        padding-bottom: 0;
    }
    
    .timeline .timeline-container.right {
        left: 0%;
    }

    .timeline .timeline-container.left::after, 
    .timeline .timeline-container.right::after,
    .timeline .timeline-container.left::before,
    .timeline .timeline-container.right::before {
        width: 5px;
        height: 35px;
        left: 15px;
    }
    
    .timeline .timeline-container.left .timeline-content,
    .timeline .timeline-container.right .timeline-content {
        border-left: 5px solid #1877F2;
        border-right: none;
    }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #1877F2;
    border: 2px solid #1877F2;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #fff;
    color: #1877F2;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #121518;
    background: #1877F2;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: .5s;
}

.portfolio .portfolio-item:hover {
    margin-top: -10px;
}

.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
}

.portfolio img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.portfolio figure {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .0), rgba(0, 0, 0, 1) 90%);
}

.portfolio figure p {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
}

.portfolio figure p::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ffffff;
}

/*.portfolio figure a {
    font-family: 'EB Garamond', serif;
    color: #1877F2;
    font-size: 25px;
    font-weight: 600;
    font-style: italic;
    transition: .3s;
}

.portfolio figure a:hover {
    text-decoration: none;
    color: #ffffff;
}*/

.portfolio figure span {
    position: relative;
    color: #fff;
    font-size: 16px;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    padding: 30px;
    background: #121518;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 2px solid #1877F2;
}

.contact .contact-item i {
    display: inline-block;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #1877F2;
    border: 2px solid #1877F2;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 15px;
}

.contact .contact-text h2 {
    color: #1877F2;
    font-size: 25px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #999999;
    font-size: 16px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    margin-bottom: 30px;
}

.contact .contact-form input {
    height: 60px;
    border-radius: 0;
    border-width: 2px;
    border-color: #121518;
}

.contact .contact-form textarea {
    height: 190px;
    border-radius: 0;
    border-width: 2px;
    border-color: #121518;
}

.contact .contact-form .btn {
    padding: 16px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1877F2;
    background: #121518;
    border: 2px solid #1877F2;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #121518;
    background: #1877F2;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single img {
    margin: 10px 0 15px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********** Newsletter *********/
/*******************************/
.newsletter {
    position: relative;
    max-width: 900px;
    margin: 45px auto -140px auto;
    padding: 30px 15px;
    background: #28f3fa;
    z-index: 1;
}

.newsletter .section-header {
    margin-bottom: 25px;
}


.newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #1877F2;
    background: #121518;
    border-radius: 0;
    border: 2px solid #1877F2;
    transition: .3s;
}

.newsletter .btn:hover {
    color: #121518;
    background: #1877F2;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 30px;
    background: #1877F2;
    color: #ffffff;
}
.footer-about{
    text-align: justify;
}
.footer .footer-about,
.footer .footer-link,
.footer .footer-contact {
    position: relative;
    margin-bottom: 45px;
    color: #fff;
}

.footer .footer-about h2,
.footer .footer-link h2,
.footer .footer-contact h2{
    position: relative;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    transition: .3s;
}


.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer-link .link-size{
    font-size: 14px; 
}

.footer .footer-link a:hover {
    color: #ffffff;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #fff;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #111;
}

/*.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    background: #000001;
    font-size: 0;
    text-align: center;
}

.footer .footer-menu .f-menu a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu .f-menu a:hover {
    color: #1877F2;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}*/


.footer .copyright {
    padding: 20px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #111;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #111;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


.videoss {
    position: relative;
    padding: 45px 0;
}

.video-frame{
    position: relative;
    padding: 10px;
    background: #1877F2;
    border-radius: 20px;
}


video {
  width: 100% !important;
  height: auto !important;
}

main {
  background: white;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem;
}

.video-playlist {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 10px;
}

.video-item:hover {
    background-color: #e6e6e6;
}



/****************************************/
/***** Official Image Tab CSS **********/
/**************************************/

.speaker-profile-content{
    margin-top:15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    line-height: 30px;
    box-shadow: 1px 1px 1px 1px #90949c;
    background: #f5c9cf;
}
.speaker-image{
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 80%;
}


.speaker-image img{
    width: auto;
    height: 100px;
}


.speaker-info{
    padding-top: 30px;
}


.speaker-info h3{
    font-size:15px;
    font-weight:700;
}

.speaker-info span{
    font-size:14px;
    display:block;
    line-height: 20px
}

@media (max-width:767px){
    .speaker-profile{
        margin-top:15px
    }
    .speaker-info{
        text-align: center;
    }
    .speaker-image img{
        width:30%;
    }
    
}

@media (min-width: 1960px){
    .speaker-info span{
        font-size:20px;
        display:block;
        line-height: 35px
    }
    .speaker-info{
        text-align: center;
    }
    .speaker-image img{
        width:90%;
    }
}


.profile-section h3 {
  font-size: 18px;
  font-weight: 700;
}

.profile-info-div {
  background-color: var(--navbar) !important;
  padding: 15px 10px;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .profile-info-div {
    text-align: center;
  }

  .profile-section h3 {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .profile-image {
    height: 88px;
  }
  .profile-image img {
    height: 100%;
  }
}


.header {
  background: #3332af;
  padding: 12px 15px;
  border-left: 15px solid #1877F2;
}

.header h2{
  color: #fff;
  font-size: 24px;
}


.header1 {
  background: #f7f7f7;
  padding: 12px 15px;
  border-left: 10px solid #1877F2;
}

.header1 h5 a{
  color: #000;
}

.header1:hover{
  background-color: #1877F2;
  color: #fff;
}

.header1.active{
    color: #fff;
    background-color: #1877F2;
}

.link {
  color: #222;
}
.link:hover {
  color: var(--branding);
  text-decoration: none;
}


.news-article img {
  height: 50px;
}


.scrolling-box1 {
  height: 422px;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.scrolling-box1::-webkit-scrollbar {
  width: 10px;
}

.scrolling-box1::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
.scrolling-box1::-webkit-scrollbar-thumb {
  background: #0054a6; 
}

.scrolling-box1::-webkit-scrollbar-thumb:hover {
  background: #dd143c; 
}

.object-fit-cover1 {
  object-fit: cover;
}

.scrolling-box {
  height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.scrolling-box::-webkit-scrollbar {
  width: 10px;
}

.scrolling-box::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
.scrolling-box::-webkit-scrollbar-thumb {
  background: #0054a6; 
}

.scrolling-box::-webkit-scrollbar-thumb:hover {
  background: #dd143c; 
}


.update-margin{
    margin-bottom: 10px;
    margin-top: 10px;
}


/*---------------------------
    Sidebar Page Container
----------------------------*/

.service-details .content h3{
    font-size: 24px;
    line-height: 1.3em;
}

.sidebar-page-container{
    position:relative;
    padding: 50px 0px 70px;
}

.sidebar-page-container .services-page{
    padding-bottom: 50px;
}

.sidebar-page-container .content-side{
    position: relative;
    margin-bottom: 30px;
}

.services-page .content-side{
    order: 12;
}

.sidebar-page-container .blog-content{
    position: relative;
    display: block;
    padding-right: 50px;
}

/* Sidebar */

.sidebar-page-container .sidebar-side{
    position: relative;
    margin-bottom: 30px;
}

.services-page .sidebar-side{
    order: 0;
}

.sidebar-page-container .sidebar{
    position: relative;
}

.sidebar-page-container .blog-sidebar{
    margin-left: -30px;
}

.sidebar-page-container .services-sidebar{
    padding-right: 20px;
}

.sidebar .sidebar-widget{
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.sidebar .sidebar-widget:last-child{
    margin-bottom: 10px;
}

.sidebar .sidebar-widget .widget-inner{
    position: relative;
    display: block;
}


.sidebar-title{
    position:relative;
    margin-bottom:30px;
}

.sidebar-title h3{
    position: relative;
    display: inline-block;
    font-size:22px;
    line-height: 1.25em;
    color: #222222;
    font-weight: 700;
    text-transform:capitalize;
    margin-bottom: 0px;
}

.sidebar-title h3:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    border-bottom: 2px solid #4086f7;
}


.sidebar .services-widget ul{
    position: relative;
    display: block;
}

.sidebar .services-widget ul li{
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.sidebar .services-widget ul li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #1877F2;
    border-left: 9px solid #1877F2;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar .services-widget ul li:hover:before,
.sidebar .services-widget ul li.active:before{
    width: 100%;
    color: #fff;
}

.sidebar .services-widget ul li a{
    position: relative;
    display: block;
    background: rgba(0,0,0,0.03);
    padding: 12px 20px;
    padding-right: 50px;
    line-height: 30px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}


.default-form .form-group label{
    color: #1877F2;
    font-weight: 800px;
}

.tab-vertical .nav.nav-tabs {
    float: left;
    display: block;
    margin-right: 0px;
    border-bottom: 0
}

.tab-vertical .nav.nav-tabs .nav-item {
    margin-bottom: 6px;
}

.tab-vertical .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    background: #fff;
    padding: 17px 49px;
    color: #fff;
    background-color: #1877F2;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.tab-vertical .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #1877F2 !important;
    border-color: transparent !important;
}

.tab-vertical .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 4px !important;
    border-top-right-radius: 0px !important;
}

.tab-vertical .tab-content {
    overflow: auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #fff;
    padding: 30px;
}

.contact-wrap {
    background: #fff; 
}

.wrapper {
    width: 100%;
    -webkit-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18); 
}

.info-wrap h3 {
    color: #fff; 
}

.info-wrap .dbox {
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px; 
}

.info-wrap .dbox:last-child {
    margin-bottom: 0; 
}

.info-wrap .dbox p {
    margin-bottom: 0; 
}

.info-wrap .dbox p span {
    font-weight: 600;
    color: #fff; 
}

.info-wrap .dbox p a {
  color: #fff; 
}

.info-wrap .dbox .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); 
}

.info-wrap .dbox .icon span {
  font-size: 20px;
  color: #fff; 
}

.info-wrap .dbox .text {
    width: calc(100% - 50px); 
}

@media (min-width: 992px) {
    .info-wrap {
        margin-top: -20px;
        margin-bottom: -20px;
        border-radius: 5px; 
    } 
}

/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  width: 100%;
  padding: 20px;
}


.modal .close {
  position: absolute;
  z-index: 9999;
  background-color: var(--warning);
  color: #fff;
  width: 30px;
  height: 30px;
  right: 0px;
  top: 0px;
}

@media (max-width: 576px) {
  .close i {
    font-size: 18px;
  }
}

.bg-grey{
    background: #eeeeee;
}

.social-link {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1877F2;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-link:hover, .social-link:focus {
    background: #1877F2;
    text-decoration: none;
    color: #fff;
}

.header-title{
    padding-bottom: 3px;
}


.gallery-section{
    margin-bottom: 15px;
}

.popup-imgs{
    display:block;
    margin:auto;
}

.google-map iframe{
    display:block;
    margin:auto;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}

.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 80%;
  background: white;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

.overlay button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.overlay button:hover {
  background: #bbb;
}

.hidden-print{
    text-align: center;
    line-height: 1;
    font-size: 14px;
}

#pdf-viewer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* .grecaptcha-badge { 
    visibility: hidden;
} */










.ai-style-change-1 {
  .col-md-2& {
    text-align: right;
  }
}

.ai-style-change-2 {
  .col-md-4& {
    text-align: right;
  }
}


.top-bar-new {
    background-color: #e8f4ff;
    padding: 3px 0;
    /* font-size: 14px; */
}

.top-bar-new a {
    color: #333;
    text-decoration: none;
    margin-right: 15px;
}

.top-bar-new a i {
    margin-right: 5px;
}

.header-new {
    background: #f7f7f7;
    position: relative;
    padding: 14px 14px;
}

.logo-left-new img {
    max-height: 110px;
}

.logo-right-new img {
    max-height: 85px;
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .logo-left-new img {
        max-height: 90px; /* adjust as needed */
    }

    .logo-right-new img {
        max-height: 50px; /* adjust as needed */
    }
}

.ministry-title-new {
    text-align: center;
    color: #1877F2;
}

.ministry-title-new h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
}

.ministry-title-new h2 {
    font-size: 22px;
    margin-bottom: 0;
}

.ministry-title-new h3 {
    font-size: 18px;
    font-weight: normal;
}


/* Responsive styles */
@media (max-width: 992px) {
    .ministry-title-new h1 {
        font-size: 20px;
    }
    .ministry-title-new h2 {
        font-size: 18px;
    }
    .ministry-title-new h3 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .logo-left-new, .logo-right-new {
        text-align: center;
        margin-bottom: 10px;
    }
    .ministry-title-new h1 {
        font-size: 18px;
    }
    .ministry-title-new h2 {
        font-size: 16px;
    }
    .ministry-title-new h3 {
        font-size: 14px;
    }
    .top-bar-new {
        text-align: center;
    }
    .top-bar-new .text-end-new {
        text-align: center !important;
        margin-top: 5px;
    }
}













.nepali-text {
        font-family: 'Noto Sans Devanagari', sans-serif;
        color: #01009c;
    }
.english-text {
    font-family: 'Roboto', sans-serif;
    color: #01009c;
}

@media (max-width: 768px) {
    .ministry-title-new h1.english-text {
        font-family: 'Roboto', sans-serif;
        color: #01009c;
        font-size: 17px;
        margin-bottom: 1px;
    }
}


.lang-change{
    background-color: #1877F2; 
    color: #fff;
}







figure.snip1390 {
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #000000;
  text-align: center;
  font-size: 16px;
  background-color: #1877F2;
  padding: 30px;
  background-image: linear-gradient(-25deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure.snip1390 *,
figure.snip1390 *:before,
figure.snip1390 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
figure.snip1390 figcaption {
  width: 100%;
}
figure.snip1390 h2,
figure.snip1390 h4,
figure.snip1390 blockquote {
  margin: 0;
}
figure.snip1390 h2,
figure.snip1390 h4 {
  font-weight: 300;
}
figure.snip1390 h2 {
  color: #ffffff;
}
figure.snip1390 h4 {
  color: #a6a6a6;
}
figure.snip1390 blockquote {
  font-size: 1em;
  padding: 45px 20px 40px 50px;
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: inset -1.4px -1.4px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
}
figure.snip1390 blockquote:before {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 70px;
  opacity: 0.25;
  font-style: normal;
  top: 0px;
  left: 20px;
}
figure.snip1390 .profile {
  width: 100px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
  border: solid 5px #A6A57A;
}




























.btn-open-popup {
            padding: 12px 24px;
            font-size: 18px;
            background-color: green;
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .btn-open-popup:hover {
            background-color: #4caf50;
        }

        .overlay-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .popup-box {
            background: #fff;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
            width: 320px;
            text-align: center;
            opacity: 0;
            transform: scale(0.8);
            animation: fadeInUp 0.5s ease-out forwards;
        }

        .form-container {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            margin-bottom: 10px;
            font-size: 16px;
            color: #444;
            text-align: left;
        }

        .form-input {
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 16px;
            width: 100%;
            box-sizing: border-box;
        }

        .btn-submit,
        .btn-close-popup {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .btn-submit {
            background-color: green;
            color: #fff;
        }

        .btn-close-popup {
            margin-top: 12px;
            background-color: #e74c3c;
            color: #fff;
        }

        .btn-submit:hover,
        .btn-close-popup:hover {
            background-color: #4caf50;
        }

        /* Keyframes for fadeInUp animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        /* Animation for popup */
        .overlay-container.show {
            display: flex;
            opacity: 1;
        }

.course-img {
    width: 100%;
    height: 250px; /* or 250px based on your layout */
    object-fit: cover;
    border-radius: 5px;
}

.link-size:hover {
    /* background-color: #f5f5f5; */
    color: #fff; /* Bootstrap primary */
    text-decoration: none;
}

/* Wrapper and Card */
.wrapper {
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-wrap {
    background: #ffffff;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.contact-wrap h3 {
    font-weight: 600;
    color: #343a40;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Textarea */
#editor {
    border-radius: 10px;
    border: 1px solid #ced4da;
}

/* Submit Button */
button.btn-primary {
    background: linear-gradient(135deg, #0056b3, #007bff);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    transition: 0.3s ease;
}

button.btn-primary:hover {
    background: linear-gradient(135deg, #004494, #006de1);
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.2);
}

/* Info Wrap */
.info-wrap {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.info-wrap h3 {
    color: #fff;
    font-weight: 600;
}

.dbox {
    margin-bottom: 20px;
}

.dbox .icon {
    background: #ffffff;
    color: #007bff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-right: 15px;
}

.dbox .text p {
    margin: 0;
    font-size: 15px;
}

.dbox span {
    font-weight: bold;
    display: block;
}

/* Google Map */
.google-map iframe {
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .contact-wrap, .info-wrap {
        border-radius: 0 !important;
    }

    .info-wrap {
        margin-top: 30px;
    }
}

.google-map iframe{
        width:100% !important;
        height:400px !important;
        border:0 !important;
    }





    #advanced-faq h1 {
      font-weight: 800;
      font-size: 2.8rem;
      text-align: center;
      color: #000;
      margin-bottom: 60px;
      letter-spacing: 0.05em;
      position: relative;
    }
    #advanced-faq h1::after {
      content: "";
      display: block;
      margin: 16px auto 0;
      width: 100px;
      height: 6px;
    }

    .faq-item {
      border-radius: 12px;
      box-shadow: 0 10px 25px rgb(0 0 0 / 0.07);
      margin-bottom: 22px;
      overflow: hidden;
      background: #fff;
      cursor: pointer;
      transition: box-shadow 0.35s ease;
      border-left: 6px solid transparent;
    }
    .faq-item:hover {
      box-shadow: 0 20px 45px rgb(255 106 0 / 0.3);
      border-left-color: #ff6a00;
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-weight: 700;
      font-size: 1.15rem;
      padding: 20px 28px;
      user-select: none;
      color: #ff6a00;
      letter-spacing: 0.02em;
    }

    .faq-question:hover {
      color: #ff914d;
    }

    .faq-icon {
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
      width: 22px;
      height: 22px;
      fill: #ff6a00;
      flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      fill: #ff914d;
    }

    .faq-answer {
      padding: 0 28px 20px 28px;
      font-weight: 500;
      color: #555;
      font-size: 1rem;
      line-height: 1.5;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition:
        max-height 0.5s cubic-bezier(0.4,0,0.2,1),
        opacity 0.5s ease 0.15s;
    }
    .faq-item.active .faq-answer {
      max-height: 400px; /* enough to show content */
      opacity: 1;
    }

    /* Scrollbar for long answers */
    .faq-answer::-webkit-scrollbar {
      width: 6px;
    }
    .faq-answer::-webkit-scrollbar-thumb {
      background-color: rgba(255, 106, 0, 0.3);
      border-radius: 3px;
    }

    /* Responsive */
    @media (max-width: 600px) {
      #advanced-faq h1 {
        font-size: 2rem;
      }
      .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
      }
      .faq-answer {
        padding: 0 20px 16px 20px;
        font-size: 0.95rem;
      }
    }
 












.popup-glow {
    border-radius: 1rem;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: popIn 0.6s ease-in-out;
}

.fancy-carousel-control {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    transition: 0.3s ease;
}

.fancy-carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.fancy-carousel-control .control-icon {
    color: #fff;
    font-size: 1.6rem;
    line-height: 48px;
    display: block;
    text-align: center;
}

.carousel-indicators li {
    background-color: #6c757d;
}

.carousel-indicators .active {
    background-color: #dc3545;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}






.fancy-close-btn {
    background-color: #f0e004;
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -5px;
    right: -5px;
}

.fancy-close-btn:hover {
    background-color: #d2f50d;
    transform: rotate(90deg) scale(1.1);
}







.custom-carousel-control:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.custom-carousel-control .control-icon {
    color: #343a40;
    font-size: 1.6rem;
    line-height: 55px;
    display: block;
    text-align: center;
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }

.custom-carousel-control .control-icon {
    color: #fff;
    font-size: 1.5rem;
    line-height: 50px;
    display: inline-block;
    width: 100%;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}











.fancy-tab-btn {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fancy-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    opacity: 0.95;
}











.event-card {
    transition: all 0.3s ease;
    opacity: 1;
    max-height: 1000px;
    overflow: hidden;
}

.event-card.hidden {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}













.blur-bgg {
	filter: blur(5px);
	transform: scale(1.1); /* optional: zoom in the background slightly */
	opacity: 0.7;           /* optional: reduce brightness */
}











































/* Container tweaks */
.portfolio {
  background-color: #f9fbfd;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Section header */
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #222;
}

/* Cards */
.portfolio .card {
  border-radius: 6px;
  transition: box-shadow 0.3s ease;
  background: #fff;
}

.portfolio .card:hover {
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.12);
}

/* Card headers with custom colors */
.card-header.bg-primary {
  background-color: #0d6efd !important;
}

.card-header.bg-success {
  background-color: #198754 !important;
}

.card-header.bg-info {
  background-color: #0dcaf0 !important;
}

/* News articles link styles */
.news-article {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.25s ease;
  word-break: break-word;
}

.news-article:hover {
  background-color: #e7f1ff;
  text-decoration: none !important;
}

/* Icons inside links */
.news-article i.fas.fa-folder,
.news-article i.fas.fa-file-download {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background-color: #dbeeff;
  color: #0d6efd;
  flex-shrink: 0;
}

/* Adjust file download icon color */
.news-article i.fas.fa-file-download {
  background-color: #d1e7dd;
  color: #198754;
}

/* Event date badge */
.portfolio .card-body .d-flex > div:first-child {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  user-select: none;
}

/* Scrollable area */
.card-body.overflow-auto {
  scrollbar-width: thin;
  scrollbar-color: #9dcbfc transparent;
}

.card-body.overflow-auto::-webkit-scrollbar {
  width: 7px;
}

.card-body.overflow-auto::-webkit-scrollbar-track {
  background: transparent;
}

.card-body.overflow-auto::-webkit-scrollbar-thumb {
  background-color: #9dcbfc;
  border-radius: 10px;
}

/* Buttons */
.btn-sm.btn-primary,
.btn-sm.btn-success,
.btn-sm.btn-info {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background-color 0.3s ease;
  border-radius: 0;
}

.btn-sm.btn-primary:hover {
  background-color: #0845c6;
}

.btn-sm.btn-success:hover {
  background-color: #116530;
}

.btn-sm.btn-info:hover {
  background-color: #0aa9cc;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .card-body.overflow-auto {
    max-height: 320px !important;
  }
}

@media (max-width: 575.98px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
  .news-article p {
    max-width: 180px !important;
  }
}
















.footer a {
    text-decoration: none !important;
    color: inherit; /* optional: keeps link color same as surrounding text */
}

.footer a:hover,
.footer a:focus {
    text-decoration: none; /* optional: add underline on hover/focus */
    color: #fff;
}


element.style {
    margin-top: 0px;
}