* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  /* overflow: hidden; */
  overflow-x: hidden;
  scroll-behavior: smooth;
  outline: none;
}

nav {
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 1;
  /* background-color: rgb(255, 255, 255); */
  /* background-color: rgb(81, 182, 222); */
  /* background-color: black; */
  /* color: white; */
  /* box-shadow: 2px 2px 10px black; */

  background-color: #fff;
}
.navbar-1 {
  width: 100%;
  padding: 0 20% 0 10%;
  /* border: 2px solid red; */
  display: flex;
  /* gap: 30%; */
  justify-content: space-evenly;
}

.logo {
  position: relative;
  width: 100px;
  height: 100px;
  background-image: url(logo-removebg-preview.png);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  /* background-color: #b5eaff; */
}

.navbar-1 ul {
  position: relative;
  width: 100%;
  list-style: none;
  text-decoration: none;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  justify-content: center;
  /* justify-content: space-evenly; */
  gap: 5%;
  /* gap: 60%; */
  /* justify-content: s; */
}
.nav-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-link ul li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 1.5rem;
}
.nav-link ul li a:hover {
  color: rgb(92, 81, 81);
  transform: scale(1.5);
}
#events {
  animation: blinking 0.5s linear infinite;
}
@keyframes blinking {
  to {
    color: blue;
  }
  from {
    color: black;
  }
}
/* main body */
.main-body {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 100px;
}
.bg-image {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: row;
  /* overflow: hidden; */
  align-items: center;
  justify-content: flex-start;
}
.bg-image img {
  width: 100%;
  height: 100%;
  display: inline;
  object-fit: fill;
}
.bg-image i {
  display: inline;
  margin-left: 10px;
  transform: scale(2);
  border: 2px solid black;
  border-radius: 50%;
}
.bg-image i:hover {
  color: rgb(104, 100, 94);
  border: 2px solid rgb(78, 72, 72);
}

/* body {
  font-family: Arial, sans-serif;
  background-color: #222;
} */

/* Slider Container */
.slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Image Wrapper */
.slide-track {
  display: flex;
  width: 400%; /* 4 images */
  transition: transform 0.5s linear;
}

/* Each image */
.slide-track img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

/* Navigation Buttons */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.nav-button:hover {
  background: rgba(0, 0, 0, 0.8);
}
#second-body {
  position: relative;
  width: 100%;
  height: auto;
}

/* footer section */
.footer {
  position: relative;
  width: 100%;
  background-color: #1e3a8a;
  color: white;
  padding: 20px 0;
  text-align: center;
  /* margin-top: 100px; */
}
.footerContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}
.footerSection {
  margin: 10px;
  width: 20%;
  flex-wrap: wrap;
}
/* .footerSection p{} */

.footerSection h3 {
  margin-bottom: 10px;
}
.footerSection a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.footerBottom {
  margin-top: 20px;
  font-size: 14px;
}
.footerSection i {
  line-height: 40px;
  font-size: 2rem;
}

.footerSection:nth-child(0) a {
  color: red;
}
.second {
  width: 1005;
}

.backgroundConstant {
  position: relative;
  height: 400px;
  width: 100%;
  margin-top: 10px;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.backgroundConstant::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("bg-st.jpg");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  filter: blur(3px);
  z-index: -1;
}

.contentConstant {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contentConstant h1 {
  color: white;
  font-size: 3rem;
}

.contentConstant p {
  color: white;
}

.services {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
  color: white;
}

.services i {
  font-size: 3rem;
  margin-left: 20px;
  color: white;
}
.iconClass i {
  line-height: 50px;
  color: white;
}
.iconClass i:hover {
  /* line-height: 50px; */
  color: orange;
}
