a{
	text-decoration:none;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}
.btn.btn-primary {
	box-shadow: inset 0 0 0 0 #0e8b02;
    background: #0e8b02;
    border: #0e8b02;
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: #135b0d;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 #0e8b02;
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 #0e8b02;
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(42 106 36) !important;
}
/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #b10101;
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid #135b0d;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid #135b0d;
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgb(19 91 13 / 50%), rgb(19 91 13 / 50%)), url(../img/img2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: #f60000 !important;
    font-size: 18px;
}
.bg-breadcrumb h3{
	font-size: 60px;
    color: #ffffff;
}
@media (max-width: 768px) {
     .bg-breadcrumb h3{
		font-size: 32px;
	}
	.bg-breadcrumb {
		padding: 10px 0 50px 0;
	}
}
/*** Single Page Hero Header End ***/



/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    background: #fcfcfc;
    color: #000;
    border-bottom: 1px solid #c0c0c0;
	padding:5px 0px;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
	font-size:14px;
}

.topbar a:hover,
.topbar a i:hover {
    color: #d10303;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
.topbar .social-icon a{
	color: #135b0d;
    border: 1px solid #135b0d;
    border-radius: 50%;
    padding: 2px 8px;
    margin-right: 8px;
 }

.topbar .social-text a{
	color: #135b0d;
}
.topbar .social-icon a:hover{
	color:#d10303;
	border:1px solid #d10303;
}
/*****************************************/
.header-sec-img{
	padding:5px 0px;
}
.header-sec-img i{
    margin-left: 38px;
    color: #f1f6f1;
    font-size: 22px;
    background: #0e8b02;
    padding: 4px 12px;
    border-radius: 12px;
}
.header-sec-img .con-text{
	color: #065100;
    font-weight: 500;
	box-shadow: inset 0 0 0 0 #0e8b02;
}
.header-sec-img .con-text:hover{
    padding: 0px 15px;
    background: #0e8b02;
	box-shadow: inset 300px 0 0 0 #0e8b02;
    color: var(--bs-light) !important;
	
}
@media (max-width: 991.98px) {
	.header-sec-img img{
		height:70px;
		}
}
/*** Topbar End ***/

/*** Navbar ***/
.header{
	background:#135b0d;}
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 5px 32px;
    color: var(--bs-white) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;

}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 12px 34px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #135b0d;
    color: #fff;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        
    }
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 3px 10px;
        border: 1px solid #f5f7f4;
        color: #ffffff;
	}
    .navbar-light .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid #DDDDDD;
        background: white;
        padding: 15px;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: #d20505 !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: #b10101;
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}
.carousel-caption h1{
    font-weight: 500;
    font-size: 57px;
    font-style: italic;
    font-family: auto;
}
.carousel-caption p{
font-size: 18px;
}
@media (max-width: 768px) {
	.carousel-caption h1{
		font-size: 32px;
		margin-top:-180px;
	}
	.carousel-caption p{
		font-size: 15px;
	}
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 600px;
        margin-top: -100px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
}
/*** Carousel Hero Header End ***/


/*** About Start ***/
.about .about-img{
	border: 50px solid; 
	border-color: transparent #109e03 transparent #109e03;
}
.about .about-sec{
	background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/logo-icon.png);
	 background-repeat: no-repeat;
  	 background-size: cover;
	}
.about .about-sec h1{
	font-weight: 700;
    font-family: sans-serif;}
.about .about-sec h1 span{
	color:#135b0d;}
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #b10101;
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid #135b0d ;
}
/*** About End ***/

/*** faculty Start ***/
.faculty{
    background: #6f6f6f12;
}
.faculty h1{
	font-weight: 600;
    font-family: sans-serif;
    color: #135b0d;
}
.faculty .faculty-item .faculty-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}
.faculty .faculty-item .faculty-info p{
	color:#fff;
	margin-bottom:0px;
	padding:10px;
	text-align:center;	
}
.faculty .faculty-item .faculty-img .faculty-info {
    background: rgba(0, 0, 0, .3);
}
.faculty .faculty-item .faculty-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.faculty .faculty-item .faculty-img:hover.faculty-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgb(17 101 8 / 60%) rgb(17 101 8 / 60%) rgb(17 101 8 / 60%) rgb(17 101 8 / 60%);
    visibility: visible;
}
.faculty .faculty-item .faculty-img img {
    transition: 0.5s;
}

.faculty .faculty-item .faculty-img:hover img {
    transform: scale(1.3);
}
	.faculty .faculty-carousel {
    position: relative;
}

.faculty .faculty-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid #135b0d;
    border-radius: 30px;
    transition: 0.5s;
}

.faculty .faculty-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid #135b0d;
    border-radius: 30px;
    transition: 0.5s;
}

.faculty .faculty-carousel .owl-nav .owl-prev i,
.faculty .faculty-carousel .owl-nav .owl-next i {
    color: #135b0d;
    font-size: 17px;
    transition: 0.5s;
}

.faculty .faculty-carousel .owl-nav .owl-prev:hover,
.faculty .faculty-carousel .owl-nav .owl-next:hover {
    background: #135b0d;
}

.faculty .faculty-carousel .owl-nav .owl-prev:hover i,
.faculty .faculty-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** faculty End ***/



/*** Gallery Start ***/
.gallery h1{
	font-weight: 600;
    font-family: sans-serif;
    color: #135b0d;
}
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgb(42 106 36 / 47%);
}

/*** Gallery End ***/

/***  staff Start ***/
.staff{
    background: #6f6f6f12;
}
.staff .staff-item{
    border: 1px solid #065100;
    border-radius: 5px;
	box-shadow: 2px 2px 4px 1px #0e8b02;
}
.staff h1{
	font-weight: 600;
    font-family: sans-serif;
    color: #135b0d;
}
.staff .staff-item-img {
  position: relative;
}
.staff .staff-title{
	background:#1e9513;
	color:#FFFFFF;
}
.staff .image {
  display: block;
  width: 100%;
  height: 250px;
}

.staff .overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #135b0d8a;
  overflow: hidden;
  width: 100%;
  height:0;
  transition: .5s ease;
}

.staff .staff-item-img:hover .overlay {
  bottom: 0;
  height: 100%;
}

.staff .text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 30%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-20%, -50%);
  text-align: center;
}
.staff .text h4{
	font-weight: 500;
	}
.staff .text p{
    font-size: 14px;
	}
.staff .staff-item:hover .staff-title{
    background: #135b0d;
    color: var(--bs-white);
}
.staff h5{
	font-size:14px;
	font-weight:600;
	color:#fff;
}
.staff .texts {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
 }
 .staff .texts h4{
	font-weight: 500;
	}
.staff .texts p{
    font-size: 14px;
}
/*** Our staff End ***/


/*** news-con-sec Start ***/
.news-con-sec {
    background: linear-gradient(rgb(16 158 3 / 80%), rgb(177 1 1 / 80%)), url(../img/logo-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}
.news-sec {
  width: 100%;
  height: 100%;
  margin: 35px auto;
  padding: 40px 30px;
  overflow: hidden;
  border: 2px solid #b10101;
  border-radius: 10px;
  background: white;
  position: relative;
}

/* News Card Styles */
.news-sec .news-card {
  padding: 15px;
  border-bottom: 1px solid #ccc;
  display: flex;
  gap: 10px;
  align-items: center;
}

.news-sec .news-image {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.news-sec .news-text {
  flex: 1;
}

.news-sec .news-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #135b0d;
}

.news-sec .news-date {
  font-size: 0.8rem;
  color: #302e2e;
}
.news-sec .news-des {
  font-size: 0.8rem;
  color: #000;
}
.news-con-sec .container .section-news-con-sec-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.news-con-sec .container .section-news-con-sec-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.news-con-sec .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 #135b0d;
}

.news-con-sec .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: #135b0d !important;
}

/***  news-con-sec end ***/

/*** Testimonial Start ***/
.testimonial h1{
	font-weight: 600;
    font-family: sans-serif;
    color: #135b0d;
}
.testimonial .testimonial-carousel {
    position: relative;
}
.testimonial .star{
	color:#e4f700;
}
.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid #135b0d; 
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid #135b0d;
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: #135b0d;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid #135b0d;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid #135b0d;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: #135b0d;
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: #135b0d;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: #0e8b02 !important;
    color: var(--bs-white);
    transition: 0.5s;
}
.testimonial .testimonial-carousel .testimonial-item .testimonial-comment {
	background:rgb(231 232 234);}
.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: #0e8b02;
}

/*** Footer End ***/

/*** footer-line Start ***/
.footer-line {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
.footer-line p:hover{
	color:#FF0000;
}


/*downloads*/
.downloads{
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border: 2px solid #d4eed8;
}

.downloads .table th {
  background-color: #d6f5d6;
  color: #1e4d2b;
}
.downloads .table-hover tbody tr:hover {
  background-color: #e0ffe0;
}
.downloads .bg-green {
  background-color: #e9fce9;
}
.downloads .bg-red {
  background-color: #ffecec;
}
@media (max-width: 768px) {
    .downloads{
	  margin: 20px auto;
	  padding: 10px;
	}
	.downloads .table th {
	font-size:12px;
	}
	.downloads .table td {
	font-size:10px;
	}
}


/*contact us*/
.contacts .contact-wrapper {
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.contacts .contact-left {
  background-color: #135b0d;
  color: #fff;
  padding: 40px 30px;
}

.contacts .contact-left h3 {
  margin-bottom: 30px;
}
.contacts .contact-left a {
  color:#fff;
}
.contacts .contact-left p {
  margin: 10px 0;
}

.contacts .contact-right {
  background-color: #fff;
  padding: 40px;
}

.contacts .form-control {
  border: none;
  background-color: #f1f1f1;
  border-radius: 8px;
}

.contacts .form-control:focus {
  box-shadow: none;
  background-color: #e6ffe6;
}

.contacts .btn-submit {
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 8px;
}

.contacts .btn-submit:hover {
  background-color: #c82333;
}