html, body {
  overflow-x: hidden;
}

/**
 * Enable smooth scrolling on the whole document
 */
html {
  scroll-behavior: smooth;
}

/**
 * Disable smooth scrolling when users have prefers-reduced-motion enabled
 */
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/**
 * Add .section to every anchored element for scroll margin
 */
.section {
  scroll-margin-top: 2rem;
}

/* Header */
.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 3rem;
  text-decoration: none;
}

@media (min-width: 48em) {
  .site-title {
    float: left;
  }
}
@media (max-width: 576px) {
  .about-title {
      font-size: 45px !important;
  }
}


.social-nav .nav-link {
  padding: 0 0.5rem;
  font-size: 1.1rem;
  line-height: 2.5rem;
}

.nav-link {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8) !important;
  position: relative;
  text-decoration: none; 
  display: inline-block; 
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px; 
  width: 0%;
  height: 3px; 
  background-color: #f7e576; 
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%; 
  left: 0; 
}

.intro-title {
  font-weight: 800;
}

.about-title{
  font-weight: 900;
  font-size: 65px;
}

@-webkit-keyframes animateWave {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes animateWave {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

.wave-bg {
  display: block;
  height: 220px;
  width: 100%;
  min-width: 600px;
  transform-origin: top;
  -webkit-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  background-image: url("../images/wave-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
}

img.avatar {
  border-radius: 30px;
}

/* Masonary grid for portfolio */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* Grid Item */
.grid-sizer,
.grid-item {
  width: 100%;
}

.grid-item {
  padding-bottom: 12px;
}

@media (min-width: 48em) {
  .grid-sizer,
  .grid-item {
    width: 25%;
  }
  .grid-item {
    float: left;
    padding: 6px;
  }
}

.grid-item img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* Portfolio */
.portolio-section .container {
  padding: 0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0;
}

.portfolio-item figcaption {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.35s;
  transform: translate3d(0, 100%, 0);
}

.portfolio-item figcaption h4 {
  color: #222;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 3px;
}

.portfolio-item figcaption p {
  color: #444;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.portfolio-item:hover figcaption {
  transform: translate3d(0, 0, 0);
}

/* Portolio Caption */
#bp_container .bp-xc {
  background: #F6E05E !important;
}

#bp_caption a {
  text-decoration: none;
}

/* Footer section */
footer a:not(.nav-link) {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* Scroll Top */
#scrolltop {
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s ease-in;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#scrolltop .btn {
  padding: 3px 11px;
  border-radius: 50%;
}

/* Additional utility styles */
.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
}

.text-small {
  font-size: 0.875rem;
}

.text-uppercase {
  letter-spacing: 0.05em;
}

.hover-effect {
  transition: transform .18s ease-in-out;
}

.hover-effect:hover {
  transform: translateY(-2px);
}

.marker {
  position: relative;
  display: inline;
  width: auto;
}

.marker-center {
  padding-right: 0;
}

.marker:after {
  content: "";
  width: 125px;
  height: 30px;
  position: absolute;
  bottom: -25px;
  right: -30px;
  background-image: url("../images/marker.svg");
  background-repeat: no-repeat;
}

.marker-center:after {
  bottom: -30px;
  left: 50%;
  margin-left: -60px;
}

@media (max-width: 575.98px) {
  .marker {
    padding-right: 0;
  }
  .marker:after {
    bottom: -30px;
    left: 50%;
    margin-left: -60px;
  }

  .divsss{
    min-height: 600px;
  }

}

.entry-title a {
  text-decoration: none;
}


.logo{
  width: 50px;
  margin-bottom: 5px;
}

.hover-effect {
  position: relative;
  color: #000; 
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.hover-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #f7e576;
  transition: left 0.3s ease;
  z-index: -1; 
}

.hover-effect:hover::before {
  left: 0;
}

.hover-effect:hover {
  color: #fff; 
}


.hover-effect:hover h3,
.hover-effect:hover p {
  color: black !important; 
}

.hover-effect:hover .text-secondary {
  color: black !important; 
}


.equal-height {
  display: flex;
  flex-direction: column;
  height: 85%;
}

.equal-heights {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.equal-heights {
  display: flex;
  flex-wrap: wrap;
}

.equal-heights .col-md-4 {
  display: flex;
  flex-direction: column;
}

.equal-heights .hover-effect {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-bottom: 20px; 
}

#hero-section {
  padding-bottom: 200px;
  background-size: cover;
  background-position: center;
}

#career{
  padding-bottom: 200px;
  background-image: url("../images/team/career.jpg");
  background-size: cover;
  background-position: center;
}

#about-us{
  padding-bottom: 150px;
  background-size: cover;
  background-position: center;
  background-image:  url("../images/team/about-us.jpg");
}

#e-publish{
  background-image: url("../images/team/e-learning.jpg");
  padding-bottom: 150px;
  background-size: cover;
  background-position: center;
  border-image: linear-gradient(hsla(240, 100%, 3%, 0.6), hsl(0 100% 20% / .6%)) fill 1;
}

#e-sol{
  background-image: url("../images/team/e2e-sol.jpg");
  padding-bottom: 200px;
  background-size: cover;
  background-position: center;
}

#graphics{
  background-image: url("../images/team/graphic.jpg");
  padding-bottom: 200px;
  background-size: cover;
  background-position: center;
}

#web-dev{
  background-image: url("../images/team/web-dev.jpg");
  padding-bottom: 200px;
  background-size: cover;
  background-position: center;
}

#digital{
  background-image: url("../images/team/digital.jpg");
  padding-bottom: 200px;
  background-size: cover;
  background-position: center;
}

#help-div{
  background-image: url("../images/team/contact-us-hero.jpg");
  padding-bottom: 150px;
  background-size: cover;
  background-position: center;
  border-image: linear-gradient(hsla(0, 0%, 0%, 0.6), hsla(0, 0%, 0%, 0.006)) fill 1;
  color: white;
}

#contact-us{
  padding-bottom: 150px;
  background-size: cover;
  background-position: center;
  background-image:  url("../images/team/contact-us.jpg");
}

.nav-item{
  margin-left: 10px;
}

.divsss{
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 500px;
}

.divsss:hover {
  transform: translateY(-10px);  
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);  
}

.divsss img {
  transition: transform 0.3s ease;
}

.divsss:hover img {
  transform: scale(1.05);  
}

.divsss .h5 {
  color: #333;
}

.divsss:hover .h5 {
  color: black;
}

.yellow-text{
  /* background-color: black; */
  /* color: rgb(248, 248, 26); */
}

.no-hover::after {
  content: none !important;
}

.no-hover:hover,
.no-hover:focus {
  pointer-events: auto;
}


/* Basic reset for lists */
ul.modern-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-list .list-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-size: 1rem;
  color: #333;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin: 8px 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.modern-list .list-item i {
  margin-right: 15px;
  font-size: 1.3rem;
  color: black;
  transition: transform 0.3s ease;
}

.modern-list .list-item:hover {
  background-color: #f7e576;
  color: black;
  transform: translateX(5px);
}

.modern-list .list-item:hover i {
  transform: scale(1.2);
}

.modern-list .list-item:hover i {
  color: black;
}

.join-us-vector{
  width: 450px;
  height: 450px;
}



@media (max-width: 575.98px) {
  .submit-img{
    height:320px;
    width:320px;
  }
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none; 
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown-item {
  padding: 10px 20px;
  color: #000;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}

ul {
  list-style-type: none;
  padding-left: 0; 
  text-wrap: balance;
}

.success{
  background-color: #f7e576;
  color: black;
}