@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.carousel-control-prev{
    position: absolute;
    top: 40%;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 14%;
    padding: 0;
    width: 4%;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease;
    height: 10%;
    background-color: rgba(255, 255, 255, 0.1); /* or rgba(255, 255, 255, 0.2) */
    backdrop-filter: blur(10px); /* creates the blur */
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    border-radius: 5px;

}
.carousel-control-next{
    position: absolute;
    top: 40%;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 14%;
    padding: 0;
    width: 4%;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease;
    height: 10%;
    background-color: rgba(255, 255, 255, 0.1); /* or rgba(255, 255, 255, 0.2) */
    backdrop-filter: blur(5px); /* creates the blur */
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    border-radius: 5px;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2334c2e0'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2334c2e0'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #898989;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
}

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

.carousel-item{
    height: 70vh;
    width: 100%;
    object-fit: cover;
}
.carousel-item img{
    height: 70vh;
    width: 100%;
    object-fit: cover;
}



@media (max-width: 768px) {
    .carousel-item img{
        height: 50vh;
    }
    .carousel-item{
        height: auto;
    }
    .carousel-control-prev{
        display: none;
    }
    .carousel-control-next{
        display: none;
    }
}
.tools {
    position: fixed;
    right: 0;
    top: 40%;
    margin-top: -50px;
    z-index: 1;
}
@media (max-width: 768px) {
    .tools{
        display: none;
    }
}


.tools .tool {
    display: flex;
    align-items: center;
    background: #1d66b7;
    color: #fff;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    padding: 10px;
    position: relative;
    width: 250px;
    right: -205px;
    transition: right 0.3s ease-in-out;
}

.tools .tool:hover {
    right: 0;
    transition: right 0.3s ease-in-out;
}

.tools .tool a {
    color: #fff;
    display: block;
    padding-left: 2px;
    line-height: 24px;
}

.tools .tool a:hover {
    color: #fff !important;
}

.tools.custom .tool {
    position: static;
    width: 50%;
    float: left;
}

.tools .tool a img {
    margin-right: 5px;
}



.header__top a{
    color: #1e4ea2;
}
.header__top span{
    color: #1e4ea2;
}
.header__top i{
    padding-right: 5px;
    vertical-align: middle;
    font-size: 16px;
    color: #1e4ea2;
}

.header__top .logo img{
    height: 55px;
    max-width: inherit;
}


@media (max-width: 768px) {
    .header__top{
        display: none;
    }
}



.header__top_3 {
    gap: 10px;
    align-items: center;
    display: flex;
    padding-top: 18px;
    padding-bottom: 18px;
}
.header__top_3 h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-family: "Roboto Bold";
    color: #0054a6;
    margin: 0;
}
.header__top_3 a {
    font-size: 13px;
    color: #000;

}
.header__top_3 a:hover {
    color: #007bff;
}

.header__top_3 i{
    font-size: 24px;
    color : #0054a6;
}

.section-title {
    margin-bottom: 15px;
}
.section-title h4{
    font-family: "Roboto Bold";
    color: #337ab7;
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 5px;
}
.section-title em {
    background-color: #337ab7;
    height: 3px;
    width: 50px;
    display: block;
    margin-top: 5px
}

.see-more-title {
    position: relative;
    margin-bottom: 15px;
}
.see-more {
    display: block;
    background-color: transparent;
}
.see-more > span {
    float: right;
    margin: 7px 10px 10px 10px;
}
.see-more > span a {
    color: #000;
    font-size: 12px;
}

.main-news{
    padding : 15px 0 ;
}
.feature-news {
    position: relative;
}

.feature-news .img {
    width: 100%;
    height: 423px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .feature-news .img  {
        height: 200px;
    }
}
.feature-news .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.feature-news img:hover {
    transform: scale(1.2);
}
.feature-news .news-caption{
    background: rgba(3, 5, 9, 0.62);           /* semi-transparent dark */
    backdrop-filter: blur(10px);             /* main blur */
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
}


.feature-news .news-caption a h6 {
    font-size: 17px;
    text-transform: uppercase;
    line-height: 27px;
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 768px) {
    .feature-news .news-caption a h6 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


.feature-news .news-caption a span {
    display: block;
    margin: 5px 0;
    font-size: 12px;
    color: #ccc;
}

.scroll-news {
    height: 423px;
    overflow-y: scroll;
    overflow-x: hidden;
}
@media (max-width: 768px) {
    .scroll-news {
        height: 300px;
        padding-top: 15px;
    }
}
.latest-news-list {
    margin-bottom: 15px;
}
.latest-news-list a {
    color: #000;
    font-size: 17px;
}
.latest-news-list h5 {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .latest-news-list h5{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}
.latest-news-list img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .latest-news-list img{
        height: 80px;
    }

}
.latest-news-scroll-box{
    height: 428px;
    overflow-y: scroll;
    overflow-x: hidden;
}



.service-box {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    text-align: center;
    border: 1px solid #34c2e0;
    margin-bottom: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.service-box a {
    color: #337ab7;
    display: block;
    padding: 15px;
    font-family: 'Roboto Bold';
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}



.service-box a:hover::before {
    width: 300%;
    height: 300%;
}

.service-box a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #337ab7;
    border-radius: 3px;
}

.service-box i {
    color: #31D093;
    margin-bottom: 15px;
    font-size: 18px;
}

.service-box h6 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.service-box a:hover h6 {
    color: #fff;
}


.box-count .title{
    font-family: "Roboto Bold";
    font-size: 23px;
    color: #337ab7 !important;
    margin-bottom: 10px;
    z-index: 9;
    position: relative;
}
.box-count .ulli{
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.white-back {
    background: #fff;
    margin-top: -34px;
    margin-left: -34px;
    width: 70px;
    height: 80px;
    position: absolute;
    z-index: 1;
}
.box-count {
    border: 4px solid #34c2e0;
    padding: 30px;
    min-height: 300px;
    font-size: 18px;
}

.box-count p {
    color: #01326b
}
.box-count span {
    color: #01326b
}
.box-count .btn {
    background: #ddd;
    border-color: #ddd;
    color: #000;
    font-weight: bold;
}
.about-us {
    padding-left: 5px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}


.about-us h5 {
    margin-top: 10px;
    font-family: "Roboto Bold";
    font-size: 32px;
    color: #337ab7 !important ;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 18px;
    line-height: 1.6;
    color: #000 ;
    text-align: justify;
    margin-bottom: 20px;
}

.about-us .btn {
    font-weight: bold;
    color: #fff;
    background-color: #337ab7;
    font-size: 14px;
    padding: 8px 18px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 0;
    text-transform: uppercase;
}
.about-us .btn:hover {
    background-color: #0453ab;

}

.about-us .btn-primary {
    background-color: #337ab7;
    color: #fff;
    border: none;
}

.about-us .btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
}


.main-news {
    visibility: visible;
    animation-name: slideInDown;
    padding: 30px 0;
}

.main-news .btn{
    text-transform: uppercase;
    background-color: #ddd;
    border-radius: 0;

    padding: 6px 20px;
}
.main-news .btn a{
    font-size: 14px;
    font-weight: bold;
}

.main-news .btn:hover{
    background-color: #cdc9c9;
}

.main-news .main-news-img {
    width: 100%;
    height: 385px;
    overflow: hidden;
}

.main-news img:hover {
    transform: scale(1.2);
}

.main-news .main-news-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
    max-width: 100%;
}
.main-news .main-news-article{
    background-color: #eee;
    padding: 30px;
}

.main-news .main-news-article h5{
    font-size: 23px;
    color: #000;
    line-height: normal;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.3s all ;
}
.main-news .main-news-article h5:hover{
    color : #337ab7;
    transition: 0.3s all ;
}
.main-news .main-news-article .date {
    color: #6f6f6f;
}
.partners img {
    margin-bottom: 50px;
    height: 100px;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;

}







/*this is start news page css*/
.post-header{
    background-color: #5793d4;
    padding-top: 8px;
    padding-bottom: 8px;

}
.post-header span{
    font-size: 17px;
    line-height: 26px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
}
.post-header a{
    font-size: 14px;
    line-height: 26px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
}
.post-header-links a {
    font-weight: lighter;
    color: #fff;

}

.post-header-links .dot {
    margin: 0 5px;
    color: #fff;
}
.post-header-links a:hover{
    color: #23527c;

}


.blog-post .img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.blog-post img:hover {
    transform: scale(1.2);
}

.blog-post .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-transform: uppercase;
}
.blog-post .title span{
    color: #232323;
    font-size: 16px;
    line-height: 23px;
}
.blog-post .title span:hover{
    color: #23527c;

}


.newspaper{
    border-bottom:  3px solid #9f9e9e;
}
.newspaper h1{
    text-align: center;
    font-size: 48px;
    font-family: 'Roboto Bold';
    text-transform: uppercase;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .newspaper h1{
        font-size: 24px;
    }
}

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

.newspaper .more a{
    font-family: 'Roboto Bold';
    text-transform: uppercase;
    color: #0054a6
}
.newspaper img{
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    border: 0;
    vertical-align: middle;
    border-radius: 5px;
}
.newspaper-side .text-dark{
    border: 2px solid #000000;
}
.newspaper-side .head {
    text-align: center;
    font-family: 'Roboto Bold';
    text-transform: uppercase;
    font-size: 12px;
}
.newspaper-side h5{
    margin-bottom: 10px;
}

.newspaper-side h5 a{
    text-align: center;
    font-family: 'Roboto Bold';
    text-transform: uppercase;
    font-size: 14px;
}


.newspaper-2{
    padding: 40px 0 20px 0;
}
.newspaper-2 h3{
    margin-top: 10px;
    text-align: justify;
    font-family: 'Roboto Bold';
    text-transform: uppercase;
    font-size: 18px;
}

.newspaper-2 .more {
    font-family: 'Roboto Bold';
    text-transform: uppercase;
    color: #0054a6;
    font-size : 12px
}

.newspaper-3{
    padding: 40px 0 20px 0;
}
.newspaper-3 h1{
    text-align: center;
    font-family: 'Roboto Bold';
    text-transform: uppercase;
    font-size: 32px;
}

@media (max-width: 768px) {
    .newspaper-3 h1{
        font-size: 24px;
    }
}

.newspaper-3 .body {
    text-align: justify;
    column-count: 1;
    column-gap: 20px;
    font-size: 16px;
}
.newspaper-3 .body p:nth-of-type(n+5) {
    display: none;
}
/* Make it 2 columns when wide enough (responsive) */
@media (min-width: 768px) {
    .newspaper-3 .body {
        column-count: 2;
    }
}

.newspaper-3 .more {
    font-family: 'Roboto Bold';
    text-transform: uppercase;
    color: #0054a6;
    font-size : 12px
}

/* ceo page css start */
.ceo-page{


}
.ceo-page img{
    max-width: 100%;
    height: auto;
}
.ceo-page span{
    font-weight: bold;
    font-size: 24px;
    color: #000;
}

.ceo-page p{
    font-size: 16px;
    color: #000;
    margin: 0 0 12px;
    text-align: justify;
}



.contact-page .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: 100%;

}

.contact-page i{
    font-size: 35px;
    color : #0a58ca;
    margin-bottom: 25px;
}

.contact-page .img{
    background: url('../images/contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;

}

.contact-page .info{
    text-align: center;
}
.contact-page a{
    color: #FFF;
    font-size: 16px;
    line-height: 23px;

}

.contact-page p {
    color: #FFF;
    font-size: 16px;
    line-height: 23px;
}

.feedback-input {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    background: transparent;
}
.feedback-input:focus {
    border-color: #034ea2; /* deep pink */
    box-shadow: none;
}
.feedback-btn {
    background-color: #034ea2; /* Deep pink */
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(28, 36, 128, 0.3);
}

.feedback-btn:hover {
    background-color: #034ea2;
    box-shadow: 0 2px 6px rgba(28, 36, 128, 0.3);
    transform: translateY(-2px);
}

.feedback-btn:active {
    background-color: #034ea2;
    box-shadow: 0 2px 6px rgba(28, 36, 128, 0.3);
    transform: translateY(0);
}

.accordion-style {
    
}

.accordion-style .panel .panel-heading {
    background: #034ea2;
    padding:18px 28px 19px;
}
.accordion-style .panel{
    margin-bottom: 10px;
}
.accordion-style .panel .panel-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion-style .panel .title{
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Roboto';
}
.accordion-style .panel-body{

    padding: 18px; border-top:none
}
.accordion-style .panel-heading i {
    font-size: 25px;
    color:#fff;
    font-weight: 700;
}
.accordion-style .tab-tag {
    font-size: 18px;
    margin-right: 7px;
    display: inline-block;
    vertical-align: top;
    color:#5793d4
}
.accordion-style p{
    font-family: 'Roboto';
    color: #000;
    text-decoration: none;
    font-size: 16px;
    line-height: 23px;
}

.accordion-style a{

    color: rgb(111, 111, 111);
    text-decoration: none;
}

/* ceo page css end*/
.separator-line{
    background-color: #034ea2;
    width: 18%;
    height: 3px;
    display: inline-block !important;
}
.about-page{

}
.about-page .title{
    font-family: Roboto Bold;
    color: #232323;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
}
.about-page p{
    font-size: 16px;
    color: #000;
    margin: 0 0 12px;
}

.about-column-layout{
    padding: 10px;
}
.about-column {
    height: 45px;
    padding-left: 10px;
    display: flex;
    align-items: center;

}
.about-column h5{
    font-family: Roboto Bold;
    font-weight: bold;
    font-size: 34px;

}
.about-column p {
    padding-left : 20px;
    margin-bottom: 0;
}

.static-common p {
    font-size: 16px;
    color: #000;
    margin: 0 0 12px;
}

/* news view start css*/
.news-details{

}
.news-details .left .title h1 {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700;
    color: #000;
    font-size: 30px;
}
.news-details .left .info{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.news-details .left .date{
    font-weight: 400;
    text-transform: initial;
    color: #363636;
    font-size: 12px;
}

.news-details .left .read{
    border-left: 1px solid #ccc;
    margin-left: 9px;
    padding-left: 10px;
    color: #363636;
    font-size: 12px;
}
.news-details .left .text{
    margin-top: 10px;
}
.news-details .left .text p{
    margin-bottom: 15px;
    color: #000;
    margin-top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
}


/* news view css end*/
/* Container */
.social-box {
    display: flex;
    justify-content: flex-end;
}

/* Shared button styles */
.social_share--article {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 36px;
    padding: 0 12px;
    margin-left: 10px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 2px rgba(0,0,0,0.14),
    0 3px 1px -2px rgba(0,0,0,0.2),
    0 1px 5px rgba(0,0,0,0.12);
}

/* Icon style */
.social_share--article i {
    font-size: 18px;
    margin-right: 8px;
}

/* Twitter specific */
.social_twitter {
    background-color: #29aae3;
}
.social_twitter:hover {
    background-color: transparent;
    color: #29aae3;
    border: 1px solid #29aae3;
}

/* Facebook specific */
.social_facebook {
    background-color: #3b5998;
}
.social_facebook:hover {
    background-color: transparent;
    color: #3b5998;
    border: 1px solid #3b5998;
}

/* Optional: message styling */
.social_share--article .message {
    line-height: 1;
    font-size: 13px;
}

.sidebar {
    border-top: 3px solid #0575e6;
    padding: 0;
    margin: 0;
    width: 100%;
}

.sidebar .title{

    margin-left: 10px;
    font-size: 16px;
    line-height: 40px;
    white-space: normal;
    color: #363636;
    font-family: 'Roboto Bold';
    text-transform: initial;
}


.our-pride-card {

    opacity: 0;
    animation: fadeInUp 0.2s ease forwards;
    animation-delay: 0.1s;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 18% 5.5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    height: 50vh;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.our-pride-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    margin: 0 auto 20px;
    font-size: 32px;
    background-color: #5793d4;
}

.our-pride-card i{
    color: #fff ;
}
.our-pride-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.our-pride-card h5 {
    font-family: "Roboto Bold";
    font-size: 18px;
    line-height: 26px;
    color:#000;
}
.our-pride-card p {
    font-size: 16px;
    color: #000;
    margin: 0 0 12px;
}

.our-department {
    opacity: 0;
    animation: fadeInUp 0.2s ease forwards;
    animation-delay: 0.1s;
    border: 1px solid #a2a2a2;
}
.our-department li{
    border-bottom: 1px solid #a2a2a2;
    font-size: 15px;
    position: relative;
    padding: 0 0 8px 0;
    margin: 0 0 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: normal;
}
.our-department .title {
    background-color: #0a58ca;
    font-family: "Roboto Bold";
    text-transform: uppercase;
    padding: 10px;
}







.footer h6{font-size: 16px;text-transform: uppercase;font-family: "Roboto Bold";padding-bottom: 10px;margin-bottom: 20px;border-bottom: 1px solid #34c2e0;}
.footer i{width: 20px;text-align: center;color: #34c2e0;}
.footer a{font-size: 14px;line-height: 20px;}




.section-header {
    background-color: #034ea2;
    padding-top: 12px;
    padding-bottom: 12px;

}
.section-header span{
    font-size: 18px;
    text-transform: uppercase;
    line-height: 26px;
    color: #fff;
    font-family: "Roboto Bold";
}
.section-header span i{
    margin-left: 5px;
}

.static-list ul{
    padding-left: 8px;
}
.static-list li{
    position: relative;
    padding: 0 0 10px 10px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    list-style: decimal;
    list-style-position: inside; /* add this */
}
.static-list li::marker {
    color: #6f6f6f;
}
.static-list li:hover::marker {
    color: #337ab7;
    transition: color 0.3s;
}

.static-list li a{
    color: #6f6f6f;
}
.static-list li:hover a{
    color: #337ab7;
    transition: color 0.3s;
}


.custom-breadcrumb {list-style: none;display: flex;flex-wrap: wrap;padding: 0;margin: 0;justify-content: end;}
.custom-breadcrumb li {margin-right: 5px;position: relative;}
.custom-breadcrumb li::after {content: "•";color: #ccc;margin-left: 5px; font-size: 20px;}
.custom-breadcrumb li:last-child::after {content: none;}
.custom-breadcrumb a {color: #ffffff;font-weight: 500;transition: color 0.3s ease;text-transform: uppercase;}
.custom-breadcrumb a:hover {
    color: #34c2e0;
    font-weight: 600;
}


@media (max-width: 768px) {
    .custom-breadcrumb {
        flex-direction: column;
    }
    .custom-breadcrumb li {
        margin-bottom: 5px;
    }
    .custom-breadcrumb li::after {
        display: none;
    }
}



/* tab styles */
.tab-style .tab-content{padding:22px 0 0; border-top: 1px solid #e5e5e5; }
.tab-style .nav-tabs{border:0;}
.tab-style .nav-tabs li{border:1px solid #e5e5e5; border-bottom: none; border-radius: 0; margin-bottom: 0; display:inline-block; float:none; margin-right: 2px}
.tab-style .nav-tabs li.active{ background-color : #ccc ; }
.tab-style .nav-tabs li a {background-color:#f7f7f7; border:none; color:#575757; line-height: 44px; margin:0 !important; padding: 0 25px; border-radius: 0;}
.tab-style .nav-tabs-light li:first-child {border-left: 1px solid #e5e5e5; margin-left: 15px;}
.tab-style .nav-tabs > li.active > a {border-color:transparent; border: none; border-radius:0; background: transparent; top:1px}

.tab-content img{height:100%; width:100%}
.tab-content p {font-size: 16px;color: #000;margin: 0 0 12px;}
.tab-content h5 {font-size: 20px;color: #000;font-family: "Roboto Bold";font-weight: 500;}
.tab-content .text {font-size: 16px;color: #000;line-height: 30px;font-weight: 500;}


.tab-slider--body ul {
    list-style-type: disc;       /* Use dot (•) */
    list-style-position: outside; /* Bullet outside the content box */
    padding-left: 30px;          /* Indent to show the bullet */
    margin-bottom: 25px;
}

.tab-slider--body li {
    font-size: 14px;
    line-height: 24px;
    color : #000;
    font-weight: 500;
}
.tab-doctors img{
    width: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    height: 300px;
    object-fit: cover;
}
.tab-doctors .name {
    font-weight: bold;
    color: #232323;
    margin-top: 10px;
    font-size: 16px;
    line-height: 23px;
    font-family: 'Roboto Bold'
}
.tab-doctors .text {
    font-size: 16px;
    color: #4e4e4e;
    font-family: 'Roboto'

}
.tab-doctors .social-icons {
    margin-top: 5px;
    display: flex;
    gap: 5px;
    font-size: 14px;
}
.tab-doctors  .social-icons a {
    color: #fff;
    background-color: #3b5998; /* Default Facebook color */
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.tab-doctors  .social-icons a.twitter {
    background-color: #55acee;
}
.tab-doctors  .social-icons a:hover {
    opacity: 0.8;
}
