@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

:root {
    --brand: #ff4d29;
    --dark: #092032;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);

}

body {
    font-family: "Barlow", sans-serif;
    color: var(--body);
    line-height: 1.7;
    overflow-y: auto; /* Enable vertical scrolling */

    height: 100vh; /* Full viewport height */
 

}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-weight: 700;
    color: var(--dark);
}

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



a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: var(--brand);
}

section {
    padding-top: 25px;
    padding-bottom: 3px;
}

.text-brand {
    color: var(--brand) !important;
}


.hero-slider .owl-prev,
.hero-slider .owl-next {
    background-color: rgba(255, 255, 255, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: block;
    display: grid;
    place-items: center;
    color: #fff !important;
    border-radius: 100px;
    line-height: 0;
    border-radius: 100px !important;
    position: absolute;
    top: 50%;
    font-weight: 600 !important;
    font-size: 12px !important;
    transition: all 0.4s ease;
    margin-top: -30px !important;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background-color: var(--brand) !important;
}

.owl-dot.active span {
    background-color: var(--brand) !important;
}



/* navbar */
.top-nav {
    /*background-color: #002c4d;*/
    background-color:#0f5387d9;
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-nav p {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

.top-nav span,
.top-nav i {
    vertical-align: middle;
}



.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--brand);
}

.navbar .navbar-nav .nav-link {
    color: white;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--brand);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--brand);
}

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
}

.navbar-brand .dot {
    color: var(--brand);
}

.btn {
    padding: 8px 26px;
}

.btn-brand {
    border-color: var(--brand);
    background-color: var(--brand);
    color: #fff;
}

.btn-brand:hover {
    background-color: #d64022;
    border-color: #d64022;
    color: #fff;
}

.intro {
    margin-bottom: 36px;
    text-align: center;
}

.intro p {
    max-width: 500px;
}

.intro h6 {
    color: var(--brand);
    font-weight: 400;
    text-transform: uppercase;
}

.intro h1 {
    margin-top: 15px;
    margin-bottom: 15px;
}



#milestone {
    background-color: #002c4d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#milestone h1,
#milestone p {
    color: #fff;

}

.service {
    padding: 32px;
    background-color: #002c4d;
    box-shadow: var(--shadow);
    border-radius: 30px;
    color: white;
}



.service:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    transform: translateY(-10px);
    background-color: #ff4d29;

}

.service:hover h5 {
    color: #000;

}



@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }

    .service:hover {
        box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.4);
        border-radius: 0px;
        transform: translateX(0px);

    }
}

.service h5 {
    margin-top: 24px;
    margin-bottom: 14px;
    color: #ff4d29;
}

.service img {
    width: 90px;
}


.project {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.project h6 {
    font-weight: 400;
}

.project h6::before {
    content: "";
    height: 2px;
    width: 30px;
    display: inline-block;
    background: var(--brand);
    vertical-align: middle;
    margin-right: 10px;
}


.project .overlay {
    width: 100%;
    height: 220px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 76, 41, 0) 0%, var(--dark) 100%);
}

.project .content {
    position: absolute;
    left: 10%;
    bottom: 10%
}

.project h2,
.project h6 {
    color: #fff;
}

.team-member {
    text-align: center;
}

.team-member .image {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-member .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: -10%;
    background-color: rgba(255, 77, 41, 0.7);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member h5 {
    margin-top: 16px;
    margin-bottom: 4px;
}

.team-member .social-icons {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member .social-icons a {
    width: 40px;
    height: 40px;
}

.team-member:hover .social-icons {
    top: 50%;
    opacity: 1;
}

.team-member:hover .overlay {
    top: 0%;
    opacity: 1;
}

#reviews {

    background: linear-gradient(-90deg, rgba(8, 32, 50, 0.8), rgba(8, 32, 50, 0.8)), url(../img/placement.jpeg), #082032;
    ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review {
    text-align: center;
    z-index: 2;
    position: relative;
    margin: 15px;
    max-width: 768px;
    margin: auto;
}

.review .bxs-quote-alt-left {
    font-size: 120px;
    position: absolute;
    opacity: 0.1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.review img {
    width: 80px !important;
    height: 80px;
    border-radius: 100px;
    margin: auto;
}

img {
    width: 100%;
}

.review h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: #fff;
}

.review h3 {
    margin-top: 26px;
    margin-bottom: 26px;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
}

.review small {
    color: var(--brand);
}

.review .stars {
    color: var(--brand);
}

.blog-post {
    position: relative;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.blog-post .content {
    padding: 32px;
}

.blog-post a {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--brand);
    padding: 2px 12px;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
}

.blog-post h5 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.blog-post small {
    text-transform: uppercase;
    color: var(--brand);
    text-decoration: underline;
}

/*---------footer---------*/
footer {
    background-color: #222023;
    background-image: -webkit-linear-gradient(top, #222023, #1e2c47);
    background-image: -moz-linear-gradient(top, #222023, #1e2c47);
    background-image: -o-linear-gradient(top, #222023, #1e2c47);
    background-image: linear-gradient(to bottom, #222023, #1e2c47);
    color: #fff;
    padding: 30px 0;
    font-size: 17px;
}

footer h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
}

footer h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2px;
    color: yellow;

}

.about-footer li i {
    position: absolute;
    left: 0;
}

.about-footer li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 18px;
}

.about-footer ul {
    margin-top: 40px;
    list-style: none;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #ed1b24;
}

.footer-title {
    border-bottom: 2px solid #a61f2d;
    padding-bottom: 25px;
    margin-bottom: 35px;
}


ul.footer-social {
    float: right;
}

ul.footer-social li {
    display: inline;
    margin-right: 16px;
}

ul.footer-social i {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #222025;
    text-align: center;
    line-height: 30px;
    border-radius: 30px;
    font-size: 16px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 800;
}

ul.footer-social li:last-child {
    margin-right: 0px;
}

ul.footer-social i:hover {
    background: #ed1b24;
    color: #fff;
}

.page-more-info li {
    margin-bottom: 3px;
}

.page-more-info ul {
    list-style: none;
}

footer .table td:first-child {
    font-weight: 600;
    padding-left: 33px;
}



footer .table td {
    padding: 0px;
    border: 0;
}

footer .table tr {}

footer .table td i {
    position: absolute;
    left: 0px;
    font-size: 21px;
    top: 6px;
}

footer .table td {
    position: relative;
    padding: 4px 0;
    color: white;
  
}

.footer-logo td {
    padding-right: 20px !important;
  
 
}

.footer-logo td:last-child {
    padding-right: 0px !important;
}

footer hr {
    border-color: #9294a0;
}

.footer-bottom p {
    text-align: left;
}

.footer-bottom {
    margin-top: 30px;
}

.open-hours hr {
    margin: 30px 0;
}


.loader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    z-index: 99999;
    position: fixed;
    left: 0;
    right: 0;
}


input.form-control {
    border-color: transparent;
    height: 44px;
}

.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);
    ;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--brand);
}



/* Read More / View Details Links */
.news-item a,
.event-item a {
    display: inline-block;
    color: #d64022;
    text-decoration: none;
    font-weight: bold;
}

.news-item a:hover,
.event-item a:hover {
    text-decoration: underline;
}

/* Scrollable News and Events List */
.news-list,
.events-list {
    max-height: 300px;
    /* Adjust this height as needed */
    overflow-y: auto;
    padding-right: 10px;
    /* Padding for scrollbar */
}

/* Scrollbar Styling */
.news-list::-webkit-scrollbar,
.events-list::-webkit-scrollbar {
    width: 8px;
}

.news-list::-webkit-scrollbar-thumb,
.events-list::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 5px;
}

.news-list::-webkit-scrollbar-thumb:hover,
.events-list::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-events-row {
        flex-direction: column;
    }

    .news-col,
    .events-col {
        flex-basis: 100%;
        margin-bottom: 30px;
    }
}



.mg {
    width: 100%;
    height: 100%;
    border-radius: 10px;


}

.img-div {

    background: center right no-repeat;
    background-size: 55% auto;

    position: relative;


}

/* gallery */



/* IMAGE GRID STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.image-grid figure {
    margin-bottom: 0;
}

.image-grid img {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s;
}

.image-grid a:hover img {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}


/* LIGHTBOX STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.lightbox-modal .modal-content {
    background: var(--lightbox);
}

.lightbox-modal .btn-close {
    position: absolute;
    top: 20px;
    right: 18px;
    font-size: 1.2rem;
    z-index: 10;
}

.lightbox-modal .modal-body {
    display: flex;
    align-items: center;
    padding: 0;
    text-align: center;
}

.lightbox-modal img {
    width: auto;
    max-height: 100vh;
    max-width: 100%;
}

.lightbox-modal .carousel-caption {
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 36, 36, 0.75);
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: auto;
}

.lightbox-modal .carousel-control-prev {
    left: 10px;
}

.lightbox-modal .carousel-control-next {
    right: 10px;
}



/* breadcrum */

.rs-breadcrumbs {
    min-height: 215px;
    height: 200px;
}


.breadcrumbs-overlay {
    position: relative;
    z-index: 1;
}

.rs-breadcrumbs {
    background-color: #f3f3fb;
    padding: 25px 0;
}

.bg8 {
    background-image: url(../imgs/bg8.jpg);
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;



}

.rs-breadcrumbs .page-title {
    margin: 0px 0px 15px;
    font-size: 36px;
    color: #002c4d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rs-breadcrumbs ul {
    padding: 0;
}

.rs-breadcrumbs ul li a:after {
    content: "➜";
    margin: 0px 10px;
}

.rs-breadcrumbs ul li a {
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #0763a7;
    text-decoration: none;
}

.rs-breadcrumbs ul li {
    color: #0763a7;
    display: inline-block;
    font-weight: 400;

}

/* end breadcrum */

/* history start */

.sec-spacer {
    padding: 60px 0;
}

.flexsec {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #002c4d;
}

.flexsec>div {
    width: 50%;
}

.abtaxt {
    padding: 30px;
}

.abtaxt p {
    margin: 0 0 15px;
    color: white;
}

.imgs {
    height: 440px;
}

.abtaxt h2 {
    font-size: 32px;
    margin: 0 0 5px;
    color: #d64022;
}

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

.flexsec:nth-child(2)>div.imgs {
    order: 2;
}

@media (max-width: 767px) {

    .sec-spacer,
    .shop-page-area.single-product-page {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .flexsec>div {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .flexsec>div.imgs {
        order: 2;
    }
}

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

    .sec-spacer,
    .shop-page-area.single-product-page {
        padding: 40px 0;
    }
}

/* hitory end */

/* mission start */

.sec-spacer {
    padding: 60px 0;
}

@media (max-width: 767px) {

    .sec-spacer,
    .shop-page-area.single-product-page {
        padding: 20px 0;
    }
}

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

    .sec-spacer,
    .shop-page-area.single-product-page {
        padding: 40px 0;
    }
}

.sec-color {
    background-color: #22263f;
}




/* top header */


.topmenu>ul>li>a {
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    line-height: 24px;
    font-weight: 500;
    position: relative;
}

.topmenubg {
    background: #112b64;/*#0763a7;*/
} 

.headersec {
    background-color: #ffffff;
    padding: 5px 0;
}

.topheader {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.leftlink>ul,
.rightlink>ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.rightlink>ul>li {
    padding-left: 5px;
}

.rightlink>ul>li>a {
    padding: 20px;
    background: #e1f3ff;
    color: darkblue;
    display: block;
    height: 32px;
    line-height: 14px;
    font-weight: 600;
    letter-spacing: -1px;
    border-radius: 3px;
    min-width: 32px;
    text-align: center;
    cursor: pointer;
}



.logo img {
    width: 169px;
    height: 79px;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;

}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo a span small {
    display: block;
    font-size: 18px;
    margin-top: 5px;
}

.logo a span {
    color: #22263f;
    font-size: 35px;
    font-weight: 700;
    padding-left: 20px;
    line-height: normal;

}

@media (max-width: 767px) {
    .logo img {
        width: 70px;
    }
}

@media (max-width: 1000px) {
    .logo img {
        width: 80px;
    }
}

@media (max-width: 767px) {
    .logo a span {
        font-size: 13px;
    }
}



.rounded-circle {
    border-radius: 50% !important;
}


.sub-info {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #004975;
}

.display-30 {
    font-size: 0.9rem;
}


/* facilites */


.bg-gray {
    background-color: #f9f9f9;
}



.site-heading h4 {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.site-heading h4::before {
    background: #00a01d none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
}

.site-heading {
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: -5px;
}

.carousel-shadow .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
    background: #ffffff none repeat scroll 0 0;
    border: 2px solid;
    height: 15px;
    margin: 0 5px;
    width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
    background: #0010a0 none repeat scroll 0 0;
    border-color: #00a01d;
}

.we-offer-area .item {
    background: #ffffff none repeat scroll 0 0;
    border-left: 2px solid #00a01d;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.we-offer-area.text-center .item {
    background: #ffffff none repeat scroll 0 0;
    border: medium none;
    padding: 67px 40px 64px;
    border-radius: 10px;
}

.we-offer-area.text-center .item i {
    background: #002c4d none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    font-size: 40px;
    height: 80px;
    line-height: 80px;
    position: relative;
    text-align: center;
    width: 80px;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
    border: 2px solid #346992;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 90px;
    left: -5px;
    position: absolute;
    top: -5px;
    width: 90px;
    z-index: -1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
    border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
    margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    right: 30px;
    top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
    background: #00a01d none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
    color: #ffffff;
}

.we-offer-area .item i {
    color: #00a01d;
    display: inline-block;
    font-size: 60px;
    margin-bottom: 20px;
}

.we-offer-area .item h4 {
    font-weight: 600;
    text-transform: capitalize;
}

.we-offer-area .item p {
    margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
    background: #002c4d none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: -1;
}

.we-offer-area .item:hover::after {
    left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
    color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
    border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
    background-color: #ffffff !important;
    color: #ff4d29 !important;
}

.we-offer-area.text-left .item i {
    background: #00a01d none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 60px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 30px;
    position: relative;
    width: 100px;
    z-index: 1;
    text-align: center;
}

.we-offer-area.text-left .item i::after {
    border: 2px solid #00a01d;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 120px;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 120px;
}

/* end facilicties */

/* ==== Cards using Bootstrap === */

#cards .card {
    border-radius: 20px;
    min-height: 100%;
}

#cards .heading-border {
    position: absolute;
    width: 100%;
    top: 60%;
}

#cards .card .user-picture img {
    position: absolute;
    top: -20%;
    right: 7%;
    background: #ff4d29 !important;
    padding: 3px;
}

#cards .card .user-content .user-name {
    margin-right: 150px;
}

.user-picture img {
    width: 40%;
    transition: transform 0.3s ease-in-out;
}
.user-picture img:hover {
    width: 45%;
    height: 60%;
    transform: scale(1.2);
}

.blockquote-footer {
    margin-top: 0rem;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #6c757d;
}

.small i {
    color: orangered;
}






/* COURSE START */



.pricing-table {
    background: #002c4d;
    box-shadow: 0px 1px 10px -6px rgba(46, 15, 155, 0.884);
    padding: 2rem;
    border-radius: 10px;
    transition: .3s;
}



.pricing-table:hover {
    box-shadow: 0px 1px 10px -4px rgba(194, 19, 19, 0.863);
    border-radius: 30px;
    transform: translateY(-10px);
}

.pricing-table .pricing-label {
    border-radius: 2px;
    padding: .25rem .5rem;
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
}

.pricing-table h2 {
    color: #f3f3f3;
    font-size: 21px;
    font-weight: 500;
}

.pricing-table h5 {
    color: #B3B3B3;
    font-size: 14px;
    font-weight: 400;
}

.pricing-table .pricing-features {
    margin-top: 2rem;
}

.pricing-table .pricing-features .feature {
    font-size: 14px;
    margin: .5rem 0;
    color: #ffffff;
}

.pricing-table .pricing-features .feature span {
    display: inline-block;
    float: right;
    color: #ffffff;
    font-weight: 500;
}






.purple .pricing-label {
    background: #ff4d29;
    color: #ffffff;
}






.turquoise .pricing-label {
    background: #ff4d29;
    color: #ffffff;
}






.red .pricing-label {
    background: #ff4d29;
    color: #ffffff;
}

.intro1 {

    text-align: center;
}

.copyright {
    text-align: center;
    padding: 15px;
    color: var(--text-color);
    font-size: 13px;
    background: #011b31;
    color: white;
}

.copyright a {
    color: yellow;
    text-decoration: none;
    font-size: 15px;
}


/* whychose */

.section-head {
    margin-bottom: 40px;
}



.section-head h4 {
    position: relative;
    padding: 0;
    color: #f91942;
    line-height: 1;
    letter-spacing: 0.3px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
}

.section-head h4:before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.section-head h4 span {
    font-weight: 700;
    padding-bottom: 5px;
    color: #2f2f2f
}

p.service_text {
    color: #cccccc !important;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.section-head p,
p.awesome_line {
    color: #818181;
    font-size: 16px;
    line-height: 28px;
    
  
}

.extra-text {
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
}

.extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.extra-text span {
    font-weight: 700;
    color: #f91942;
}

.item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item:hover {
    background: #f91942;
    box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
    color: #fff;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item .icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: #f91942;
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}

.item .feature_box_col_one {
    background: rgba(247, 198, 5, 0.20);
    color: #f91942
}

.item .feature_box_col_two {
    background: rgba(255, 77, 28, 0.15);
    color: #f91942
}

.item .feature_box_col_three {
    background: rgba(0, 147, 38, 0.15);
    color: #f91942
}

.item .feature_box_col_four {
    background: rgba(0, 108, 255, 0.15);
    color: #f91942
}

.item .feature_box_col_five {
    background: rgba(146, 39, 255, 0.15);
    color: #f91942
}

.item .feature_box_col_six {
    background: rgba(23, 39, 246, 0.15);
    color: #f91942
}

.item p {
    font-size: 15px;
    line-height: 26px;
}

.item h6 {
    margin-bottom: 20px;
    color: #2f2f2f;
}

.mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

.mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}

.mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}

.skills {
    padding-top: 0px;
}

.skills .prog-item {
    margin-bottom: 25px;
}

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

.skills .prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 20px;
    position: relative;
}

.skills .prog-item .skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #f91942;
    width: 10%;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}

a,
a:active,
a:focus {
    color: #333;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}


span,
a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}



.gallery-item img {
    transition: transform 0.3s ease;
}

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


/* our lab */
/* Styling for the lab buttons */
.lab-btn {
    width: 100%;
    text-align: left;
    border-radius: 0;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
  }

  .lab-btn:hover {
    background-color: #FF6347;
    color: white;
  }

  .lab-btn.active {
    background-color: #007bff;
    color: white;
  }

  /* Card animation */
  .collapse-content {
    animation: fadeIn 0.5s ease-in-out;
  }

  /* Keyframe animation for fade effect */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Aligning the content */
  .lab-content {
    text-align: center;
  }

  .lab-content h3{
  margin-top: 6px;
  }
  .lab-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 5px;
  }


/* admission */

.just{
    text-align: justify;
}

.header-text {
    text-align: center;
    margin: 20px 0;
  }

  .card {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
  }

  .btn-primary {
    background-color: #f05125;
    border-color: #f05125;
  }

  .btn-primary:hover {
    background-color: #e04722;
    border-color: #e04722;
  }

  /* Animation for section collapse */
  .collapse-content {
    padding: 15px;
    

    border-radius: 5px;
    /*background-color: #fff;*/
  }




  /* Buttons styling for hover effect */
  .btn-custom  {
    background-color: #ff4d29;
    color: white;
    margin: 5px;
    padding: 9px;
    font-size: 18px;
  }

  .btn-custom:hover {
    background-color: #ff4d29;
  }


 

  .map {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
  }
  .location-section {
    padding: 20px;
  }
  .location-icon, .bi-telephone,.bi-envelope {
    font-size: 24px;
    color: #FF6347;
  }
  .location-details {
    margin-left: 10px;
  }

  .location-details p {
  color: #000;
  }

  /* counter section */

  .counter-section {
 
 background-color: #002c4d;
  }

  .counter-box {
    text-align: center;
   
    border-right: 1px solid #e6e6e6;
  }

  .counter-box:last-child {
    border-right: none;
  }

  .counter {
    font-size: 48px;
    font-weight: bold;
    color: #FF6347;
  }

  .counter-title {
  
    font-size: 20px;
    color: #ffffff;
   margin-bottom: 20px;
  }

  .read-more {
    color: rgb(240, 9, 9);
    font-size: 14px;
    margin-top: 5px;
    display: block;
  }

 
  .bsb-service-8 {
    background-position: 50%;
    background-size: cover;
}



.departments-wrap-layout6 {
    position: relative;
    overflow: hidden;
    background: url(../imgs/bg2.png) no-repeat;
    background-color: #f3f3f3;
}

.class-schedule1 {
   
    background: url(../imgs/bg2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}


/* news section */

.news-notice, .events {
    height: 400px; /* Set height to create a scrolling effect */
    overflow-y: auto; /* Enable vertical scrolling */
    border-radius: 5px; /* Rounded corners */
    padding: 30px;
    margin: 10px 0;
    background-size: cover; /* Ensure background image covers the div */
    background-repeat: no-repeat; /* Prevent background image from repeating */
    background-image: url('../imgs/bg1.jpg'); /* Replace with your image path */

    
}



/* Background images for News and Notices */
#news {
    color: rgb(0, 0, 0); /* Text color */
}

#notices {
    color: rgb(0, 0, 0); /* Text color */
}

.news-item, .notice-item {
    padding: 10px;
    margin: 5px 0; /* Space between items */
    transition: background-color 0.3s;
    border-radius: 5px; /* Rounded corners for items */

    
}

.news-item:hover, .notice-item:hover {
    background-color: #094888cb; /* Light hover effect */
    color: white;
}

/* Style for Events */
.events {
    background-color: white; /* Background color for events */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
}

.list-group-item {
    cursor: pointer;
 
}

.list-group-item:hover {
    background-color: #094888; /* Light hover effect for list items */
    color: white;
}


/* news */

.scrollable-content {
    overflow-y: auto; /* Enable vertical scrolling */
    
    border: 1px solid #ccc;
   
    background-color: white;
}


/* Custom Scrollbar Styles */
.scrollable-content::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

.scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 10px; /* Rounded corners for the track */
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: #0763a7; /* Color of the scrollbar thumb */
    border-radius: 10px;
    height: 100px; /* Rounded corners for the thumb */
   
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #002c4d; /* Color of the scrollbar thumb on hover */
}



/* Custom Scrollbar Styles for WebKit (Chrome, Safari, Edge) */
body::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 10px; /* Rounded corners for the track */
}

body::-webkit-scrollbar-thumb {
    background: #0763a7; /* Color of the scrollbar thumb */
    border-radius: 10px;
    height: 60px; /* Rounded corners for the thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background: #002c4d; /* Color of the scrollbar thumb on hover */
}

/* back to top */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-size: 24px; /* Icon size */
    display: none; /* Initially hidden */
    background-color:#002c4d; /* Bootstrap primary color */
    color: white; /* Icon color */
    border: none; /* Remove border */

    padding: 5px; /* Add some padding */
    text-align: center; /* Center the icon */
    transition: opacity 0.3s;
}

.section-head1 p {
  
    font-size: 16px;
    line-height: 28px;
  
  
}


.accordion-item1 {
    border: 1px solid rgba(0, 0, 0, .125);
}

/*g20 logo*/

.logo1 img {
    width: 93px;
    height: 78px;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}

@media only screen and (max-width: 873px) {
  /* For mobile phones: */
  .logo1 img {
    width: 83px; 
    height: 50px;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s; 
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}
.logo img {
        width: 60px;
         height: 50px;
    }
    .logo a span {
        font-size: 13px;
    }
.logo a span small {
    display: block;
    font-size: 15px;
    margin-top: 5px;
}
}



