/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

html {
  scroll-behavior:smooth;
}

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

h1,
h2,
h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: relative;
  background-color: #333;
  height: 100vh;
  color: #fff;
}

.header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:url("Pictures/bg3.png");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.header__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1;
}

.header__title {
  font-size: 3rem;
  text-align: center;
  margin-top: -5rem;
}

.header__nav {
  margin-top: 2rem;
}

.header__menu {
  display: flex;
  justify-content: center;
  list-style: none;
}

.header__menu-item:not(:last-child) {
  margin-right: 2rem;
}

.header__menu-link {
  display:list-item;
  padding: 0.5rem 2rem;
  background-color: #fff;
  color: #333;
  border-radius: 15px;
  transition: background-color 1s ease-in-out;
}
.header__menu-link:hover{
  background-color: #585353;
  color: #fff;
  border: 3px solid rgb(255, 255, 255);
  transition: 75ms;
}

.header__cta {
  display: inline-block;
  margin-top: 20rem;
  padding: 1rem 2rem;
  background-color: #fff;
  color: #333;
  border-radius: 4px;
  transition: background-color 1s ease-in-out;
}

.header__cta:hover {
  background-color: #333;
  color: #fff;
}
.header-logo {
  
    height: 115px;
    width: 115px;
    z-index: -1;
    margin-right: 80%;
    margin-top: -10rem;
}
.navbar1 {
 position:absolute;
 justify-content: center;
 margin-bottom: 9rem;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section--about {
  background-color: #f7f7f7;
}

.section__title {
  text-align: center;
}

.section__title2 {
  text-align: center;
  margin-top: 7rem;
  font-size:70px;
  text-transform:uppercase;
  position:relative;
  color:#ffffff;
}
.section__title2:hover{
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  transition: 1s;
}
.section__title3 {
  text-align: center;
  margin:0;
  padding:0;
  font-size:70px;
  text-transform:uppercase;
  position:relative;
  color:#ffffff;
}
.section__title3:hover{
  -webkit-text-stroke: 2px #ffffff;
  color:transparent;
  transition: 1s;
}
.section--intro {
  background-color: #ffffff;
}
.section--video {
 margin-left: 4rem;
 border-radius: 10px;
 margin-bottom: 10rem;
}
.section__text1 {
  font-size: 18px;
  text-align: center;
}

/* Courses */
.courses {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.courses__item {
  margin: 0 2rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.courses__item:hover {
  transform: translateY(-10px);
}

.courses__title {
  font-size: 2rem;
}

.courses__description {
  margin-bottom: 2rem;
}

.courses__cta {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #333;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
  margin-left: 3rem;
}

.courses__cta:hover {
  background-color: #756464;
}
.courses__img {
  width: 280px;
}
/* Paralax */
.abc {
  height: 900px;
  background-image: url('Pictures/paralax1.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.abb {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
  font-size: 36px;
  font-weight:bold;
}

.abc1 {
  height: 600px;
  background-image: url('Pictures/team1.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.abb1 {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
  font-size: 36px;
  font-weight:bold;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}

.gallery img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  margin: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.1);
}

.n1{
  text-align: center;
  padding-top: 2rem;
}
.n1:hover{
  font-size: 45px;
  transition:170ms;
}

.review {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
}

.review .author {
  font-weight: bold;
  margin-bottom: 5px;
}

.review .date {
  color: #888;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.review .content {
  line-height: 1.5;
}

.review .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 15px;
}
.ha {
text-align: center;
margin-top: 5rem;
}
.ha:hover{
  font-size: 45px;
  transition:170ms;
}
.contact {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.contact h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact p {
  margin: 5px 0;
}
.time{
  text-align: center;
}