/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  
}

/* Header */
header {
  background-color: #1e1e1e;
  color: #fff;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

header h1 {

  margin-left: 490px;
}


/* Clear floats */
header::after {
  content: "";
  display: table;
  clear: both;
}

/* Hero Section */
.hero {
  height: 80vh;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/background');
  object-fit: cover;
  background-size: 100% 100%;
  color: #fff;   
  padding: 100px 0;
  text-align: center;

}

.hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.hero .container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(150px);

}



/* Reviews */
.review-box {
  background: #fff;
  padding: 20px;
  margin: 15px 0;
  border-radius: 5px;
  box-shadow: 2px 1px 4px rgba(0,0,0,0.05);
}
.section {
  padding: 60px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.review-box:hover{
  border-left: 4px solid #00b894;
 
}




/* Iconic moment */
/* .iconic-moment {
  margin-top: 40px;
  background: #fff3e0;
  padding: 20px;
  border-left: 5px solid #fb8c00;
  border-radius: 5px;
} */

/* Emerging talent */
/* .emerging-talent {
  margin-top: 30px;
  background: #ede7f6;
  padding: 20px;
  border-left: 5px solid #673ab7;
  border-radius: 5px;
  margin-bottom: 40px;
} */
























/* Footer */
footer {
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
