body{
  background-image: url("background.jpg");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  color: white;
  height: 100px;
}

.logo {
  width: 142px;
  height: 120px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 9px 10px;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding-left: 5px;
  font-size: 13px;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.search-icon{
  width: 15px;
  height: 15px;
}
/*--------------------------------------------------------------------------*/

.about-section {
  padding: 4rem 1rem;
  height: 800px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}

.about-images {
  margin-left: 6rem;
  position: relative;
}

.main-image {
  width: 80%;
  border-radius: 0.75rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.image-overlay {
  position: absolute;
  bottom: -4rem;
  left: -2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sub-image {
  width: 10rem;
  border-radius: 0.75rem;
  height: auto;
}

.image-with-button {
  position: relative;
}

.play-button {
  position: absolute;
  inset: 0;
  width: 70px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button svg {
  width: 3rem;
  height: 3rem;
  color: white;
}

.experience-box {
  background: #22c55e;
  color: white;
  width: 200px;
  height: 100px;
  border-radius: 0.75rem;
  border-bottom-left-radius: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  text-align: center;
}

.experience-box .years {
  text-align: left;
  padding-left: 25px;
  font-size: 2.5rem;
  height: 20px;
  font-weight: 700;
}

.experience-box .label {
  font-size: 1.125rem;
  height: 5px;
  padding-top: 2rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-about {
  background-color: rgba(46, 204, 113);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 0.8rem 0.8rem 1.5rem;
  border-radius: 2rem;
  text-align: center;
}

.about-text h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
}

.description {
  color: white;
}

.testimonial {
  background-color: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  border-top-left-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-avatars {
  display: flex;
  gap: 0.5rem;
}

.testimonial-avatars img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid white;
}

blockquote {
  font-style: italic;
  color: white;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.testimonial-footer p {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}
.line{
  position: absolute;
  background-color: white;
  width: 240px;
  height: 1px;
  top: 1rem;
  left: 16rem;
}

.about-stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 2rem;
}


.stat .number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.stat .label {
  margin-top: 0.5rem;
  color: white;
}
/*-----------------------------------------*/
.footer {
  position: relative;
  width: 100%;
  background-color: white;
  padding-top: 3rem;
  color: white;
}

.footer-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-left{
  list-style: none;
  padding: 0 0 0 2rem;
  margin-bottom: 1.5rem;
  margin-right: 9rem;
  color: #63BBE9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-left a:hover {
  color: #2563eb;
}

.footer-column{
  width: 100px;
  height: 230px;
}

.footer-column h3 {
  color: #2563eb;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #63BBE9;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #2563eb;
}

.footer-logo {
  width: 12rem;
  height: 12rem;
  background-color: #9b9c9e;
  border-radius: 0.75rem;
}

.subscribe-form {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.subscribe-form input {
  flex-grow: 1;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #93c5fd;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.subscribe-form input:focus {
  border-color: #2563eb;
}

.subscribe-form button {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #93c5fd;
  background: transparent;
  color: #2563eb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #2563eb;
  color: white;
}

.footer-description {
  font-size: 0.875rem;
  color: #2563eb;
  margin-top: 1rem;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.social-icons a {
  font-size: 1.25rem;
  color: #2563eb;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1e40af;
}

.footer-location{
  width: 200px;
  position: absolute;
  left: 33.5rem;
  top: 18rem;
}
.footer-location h3{
  color: #2563eb;
  padding-bottom: 1rem;
}
.footer-location h4{
  color: #2563eb;
  font-size: 0.8rem;
  padding-bottom: 1rem;
}
.footer-location p{
  font-size: 0.8rem;
  color: #969696;
}