/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Open Sans", sans-serif; */
  color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: 'Poppins', sans-serif;
  line-height: 30px;
}


a {
  text-decoration: none;
  color: darkred;
  font-size: 0.9rem;
}

a:hover {
  color: #80c792;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5cb874;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

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

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fbfbfb;
  min-height: 6vh;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#topbar .contact-info {
  display: flex;
  align-items: center;
}

#topbar .contact-info a {

  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #5cb874;
}

#topbar .contact-info i {
  color: #5cb874;
}


#topbar .social-links a {
  color: #6f6f6f;
  /* padding: 4px 12px; */
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #5cb874;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  min-height: 5vh;

}

.head1 {
  display: flex;
}

@media (max-width:909px) {
  .head1 {
    text-align: center;
    flex-direction: column;
  }

  #topbar {
    flex-direction: column;

  }

  #topbar .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #topbar .btn-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}


.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  font-size: 15px;
  color: #f0f0f0;
  background: darkred;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
/* .navbar .active, */
.navbar .active:focus,
.navbar li:hover>a {
  color: #5cb874;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: #5cb874;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid #5cb874;
  transition: 0.3s;
  font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #5cb874;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5cb874;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5cb874;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5cb874;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*  */
/* Departments submenu force right side */
.navbar .dropdown .dropdown ul {
  left: 100% !important;
  right: auto !important;
}

.navbar .dropdown .dropdown:hover>ul {
  left: 100% !important;
}

/* Disable left-shift only for Departments */
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: 100% !important;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  background-color: rgba(9, 9, 9, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

/* FIX CAROUSEL HEIGHT */
#carouselExampleControls .carousel-inner,
#carouselExampleControls .carousel-item {
  height: 500px;
}

/* FIX IMAGE SIZE */
#carouselExampleControls .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


#hero .carousel-item::before {
  content: "";
  background-color: rgba(142, 0, 0, .2);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(142, 0, 0, .7);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(142, 0, 0, .7);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #5cb874;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #5cb874;
}

#hero .btn-get-started:hover {
  background: #6ec083;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 66px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
}

.section-bg {
  background-color: #f8fcf9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #5cb874;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px;
}

.featured-services .icon-box {
  padding: 10px;
}

.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  color: #5cb874;
  font-size: 42px;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
}

.featured-services .title a {
  color: #222222;
  transition: 0.3s;
}

.featured-services .icon-box:hover .title a {
  color: #5cb874;
}

.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5cb874;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #6ec083;
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/

.clients .swiper-slide img {

  transition: 0.3s;

}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #fff;

  border: 1px solid #5cb874;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}

/* Clients swiper item - perfect circle */
.clients .swiper-slide {
  width: 120px;
  height: 120px;
  border: 2px dashed darkred;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  /* transition: all 0.3s ease; */
}

/* Logo image inside circle */
.clients .swiper-slide img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: 0.3s;
}

/* Hover effect */
.clients .swiper-slide:hover {
  background: #fff3f3;
  border-color: #8b0000;
  /* transform: scale(1.05); */
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 40px 30px 30px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 5px 5px 10px grey;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #5cb874;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #5cb874;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}


/* UL reset */
.col-sm-12 ul {
  padding-left: 0;
  margin-top: 10px;
}

/* LI same as P */
.col-sm-12 ul li {
  list-style: none;
  font-size: 15px;
  text-align: justify;
  font-family: 'Poppins', sans-serif;
  line-height: 30px;
  color: #444444;
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

/* Checkmark before LI */
.col-sm-12 ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: darkred;
  font-size: 14px;
  font-weight: 600;
}

/* UL reset */
.col-sm-8 ul {
  padding-left: 0;
  margin-top: 10px;
}

/* LI same as P */
.col-sm-8 ul li {
  list-style: none;
  font-size: 15px;
  text-align: justify;
  font-family: 'Poppins', sans-serif;
  line-height: 30px;
  color: #444444;
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

/* Checkmark before LI */
.col-sm-8 ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: darkred;
  font-size: 14px;
  font-weight: 600;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

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

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* background: */
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #6ec083;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #5cb874;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #5cb874;
  border-bottom: 3px solid #5cb874;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #5cb874;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6ed;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555555;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #5cb874;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #5cb874;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #5cb874;
  border-bottom: 3px solid #5cb874;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5cb874;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #5cb874;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #6ec083;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fbfbfb;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 66px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #090909;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #5cb874;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #449d5b;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

.activity-area {
  padding: 60px 0 56px;
  text-align: center
}

.single-activity-icon {
  border: 1px solid darkred;
  border-radius: 50%;
  color: activity-area;
  display: inline-table;
  font-size: 50px;
  height: 100px;
  margin-bottom: 25px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100px;
}

.single-activity-icon i {
  display: table-cell;
  vertical-align: middle;
  color: darkred;
}

.single-activity:hover .single-activity-icon {
  background: #d4dbee;
  color: darkred;
}

.activity:nth-child(2) .single-activity .single-activity-icon {
  border-color: darkred;
  color: #f5b120;
}

.activity:nth-child(2) .single-activity:hover .single-activity-icon {
  background: #d4dbee;
  color: darkred;
}

.activity:nth-child(3) .single-activity .single-activity-icon {
  border-color: darkred;
  color: #93c524;
}

.activity:nth-child(3) .single-activity:hover .single-activity-icon {
  background: #d4dbee;
  color: #ffffff;
}

.activity:nth-child(4) .single-activity .single-activity-icon {
  border-color: darkred;
  color: #28a8e3;
}

.activity:nth-child(4) .single-activity:hover .single-activity-icon {
  background: #d4dbee;
  color: #ffffff;
}

.single-activity h4 {
  color: #1bb4b9;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 17px;
}

.activity:nth-child(2) .single-activity h4 {
  color: #f5b120;
}

.activity:nth-child(3) .single-activity h4 {
  color: #93c524;
}

.activity:nth-child(4) .single-activity h4 {
  color: #28a8e3;
}

.single-activity>p {
  margin-bottom: 0;
}

/*------------------footer---------------------------------*/

/*17. Footer*/
footer p {
  color: #c5c5c5;
  line-height: 2;
}

footer ul {
  list-style: none;
  padding-left: 0;
  color: #c5c5c5;
}

footer ul li {
  padding-bottom: 0.5rem;
}

footer .fas {
  font-size: 20px;
  color: #e38b00;
}

footer ul li a:hover {
  color: #e38b00;
}

.address-icon .fa {
  font-size: 20px;
}

.social-icon li {
  display: inline-block;
  margin-right: 1rem;
  font-size: 18px;
}

.s1 {
  color: white;
}

.s2 ul li {
  color: white;
}

.s3 ul li a {
  color: white;
}

/*-------------------section title--------------------*/
.my-icon {
  border: 1px solid white;
  font-size: 15px;
  color: #5cb874;
  float: left;
  width: 30px;
  height: 30px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.my-icon1 {
  border: 1px solid darkred;
  font-size: 15px;
  color: #5cb874;

  width: 30px;
  height: 30px;
  background: #fbfbfb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  left: 2wv;
}

/*-------------------class ------------------------------*/



.enquiry {
  height: 48px;
  width: 160px;
  position: fixed;
  transform: rotate(90deg);
  top: 270px;
  z-index: 999999999;
  left: -70px;
  border-radius: 10px 10px 10px 10px;
  animation: blink 1s infinite;
  box-shadow: 1px 1px 5px #d7def0;
}

.admission {
  height: 48px;
  width: 160px;
  position: fixed;
  transform: rotate(-90deg);
  top: 500px;
  z-index: 9999999999;
  right: -4rem;
  border-radius: 10px 10px 10px 10px;
  animation: blink 1s infinite;
  box-shadow: 1px 1px 5px #d7def0;
}

@keyframes blink {
  0% {
    color: white;
    background: darkred;
  }

  35% {
    color: white;
    background: darkred;
  }

  70% {
    color: darkred;
    background: orange;
  }

  100% {
    color: darkred;
    background: orange;
  }
}

/* Table base */
.table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  background: #fff;
}

/* Table header */
.table thead th {
  background: #8b0000;
  /* dark red */
  color: #ffffff;
  font-weight: 600;
  padding: 12px 10px;
  text-align: center;
  border: none;
}

/* Table body cells */
.table tbody td {
  padding: 10px 10px;
  text-align: center;
  color: #111;
  border-bottom: 1px solid #ddd;
}

/* Zebra rows */
.table tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* Hover effect */
.table tbody tr:hover {
  background-color: #ffeaea;
  transition: 0.3s;
}

/* First column (S.No) bold */
.table tbody td:first-child {
  font-weight: 600;
}

/* Remove bootstrap green effect if present */
.table-success {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: transparent;
}

/* nss card  */

/* NSS Card */
.nss-card {
  background: #fff;
  border-left: 4px solid #0b2c5d;
  border-radius: 6px;
  padding: 20px 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Unit Title */
.unit-title {
  font-size: 20px;
  font-weight: 600;
  color: #0b2c5d;
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.unit-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #f28c28;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* List Styling */
.nss-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.nss-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #222;
}

/* Red check mark */
.nss-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: red;
  font-weight: bold;
  font-size: 15px;
}

/* Bold words highlight */
.nss-list li strong {
  font-weight: 600;
}

.para-heading {
  color: #8e0000 !important;
  /* Dark Red */
  font-weight: 600;
  text-decoration: underline;
}

.contact-maroon {
  margin-top: 30px;
}

/* Card */
.maroon-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  border-top: 5px solid #7b0000;
  box-shadow: 0 8px 20px rgba(123, 0, 0, 0.15);
  transition: all .3s ease;
  height: 90%;
}

.maroon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(123, 0, 0, 0.25);
}

/* Icon */
.maroon-icon {
  width: 65px;
  height: 65px;
  background: #7b0000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 15px;
}

/* Headings */
.maroon-card h4 {
  color: #7b0000;
  font-weight: 700;
  margin-bottom: 5px;
}

.maroon-card h5 {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

/* Paragraph & Links */
.maroon-card p {
  font-size: 14px;
  color: #555;
}

.maroon-card a {
  color: #7b0000;
  font-weight: 600;
  text-decoration: none;
}

.maroon-card a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-links a {
  color: #7b0000;
  font-size: 24px;
  margin: 0 6px;
  transition: .3s;
}

.social-links a:hover {
  color: #4d0000;
}

.slider-bg {
  height: 500px;
  background-size: cover;
  background-position: center;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1;
}

.carousel-item {
  position: relative;
}

.carousel-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding-left: 60px;
}

.carousel-caption h2,
.carousel-caption h3 {
  color: #fff;
}

/* ===== SLIDER CAPTION BASE ===== */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
}

/* ===== ACTIVE SLIDE ANIMATION ===== */
.carousel-item.active .carousel-caption {
  animation: slideFromLeft 1.2s ease forwards;
}

/* ===== KEYFRAMES ===== */
@keyframes slideFromLeft {
  0% {
    transform: translate(-150%, -50%);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

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

.carousel-caption h2 {
  animation: textFade 1.4s ease forwards;
}

.carousel-caption h3 {
  animation: textFade 1.6s ease forwards;
}

.carousel-caption a {
  animation: textFade 1.8s ease forwards;
}

@keyframes textFade {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

.animate-3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.7rem;
  padding: 5px 10px;
  /* 👈 width yahin se kam hui */
  border: 1px solid #fff;
  border-radius: 18px;

  background: transparent;
  color: #fff;

  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;

  transition: all 0.3s ease;
}

/* ICON */
.animate-3 i {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

/* HOVER */
.animate-3:hover {
  background: #fff;
  color: #7b1136;
}

.read-btn a {
  width: 120px;
  height: 40px;
}

.read-btn a:hover {
  background-color: maroon;
  color: #fff;
  /* font-size: 16px; */
  font-weight: bold;
}



@media(max-width:768px) {
  .carousel-caption {
    padding: 20px;
    text-align: center;
  }
}

/* ================= COLLEGE LOGO ================= */

.college-logo1 {
  max-width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.college-logo2 {
  max-width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  margin: auto;
}

/* Extra small (mobile) */
@media (max-width: 575px) {
  .college-logo {
    max-height: 55px;
  }

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

/* Small screens (mobile/tablet) adjustments */
@media (max-width: 991px) {

  /* tum width change kar sakte ho as per requirement */
  /* "What's New" header */
  .col-lg-3 h4 {
    font-size: 1rem;
    height: 4vh;
  }

  /* Marquee height aur font size */
  .col-lg-3 marquee {
    height: 180px !important;
    font-size: 0.75rem;
  }

  /* Notice row ka marquee chota font */
  .row .col-lg-11 marquee {
    font-size: 0.75rem;
  }
}


/* ================= MOBILE LOGO ORDER FIX ================= */
@media (max-width: 575px) {

  .head1 {
    text-align: center !important;
  }

  /* logos upar side-by-side */
  .logo-left {
    order: 1;
  }

  .logo-right {
    order: 2;
  }

  /* college text neeche */
  .head1>div:nth-child(2) {
    order: 3;
  }

  /* CAS button last */

  .cas {
    order: 4;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  /* logo spacing control */
  .logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .college-logo1,
  .college-logo2 {
    max-height: 55px;
  }


  /* ===== SLIDER ===== */
  #carouselExampleControls {
    height: 25vh;
  }

  #carouselExampleControls .carousel-item,
  #carouselExampleControls .slider-bg {
    height: 25vh !important;
  }

  /* slider text hide */
  #carouselExampleControls .carousel-caption {
    display: none !important;
  }

  /* ===== WHAT'S NEW ===== */
  /* marquee {
    height: 180px !important;
    font-size: 0.75rem;
  } */

  /* ===== ABOUT IMAGE CENTER ===== */
  section img[alt="..."] {
    display: block;
    margin: 0 auto;
    align-items: center;
    width: 95% !important;
    height: auto !important;
  }

  /* ===== OUR MENTORS ===== */
  .services .icon-box {
    text-align: center;
    width: 100%;
  }

  .services .icon-box img {
    display: block;
    margin: 0 auto 10px auto;
    width: 160px !important;
    height: auto !important;
  }

  /* ===== PRINCIPAL MESSAGE ===== */
  .col-sm-3 img {
    display: block;
    margin: 0 auto;
    width: 60% !important;
    height: auto !important;
  }

  .col-sm-9 p {
    text-align: justify;
    font-size: 0.85rem;
  }

  .swiper-slide {
    width: 100px !important;
    height: 100px !important;
    border: 2px dashed maroon;
  }

  /* ===== STUDENT INFORMATION SYSTEM ===== */
  .sis,
  .student-info {
    padding: 0px !important;
    font-size: 0.8rem;
  }

  .cta {
    padding: 20px !important;
  }

  /* ===== TESTIMONIAL ===== */
  #testimonials p {
    font-size: 0.9rem !important;
  }

  /* ===== GALLERY ===== */
  .portfolio-item img {
    height: 200px !important;
  }

}

/* Small devices */
@media (min-width: 576px) and (max-width: 767px) {
  .college-logo {
    max-height: 65px;
  }

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




  /* slider height medium */
  #carouselExampleControls,
  #carouselExampleControls .carousel-item,
  #carouselExampleControls .slider-bg {
    height: 45vh;
  }

  /* slider text visible but small */
  .carousel-caption h2 {
    font-size: 1.2rem;
  }

  .carousel-caption h3 {
    font-size: 1rem;
  }

  /* mentors center */
  .services .icon-box {
    text-align: center;
  }

  .services .icon-box img {
    margin: 0 auto;
    width: 170px;
  }

  /* principal image */
  .col-sm-3 img {
    width: 40vw !important;
    margin: auto;
  }

  /* associations 3 items */
  .clients-slider .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {

  /* Desktop logos (left & right) */
  .college-logo1,
  .college-logo2 {
    max-height: 75px;
    width: auto;
  }

  /* Mobile logos ko hide rakho (safety) */
  .college-logo-mobile1,
  .college-logo-mobile2 {
    display: none;
  }

  /* Logos thode chhote */
  .college-logo1,
  .college-logo2 {
    max-height: 70px;
    width: auto;
  }

  .college-name {
    padding-left: 10px;
  }

  /* CAS button ko next line + center */
  .cas {
    width: 100%;
    justify-content: center !important;
    margin-top: 12px;
  }

  .cas .btn {
    font-size: 0.85rem;
    padding: 6px 12px;
    white-space: nowrap;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #carouselExampleControls,
  #carouselExampleControls .carousel-item,
  #carouselExampleControls .slider-bg {
    height: 60vh;
  }

  .carousel-caption h2 {
    font-size: 1.6rem;
  }

  .carousel-caption h3 {
    font-size: 1.3rem;
  }

  .services .icon-box {
    text-align: center;
  }

  .col-sm-3 img {
    width: 25vw !important;
  }
}


/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
  .college-logo {
    max-height: 85px;
  }

  #carouselExampleControls,
  #carouselExampleControls .carousel-item,
  #carouselExampleControls .slider-bg {
    height: 80vh;
  }

  .carousel-caption h2 {
    font-size: 2.2rem;
  }

  .carousel-caption h3 {
    font-size: 1.8rem;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .college-logo {
    max-height: 95px;
  }
}

/* ===== DESKTOP LOGOS ===== */
.college-logo1 {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.college-logo2 {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

/* ===== MOBILE LOGOS ===== */
.college-logo-mobile1 {
  max-height: 65px;
  width: auto;
  object-fit: contain;
}

/* ===== MOBILE LOGOS ===== */
.college-logo-mobile2 {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

/* spacing for CAS on mobile */
/* @media (max-width: 767px) {
  .cas {
    margin-top: 10px;

  }
} */


/* Default (large devices) */
.inner-banner {
  height: 250px;
  min-height: 160px;
}

/* Medium devices (>=768px and <992px) */
@media (max-width: 991.98px) and (min-width: 768px) {
  .inner-banner {
    height: 220px;
  }
}

/* Small devices (>=576px and <768px) */
@media (max-width: 767.98px) and (min-width: 576px) {
  .inner-banner {
    height: 200px;
  }
}

/* Extra small devices (<576px) */
@media (max-width: 575.98px) {
  .inner-banner {
    height: 160px;
  }
}

/* Image wrapper */
.img-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

/* Image responsive height */
.img-center img {
  max-width: 100%;
  height: auto;
  /* maintains aspect ratio */
}

/* Media Queries */

/* Extra small devices <576px */
@media (max-width: 575.98px) {
  .img-center img {
    width: 90%;
    /* smaller width for mobile */
  }
}

/* Small devices 576px - 767px */
@media (min-width: 576px) and (max-width: 767.98px) {
  .img-center img {
    width: 80%;
  }
}

/* Medium devices 768px - 991px */
@media (min-width: 768px) and (max-width: 991.98px) {
  .img-center img {
    width: 70%;
  }
}

/* Large devices >=992px */
@media (min-width: 992px) {
  .img-center img {
    width: 100%;
  }
}