body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: url("../assets/bg.png") no-repeat center center fixed;
  background-size: cover;
  color: white;
     font-family: "Inter", sans-serif;

  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ====== Top Logos ====== */
.top-logos {
  position: absolute;
  top: 25px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.top-logos img {
  width: 180px;
  height: auto;
}

/* ====== Main Content ====== */
.conference-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  padding: 30px;
}

.conference-info {
  flex: 1;
  text-align: left;
  padding-left: 40px;
}

.text {
  width: 320px;
  height: auto;
}

.conference-info p  {
 color: #FFF;

   font-family: "Inter", sans-serif;

font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.location i,
.date i {
  color: #fff;
  margin-right: 8px;
  font-size: 25px;
}


.year-img {
  width: 250px;
  height: auto;
}

.conference-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conference-image img {
  width: 90%;
  max-width: 480px;
}

/* ====== Responsive Design ====== */
/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  .conference-container {
    /* flex-direction: column; */
    text-align: center;
  }

  .conference-info {
    padding-left: 0;
  }

  .conference-image {
    margin-top: 40px;
  }

  .top-logos {
    top: 10px;
    left: 15px;
    right: 15px;
  }

  .top-logos img {
    width: 120px;
  }

  .text {
    width: 260px;
  }

  .year-img {
    width: 200px;
  }
}


@media (max-width: 600px) {
  .conference-container {
    padding: 20px;
  }

  .text {
    width: 220px;
  }

  .conference-info p {
    font-size: 16px;
  }

  .conference-image img {
    width: 80%;
    max-width: 350px;
  }
}
